home *** CD-ROM | disk | FTP | other *** search
- '**************************************
- '
- ' C-Control/BASIC RAMPEN.BAS
- '
- ' Aufgabe:
- '
- ' - Zweifach-Rampengenerator
- ' - Gegenphasige Ausgabe, DA1 und DA2
- '
- '**************************************
- ' --- Definitionen --------------------
-
- define AusgangA DA[1]
- define AusgangB DA[2]
- define N byte
-
- ' --- Programmoperationen -------------
-
- #Loop
- AusgangA = 0
- AusgangB = 255
- pause 200
- for N = 1 to 255
- AusgangA = AusgangA + 1
- AusgangB = AusgangB - 1
- pause 1
- next
- goto Loop 'Endlosschleife
- end
-
-
-
-
-