add Microwave to the collection

This commit is contained in:
Peter Ferrie 2020-05-15 22:22:33 -07:00
parent c919839d2c
commit e9b177e966
6 changed files with 33 additions and 1 deletions

View File

@ -158,6 +158,7 @@
0111,MATTERHORN=Matterhorn Screamer
1000,MAXWELL.MANOR
1001,MICRO.INVADERS
0001,MICROWAVE
1000,MINER.2049ER
1001,MINER.2049.II=Miner 2049er II
1001,MINGS.CHALLENGE=Ming's Challenge

BIN
res/TITLE.HGR/MICROWAVE Normal file

Binary file not shown.

View File

@ -144,6 +144,7 @@ MARIO.BROS=Type(06),AuxType(4000),Access(C3)
MATING.ZONE=Type(06),AuxType(4000),Access(C3)
MAXWELL.MANOR=Type(06),AuxType(4000),Access(C3)
MICRO.INVADERS=Type(06),AuxType(4000),Access(C3)
MICROWAVE=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)

Binary file not shown.

View File

@ -10,7 +10,6 @@ Mad Rat
Marauder
Mars Cars
MegaBots [priority]
Microwave [priority]
MIRV
The Movie Monster Game
Neutrons

31
src/prelaunch/microwave.a Normal file
View File

@ -0,0 +1,31 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/MICROWAVE",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #<callback
sta $40A3
lda #>callback
sta $40A4
jmp $4000 ; decompress
callback
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$ad
sta $8EB ; patch - don't increase lives
sta $C41 ; patch - don't decrease lives
+
+DISABLE_ACCEL
lda #0
jmp $8974
!if * > $1C0 {
!error "code is too large, ends at ", *
}