4cade/src/prelaunch/bolo.a

27 lines
485 B
Plaintext
Raw Permalink Normal View History

2019-09-14 05:30:01 +00:00
;license:MIT
;(c) 2019 by qkumba
!cpu 6502
!to "build/PRELAUNCH.INDEXED/BOLO",plain
2019-09-15 02:57:52 +00:00
*=$106
!source "src/macros.a"
2019-09-14 05:30:01 +00:00
2019-10-12 22:18:11 +00:00
+ENABLE_ACCEL
lda #$60
sta $8034
jsr $4ab0 ; decompress and show title
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$a5
sta $1619
sta $11ae
+
2019-10-12 22:18:11 +00:00
+DISABLE_ACCEL
jmp $1100
2019-12-13 05:51:54 +00:00
!if * > $1C0 {
!error "code is too large, ends at ", *
}