add County Fair to the collection

This commit is contained in:
Peter Ferrie 2020-04-24 18:32:49 -07:00
parent eecc3b485e
commit d3aaa291b4
6 changed files with 28 additions and 1 deletions

View File

@ -55,6 +55,7 @@
0101,COMMANDO
0003,CONAN
0001,CONGO.BONGO
0002,COUNTY.FAIR
0001,CRAZY.MAZEY
0001,CRIME.WAVE
1001,CRISIS.MOUNTAIN

BIN
res/TITLE.HGR/COUNTY.FAIR Normal file

Binary file not shown.

View File

@ -49,6 +49,7 @@ CIDER.SPIDER=Type(06),AuxType(4000),Access(C3)
COMMANDO=Type(06),AuxType(4000),Access(C3)
CONAN=Type(06),AuxType(4000),Access(C3)
CONGO.BONGO=Type(06),AuxType(4000),Access(C3)
COUNTY.FAIR=Type(06),AuxType(4000),Access(C3)
CRAZY.MAZEY=Type(06),AuxType(4000),Access(C3)
CRIME.WAVE=Type(06),AuxType(4000),Access(C3)
CRISIS.MOUNTAIN=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -39,7 +39,6 @@ The World's Greatest Baseball Game
//4am crack (unreleased)
Bop N Wrestle
Congo
County Fair [priority]
Frazzle
Galactic Attack
Ghostbusters [priority]

View File

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