Created
May 20, 2022 19:52
-
-
Save dansanderson/d73b1c1cdcfb1574f91222f7e1a12dc8 to your computer and use it in GitHub Desktop.
A simple BASIC 65 program that draws circles, for the MEGA65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 screen 320, 200, 5 | |
20 for x=0 to 31 | |
30 pen x | |
40 circle x*10+10, x*10+10, x*5 | |
50 next x | |
60 sleep 3 | |
70 screen close | |
80 color 0 | |
90 print "{clr}{wht}have a {cyn}nice{wht} day!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Convert this to PRG with the
petcat
tool that comes with the VICE emulator: