add Megabots to the collection

This commit is contained in:
Peter Ferrie 2020-05-19 22:21:12 -07:00
parent b461cda33f
commit 72021b4bc7
6 changed files with 23 additions and 1 deletions

View File

@ -158,6 +158,7 @@
1001,MATING.ZONE
0111,MATTERHORN=Matterhorn Screamer
1000,MAXWELL.MANOR
0000,MEGABOTS
1001,MICRO.INVADERS
0001,MICROWAVE
1000,MINER.2049ER

BIN
res/TITLE.HGR/MEGABOTS Normal file

Binary file not shown.

View File

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

Binary file not shown.

View File

@ -8,7 +8,6 @@ Lock 'N' Chase
Mad Rat
Marauder
Mars Cars
MegaBots [priority]
MIRV
The Movie Monster Game
Neutrons

21
src/prelaunch/megabots.a Normal file
View File

@ -0,0 +1,21 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/MEGABOTS",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $9F8
jsr $800 ; load DOS
+DISABLE_ACCEL
ldx #$60
jmp $B700
!if * > $1C0 {
!error "code is too large, ends at ", *
}