add Miner 2049er II to the collection

This commit is contained in:
Peter Ferrie 2020-03-16 18:29:33 -07:00
parent bb3bfeed21
commit 8100a03c48
6 changed files with 31 additions and 2 deletions

File diff suppressed because one or more lines are too long

BIN
res/TITLE.HGR/MINER.2049.II Normal file

Binary file not shown.

View File

@ -113,6 +113,7 @@ LOST.TOMB=Type(06),AuxType(4000),Access(C3)
MAD.BOMBER=Type(06),AuxType(4000),Access(C3)
MARBLE.MADNESS=Type(06),AuxType(4000),Access(C3)
MARIO.BROS=Type(06),AuxType(4000),Access(C3)
MINER.2049.II=Type(06),AuxType(4000),Access(C3)
MINER.2049ER=Type(06),AuxType(4000),Access(C3)
MINGS.CHALLENGE=Type(06),AuxType(4000),Access(C3)
MONTEZUMA=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -22,7 +22,6 @@ Mad Rat
Marauder
Mars Cars
Microwave
Miner 2049er II [priority]
Minit Man
MIRV
Monster Mash

View File

@ -0,0 +1,29 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/MINER.2049.II",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #>callback
sta $2080
lda #<callback
sta $207F
jmp $2000 ; decompress
callback
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$bd
sta $938 ; patch - don't decrease lives
+
+DISABLE_ACCEL
jmp $8D9
!if * > $1C0 {
!error "code is too large, ends at ", *
}