4cade/src/prelaunch/beer.run.a

25 lines
604 B
Plaintext
Raw Normal View History

2019-09-17 23:20:13 +00:00
;license:MIT
;(c) 2019 by 4am
!cpu 6502
!to "build/PRELAUNCH/BEER.RUN",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
2019-09-17 23:20:13 +00:00
lda #$60
sta $2065
jsr $2000 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
2019-09-17 23:20:13 +00:00
lda #$AD
sta $1E20 ; patch - don't decrease lives
sta $6D5C ; patch - don't increase lives
sta $7354 ; patch - don't increase lives
sta $7D5C ; patch - don't increase lives
+
+DISABLE_ACCEL
2019-09-17 23:20:13 +00:00
jmp $BB00