Skip to content

Instantly share code, notes, and snippets.

@dansanderson
Created May 20, 2022 19:52
Show Gist options
  • Save dansanderson/d73b1c1cdcfb1574f91222f7e1a12dc8 to your computer and use it in GitHub Desktop.
Save dansanderson/d73b1c1cdcfb1574f91222f7e1a12dc8 to your computer and use it in GitHub Desktop.
A simple BASIC 65 program that draws circles, for the MEGA65
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!"
@dansanderson
Copy link
Author

Convert this to PRG with the petcat tool that comes with the VICE emulator:

petcat -w65 -o circles65.prg -- circles65.bas

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment