fix Space Eggs reset (#230)

This commit is contained in:
frankmilliron 2020-05-31 18:53:24 -07:00 committed by GitHub
parent 6a1b23687c
commit 9cb704baa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,22 @@
;license:MIT
;(c) 2020 by Frank M.
!cpu 6502
!to "build/PRELAUNCH/SPACE.EGGS",plain
*=$106
!source "src/prelaunch/common.a"
+NEW_RESET_VECTOR $280
+ENABLE_ACCEL
lda #$60
sta $2056
jsr $2000 ; decompress
+DISABLE_ACCEL
jmp $4880 ; run it
!if * > $1C0 {
!error "code is too large, ends at ", *
}