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

  1.  
  2. PORT D in[0] ;
  3. PORT CK in[1] ;
  4. PORT STATE out[0:1] ;
  5.  
  6. READONLY lookup[16] = 0,0,2,2,1,1,1,3,0,0,2,2,3,1,3,3 ;
  7. COMB (WIDTH=2, DELAY=10n) state_reg ;
  8.  
  9. state_reg = lookup[D<<3 | CK<<2 | state_reg] ;
  10.  
  11. STATE = state_reg  ;
  12.