4cade/src/prelaunch/pieman.a

32 lines
581 B
Plaintext
Raw Normal View History

2019-12-21 18:49:23 +00:00
;license:MIT
2019-12-25 22:15:36 +00:00
;(c) 2019 by Frank M.
2019-12-21 18:49:23 +00:00
!cpu 6502
!to "build/PRELAUNCH/PIEMAN",plain
*=$106
!source "src/prelaunch/common.a"
2019-12-21 21:07:17 +00:00
+ENABLE_ACCEL
2019-12-21 18:49:23 +00:00
lda #$60 ; hook1
sta $3EA9
jsr $3E88 ; decompress
2019-12-21 21:07:17 +00:00
+DISABLE_ACCEL
2019-12-21 18:49:23 +00:00
lda #$60 ; hook2
sta $A050
jsr $A000 ; title/load
lda #$60 ; hook3
sta $948
jsr $940
; re-patch reset vector
+RESET_VECTOR $100
2019-12-21 18:49:23 +00:00
jmp $950
!if * > $1C0 {
!error "code is too large, ends at ", *
}