add Minotaur to the collection

This commit is contained in:
Peter Ferrie 2020-05-17 22:02:18 -07:00
parent 481f172aa8
commit 1e26bfc99b
6 changed files with 28 additions and 1 deletions

View File

@ -163,6 +163,7 @@
1001,MINER.2049.II=Miner 2049er II
1001,MINGS.CHALLENGE=Ming's Challenge
0001,MINIT.MAN
0005,MINOTAUR
1004,THUNDERHEAD=Mission on Thunderhead
0000,MONSTER.MASH
0001,MONTEZUMA=Montezuma's Revenge

BIN
res/TITLE.HGR/MINOTAUR Normal file

Binary file not shown.

View File

@ -149,6 +149,7 @@ 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)
MINIT.MAN=Type(06),AuxType(4000),Access(C3)
MINOTAUR=Type(06),AuxType(4000),Access(C3)
MONSTER.MASH=Type(06),AuxType(4000),Access(C3)
MONTEZUMA=Type(06),AuxType(4000),Access(C3)
MOON.PATROL=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -54,7 +54,6 @@ Zargs
//TODO(flux-imaged but not woz)
Fly Wars
Jellyfish
Minotaur [priority]
//Sports
Championship Baseball

26
src/prelaunch/minotaur.a Normal file
View File

@ -0,0 +1,26 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/MINOTAUR",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $21BB
jsr $2000 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$37
sta $180 ; patch - enable cheat mode
+
+DISABLE_ACCEL
jmp $FF8
!if * > $1C0 {
!error "code is too large, ends at ", *
}