mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-24 03:34:02 +00:00
fix Gumball reset
This commit is contained in:
parent
3e4b6ac287
commit
39b65c5e80
32
src/prelaunch/gumball.a
Normal file
32
src/prelaunch/gumball.a
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
;license:MIT
|
||||||
|
;(c) 2020 by qkumba
|
||||||
|
|
||||||
|
!cpu 6502
|
||||||
|
!to "build/PRELAUNCH/GUMBALL",plain
|
||||||
|
*=$106
|
||||||
|
|
||||||
|
!source "src/prelaunch/common.a"
|
||||||
|
|
||||||
|
+ENABLE_ACCEL
|
||||||
|
lda #$60
|
||||||
|
sta $851
|
||||||
|
jsr $800 ; load "DOS"
|
||||||
|
lda #$20
|
||||||
|
sta $B21E
|
||||||
|
lda #<callback
|
||||||
|
sta $B21F
|
||||||
|
lda #>callback
|
||||||
|
sta $B220
|
||||||
|
+DISABLE_ACCEL
|
||||||
|
jmp $B2F1
|
||||||
|
|
||||||
|
callback
|
||||||
|
lda $5F
|
||||||
|
asl
|
||||||
|
bne +
|
||||||
|
dec $E09
|
||||||
|
+ rts
|
||||||
|
|
||||||
|
!if * > $1C0 {
|
||||||
|
!error "code is too large, ends at ", *
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user