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

  1. DEFINE  taste  PORT[9]
  2.  
  3. PRINT "Beispiel 23"
  4.  
  5. taste = 1
  6. WAIT NOT taste 
  7. 'taste mit Simulator auf Null setzen
  8.  
  9. PRINT "Taste1 gedrⁿckt"
  10.  
  11. END
  12.  
  13.