Last active
July 26, 2019 21:53
-
-
Save nurpax/58a3a6105946bb64346fad7428ec86b4 to your computer and use it in GitHub Desktop.
c64jasm gist example 1
This file contains hidden or 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
| !include "c64.asm" | |
| +c64::basic_start(entry) | |
| entry: { | |
| lda #0 | |
| } | |
| ; try includes | |
| !include "other.asm" |
This file contains hidden or 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
| !for i in range(4) { | |
| lda #i | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment