4cade/src/prelaunch/minit.man.a

32 lines
599 B
Plaintext
Raw Normal View History

2020-04-26 21:01:30 +00:00
;license:MIT
2020-04-27 14:22:02 +00:00
;(c) 2020 by qkumba/Frank M.
2020-04-26 21:01:30 +00:00
!cpu 6502
!to "build/PRELAUNCH/MINIT.MAN",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $9FD
jsr $800 ; load DOS
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$a5
sta $B13D ; patch - don't decrease lives
+
2020-04-27 14:22:02 +00:00
ldx #0
stx $9E31
inx
stx $9E3C ; reset vector patch
2020-04-26 21:01:30 +00:00
+DISABLE_ACCEL
jmp $B700
!if * > $1C0 {
!error "code is too large, ends at ", *
}