add Manic Miner to the collection

This commit is contained in:
Peter Ferrie 2020-04-23 10:22:29 -07:00
parent f4b48ca671
commit cf1977547a
5 changed files with 28 additions and 0 deletions

View File

@ -134,6 +134,7 @@
0001,LODE.RUNNER
1000,LOST.TOMB
1000,MAD.BOMBER
0001,MANIC.MINER
1100,MARBLE.MADNESS
0001,MARIO.BROS=Mario Bros.
1001,MATING.ZONE

BIN
res/TITLE.HGR/MANIC.MINER Normal file

Binary file not shown.

View File

@ -122,6 +122,7 @@ LITTLE.COMP.PPL=Type(06),AuxType(4000),Access(C3)
LODE.RUNNER=Type(06),AuxType(4000),Access(C3)
LOST.TOMB=Type(06),AuxType(4000),Access(C3)
MAD.BOMBER=Type(06),AuxType(4000),Access(C3)
MANIC.MINER=Type(06),AuxType(4000),Access(C3)
MARBLE.MADNESS=Type(06),AuxType(4000),Access(C3)
MARIO.BROS=Type(06),AuxType(4000),Access(C3)
MATING.ZONE=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -0,0 +1,26 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/MANIC.MINER",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $82A
jsr $800 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$a5
sta $7C5A ; patch - don't decrease lives
+
+DISABLE_ACCEL
jmp $6000
!if * > $1C0 {
!error "code is too large, ends at ", *
}