home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 April / CHIP4_98.ISO / software / ccconrad / basic.exe / CHIP / Programme.Bas / Beispiele_3 / BSP12.BAS < prev    next >
Encoding:
BASIC Source File  |  1997-08-29  |  189 b   |  23 lines

  1.  
  2. DEFINE  a  BIT[1]
  3. DEFINE  b  BIT[2]
  4.  
  5. PRINT "Beispiel 12"
  6.  
  7. a = 1
  8. b = 0
  9.  
  10. PRINT a
  11. PRINT b
  12.  
  13. PRINT a AND b
  14. PRINT a NAND b
  15.  
  16. PRINT a OR b
  17. PRINT a NOR b
  18.  
  19. PRINT a XOR b
  20.  
  21. END
  22.  
  23.