add Roach Hotel to the collection

This commit is contained in:
Peter Ferrie 2021-03-29 21:22:02 -07:00
parent 68b9f59e75
commit f0778d8042
7 changed files with 48 additions and 2 deletions

View File

@ -273,6 +273,7 @@
1000,RB=Retro-Ball
1000,RETRO.FEVER
0000,RIBBIT
1000,ROACH.HOTEL
0000,ROADBLOCK
0110,ROBOCOP
0000,ROBOT.BATTLE

BIN
res/TITLE.HGR/ROACH.HOTEL Normal file

Binary file not shown.

View File

@ -259,6 +259,7 @@ RETRO.FEVER=Type(06),AuxType(4000),Access(C3)
RI=Type(06),AuxType(4000),Access(C3)
RIBBIT=Type(06),AuxType(4000),Access(C3)
RM=Type(06),AuxType(4000),Access(C3)
ROACH.HOTEL=Type(06),AuxType(4000),Access(C3)
ROADBLOCK=Type(06),AuxType(4000),Access(C3)
ROBOT.BATTLE=Type(06),AuxType(4000),Access(C3)
ROBOTRON.2084=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -11,7 +11,6 @@ Zoo Master
//TODO(woz-imaged but uncracked)
Lemmings
Roach Hotel
Teleport
The Space Ark
Track Attack

View File

@ -6,7 +6,7 @@
; YE OLDE GRAND UNIFIED MEMORY MAP
;
; LC RAM BANK 1
; D000..E876 - persistent data structures (gGlobalPrefsStore, gGamesListStore)
; D000..E886 - persistent data structures (gGlobalPrefsStore, gGamesListStore)
; E92D..FFF1 - main program code
; FFF2..FFF9 - API functions and global constants available for main program
; code, prelaunchers, transition effects, &c.

View File

@ -0,0 +1,45 @@
;license:MIT
;(c) 2021 by qkumba
!cpu 6502
!to "build/PRELAUNCH/ROACH.HOTEL",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #<callback2
sta $5164
lda #>callback2
sta $5165
lda #<pcallback2
sta $5034
lda #>pcallback2
sta $5035
lda #<pcallback1
sta $5154
lda #>pcallback1
sta $5155
jmp $800 ; decompress
callback1
+DISABLE_ACCEL
jmp ($202)
callback2
+ENABLE_ACCEL
jmp $BDF4 ; decompress
callback3
+DISABLE_ACCEL
jmp ($200)
pcallback1
!word callback1
pcallback2
!word callback3
!if * > $1C0 {
!error "code is too large, ends at ", *
}