add Congo Bongo to the collection

This commit is contained in:
Peter Ferrie 2020-03-05 15:59:00 -08:00
parent 3eb335becc
commit 9e91502abf
5 changed files with 27 additions and 2 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -6,7 +6,6 @@ Boulder Dash
C'est La Vie
Championship Baseball
Championship Wrestling
Congo Bongo [priority]
Conquering Worlds
Dive Bomber
Double Trouble

BIN
res/title.hgr/CONGO.BONGO Normal file

Binary file not shown.

View File

@ -0,0 +1,26 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/CONGO.BONGO",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $188B
jsr $1800 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$a5
sta $cf7 ; patch - don't increase lives
sta $1099 ; patch - don't decrease lives
+
+DISABLE_ACCEL
jmp $c00
!if * > $1C0 {
!error "code is too large, ends at ", *
}