home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s199 / 1.img / FEEDBACK.ABL < prev    next >
Encoding:
Text File  |  1986-02-04  |  382 b   |  21 lines

  1. module feedback
  2. title
  3. 'Operation of the simulator on devices with feedback
  4.                     DATA I/O Corp.      24 Feb 1983'
  5.  
  6.     FB1    device 'P16HD8';
  7.  
  8.     D1,D2,D3    pin 1,2,3;
  9.     F1,F2,F3    pin 13,14,15;
  10.  
  11. equations
  12.  
  13.     F1    = D1;
  14.     F2    = D2 & F1;
  15.     F3    = D3 & F2;
  16.  
  17. test_vectors   ([D1,D2,D3] -> [F1,F2,F3])
  18.         [ 0, 0, 0] -> [ 0, 0, 0];
  19.         [ 1, 1, 1] -> [ 1, 1, 1];
  20. end feedback    
  21.