home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff229.lzh / Sim / extdevcom / x_and.x < prev    next >
Text File  |  1989-07-20  |  89b  |  9 lines

  1. device x_and;
  2.  
  3. input in0,in1,in2,in3;
  4. output out0;
  5.  
  6. {
  7.    out0 = in0 & in1 & in2 & in3;
  8. }
  9.