home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / develop / galer / galer_english / examples / gatter.pld < prev    next >
Encoding:
Text File  |  1995-02-27  |  433 b   |  29 lines

  1. GAL16V8                first line : used type of GAL
  2. Bsp.1                second line: any text (max. 8 character)
  3.  
  4. B  C   D   E   F  G  H  I  J  GND
  5. K  NC  NC  NC  Z  Y  X  W  A  VCC     
  6.  
  7.  
  8.  W = A * B * C
  9. /X = D * E
  10.  Y = F + G
  11.  Z = H * I + J * K
  12.  
  13. DESCRIPTION:
  14.  
  15.  
  16. format of the boolean equations:
  17.  
  18.   output pin = boolean function of input pins
  19.  
  20.  
  21.  *: AND
  22.  +: OR
  23.  /: NEGATION
  24.  
  25.  Example: Pin Y is HIGH if pin F OR pin G is HIGH, else Y will be LOW.
  26.  
  27.       Y = F + G
  28.  
  29.