4cade/src/prelaunch/alien.ambush.a

27 lines
542 B
Plaintext
Raw Permalink Normal View History

2019-09-16 03:28:55 +00:00
;license:MIT
;(c) 2019 by qkumba/Frank M.
2019-09-16 03:28:55 +00:00
!cpu 6502
!to "build/PRELAUNCH.INDEXED/ALIEN.AMBUSH",plain
2019-09-16 03:28:55 +00:00
*=$106
!source "src/macros.a"
2019-09-16 03:28:55 +00:00
+ENABLE_ACCEL
+NEW_RESET_VECTOR $3E0 ; overwrites $101 at end of demo cycle
lda #$60
sta $81c
jsr $800 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
dec $5ff5
dec $608b
+
+DISABLE_ACCEL
jmp $4000
2019-12-13 05:51:54 +00:00
!if * > $1C0 {
!error "code is too large, ends at ", *
}