Created
August 11, 2018 23:57
-
-
Save devinacker/b4e2ca9796eacf2c86e0111743c53a03 to your computer and use it in GitHub Desktop.
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
.p816 | |
.code | |
main: | |
sei | |
stz $4207 ; IRQ at H=0 | |
stz $4208 ; (leave IRQ disable flag set so it only resumes after WAI) | |
lda #%00010000 | |
sta $4200 | |
wai | |
bit $4211 | |
ldx #0 | |
: lda #0 | |
: wai ; go back to sleep | |
bit $4211 ; hit the snooze button | |
sta $2180,x ; hit something else | |
inc | |
bne :- | |
inx | |
bpl :-- | |
stp | |
.segment "BOOT" | |
.addr main | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment