home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 180 / dpcs0203b.iso / editorial / easypc / Easy-Spice / data1.cab / Examples / ALB_Examples / count.ldf < prev    next >
Encoding:
Text File  |  2002-07-08  |  179 b   |  10 lines

  1. // Simple counter example referenced in user manual
  2.  
  3. PORT    (DELAY = 10n)    CountOut    out[0:7] ;
  4.  
  5. EDGE    (WIDTH=8, CLOCK=in[0])    Count ;
  6.  
  7. Count = Count + 1 ;
  8.  
  9. CountOut = count ;
  10.