Last active
June 17, 2025 20:13
-
-
Save 3dgoose/042412d6b72078aecc87898856e28e91 to your computer and use it in GitHub Desktop.
6502 YES machine (ca65)
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
.export _main | |
.import _puts | |
.segment "RODATA" | |
msg: .asciiz " yes " | |
.segment "CODE" | |
.proc _main | |
loop: | |
lda #<msg | |
ldx #>msg | |
jsr _puts | |
jmp loop | |
.endproc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment