https://github.com/dniel/color-run
When I was a little kid, I loved typing in this short program on all Commodore 64 in the electronics shops making the screen do the famous C64 color loop used while loading tapes..
https://github.com/dniel/color-run
Last synced: 5 months ago
JSON representation
When I was a little kid, I loved typing in this short program on all Commodore 64 in the electronics shops making the screen do the famous C64 color loop used while loading tapes..
- Host: GitHub
- URL: https://github.com/dniel/color-run
- Owner: dniel
- Created: 2016-10-12T08:31:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-17T12:52:16.000Z (over 9 years ago)
- Last Synced: 2025-01-26T17:31:14.621Z (over 1 year ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# color-run
When I was a little kid, I loved typing in this short program on all Commodore 64 in the electronics shops making the screen do the famous C64 color loop used while loading tapes..
It was one of the first programs I wrote, when I was just 12 years old.
I quikly typed it on all machines and ran to observe..
```REALbasic
10 FOR I = 0 TO 15
20 POKE 53280, I
30 POKE 53281, I+1
40 NEXT
50 GOTO 10
```