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

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