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

  1. // a simple 4X4 multiplier
  2.  
  3.  
  4. PORT (DELAY=10n)    MultOut out[0:7] ;
  5. PORT                in1 in[0:3] ;
  6. PORT                in2 in[4:7] ;
  7.  
  8. MultOut = in1*in2 ;
  9.