mirror of
https://github.com/a2-4am/4cade.git
synced 2025-01-26 18:32:56 +00:00
add Microwave to the collection
This commit is contained in:
parent
c919839d2c
commit
e9b177e966
@ -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
BIN
res/TITLE.HGR/MICROWAVE
Normal file
Binary file not shown.
@ -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)
|
||||
|
BIN
res/dsk/microwave PRODOS (san inc pack).po
Normal file
BIN
res/dsk/microwave PRODOS (san inc pack).po
Normal file
Binary file not shown.
@ -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
31
src/prelaunch/microwave.a
Normal 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 ", *
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user