mirror of
https://github.com/a2-4am/4cade.git
synced 2025-04-07 16:39:56 +00:00
add more games and title screenshots
This commit is contained in:
parent
d5ed575eb9
commit
30d72daaec
15
bin/makefont.py
Executable file
15
bin/makefont.py
Executable file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
import os.path
|
||||
|
||||
fontfile, srcfile = sys.argv[1:]
|
||||
with open(fontfile, 'rb') as f:
|
||||
fontdata = f.read()
|
||||
assert(len(fontdata) == 1024)
|
||||
with open(srcfile, 'w') as f:
|
||||
for row in range(8):
|
||||
f.write("FontDataRow%s\n" % row)
|
||||
for i in range(128):
|
||||
b = fontdata[i*8+(7-row)]
|
||||
f.write(" !byte $%s\n" % hex(b)[2:].rjust(2, '0').upper())
|
@ -1 +1 @@
|
||||
#
# Mega-Attract-Mode configuration file
#
# Mega-Attract-Mode is split into modules. Each module can be a
# short slideshow or a self-running demo (like a game's built-in
# 'attract mode'). Modules are run in the order listed here, one
# after the next, until interrupted by user input. The last-run
# module is tracked in the global prefs file.
#
# Format:
# key=value
#
# |key| must be unique within this file
#
# |value| must be one of
# 1 for HGR slideshow (|key| is a file containing a list of HGR graphics)
# 2 for DHGR slideshow (|key| is a file containing a list of DHGR graphics)
# 3 for self-running demo (|key| is an executable binary file)
#
# Blank lines and lines beginning with '#' are ignored (like this one!)
# A line beginning with '[' terminates the parsing
#
ORILEYS.MINE=3
FORMULA.1=3
FIREBIRD=3
FAVORITES.CONF=1
BUZZARD.BAIT=3
SNAKE.BYTE=3
HIGH.RISE=3
THUNDERBOMBS=3
ROBOTRON=3
NIBBLER=3
LADY.TUT=3
STARGATE=3
#SPIDER.RAID=3
FLIP.OUT=3
#STELLAR.7=3
#TRACK.AND.FIELD=3
AGENT.USA=3
GUMBALL=3
TUBEWAY=3
CIDER.SPIDER=3
CONAN=3
MR.COOL=3
CHOPLIFTER=3
HARD.HAT.MACK=3
PACMAN=3
SERPENTINE=3
KARATEKA=3
WARP.DESTROYER=3
LOST.TOMB=3
VINDICATOR=3
REPTON=3
SAMMY.LIGHTFOOT=3
DUNG.BEETLES=3
GAMMA.GOBLINS=3
#ALIEN.DOWNPOUR=3
PIEMAN=3
ALIEN.AMBUSH=3
ALIEN.RAIN=3
AQUATRON=3
JUNGLE.HUNT=3
POOYAN=3
SHORT.CONF=1
PLASMANIA=3
SPY.HUNTER=3
DINO.EGGS=3
BOLO=3
CHAMP.LODERUN=3
SPYS.DEMISE=3
PEST.PATROL=3
PITFALL.II=3
LODE.RUNNER=3
BURGERTIME=3
SPARE.CHANGE=3
SNEAKERS=3
WAVY.NAVY=3
DHGR.CONF=2
EFG.CONF=1
ACTIVISION.CONF=1
CD.CONF=1
BRODERBUND.CONF=1
T.CONF=1
ATARI.CONF=1
SIERRA.CONF=1
PQR.CONF=1
DATAMOST.CONF=1
MNO.CONF=1
DATASOFT.CONF=1
S.CONF=1
MICROFUN.CONF=1
AB.CONF=1
PICCADILLY.CONF=1
HIJKL.CONF=1
SIRIUS.CONF=1
[eof]
|
||||
#
# Mega-Attract-Mode configuration file
#
# Mega-Attract-Mode is split into modules. Each module can be a
# short slideshow or a self-running demo (like a game's built-in
# 'attract mode'). Modules are run in the order listed here, one
# after the next, until interrupted by user input. The last-run
# module is tracked in the global prefs file.
#
# Format:
# key=value
#
# |key| must be unique within this file
#
# |value| must be one of
# 1 for HGR slideshow (|key| is a file containing a list of HGR graphics)
# 2 for DHGR slideshow (|key| is a file containing a list of DHGR graphics)
# 3 for self-running demo (|key| is an executable binary file)
#
# Blank lines and lines beginning with '#' are ignored (like this one!)
# A line beginning with '[' terminates the parsing
#
SHORT.CONF=1
DHGR.CONF=2
ORILEYS.MINE=3
FORMULA.1=3
FIREBIRD=3
FAVORITES.CONF=1
BUZZARD.BAIT=3
SNAKE.BYTE=3
HIGH.RISE=3
THUNDERBOMBS=3
ROBOTRON=3
NIBBLER=3
LADY.TUT=3
STARGATE=3
#SPIDER.RAID=3
FLIP.OUT=3
#STELLAR.7=3
#TRACK.AND.FIELD=3
AGENT.USA=3
GUMBALL=3
TUBEWAY=3
CIDER.SPIDER=3
CONAN=3
MR.COOL=3
CHOPLIFTER=3
HARD.HAT.MACK=3
PACMAN=3
SERPENTINE=3
KARATEKA=3
WARP.DESTROYER=3
LOST.TOMB=3
VINDICATOR=3
REPTON=3
SAMMY.LIGHTFOOT=3
DUNG.BEETLES=3
GAMMA.GOBLINS=3
#ALIEN.DOWNPOUR=3
PIEMAN=3
ALIEN.AMBUSH=3
ALIEN.RAIN=3
AQUATRON=3
JUNGLE.HUNT=3
POOYAN=3
PLASMANIA=3
SPY.HUNTER=3
DINO.EGGS=3
BOLO=3
CHAMP.LODERUN=3
SPYS.DEMISE=3
PEST.PATROL=3
PITFALL.II=3
LODE.RUNNER=3
BURGERTIME=3
SPARE.CHANGE=3
SNEAKERS=3
WAVY.NAVY=3
EFG.CONF=1
ACTIVISION.CONF=1
CD.CONF=1
BRODERBUND.CONF=1
T.CONF=1
ATARI.CONF=1
SIERRA.CONF=1
PQR.CONF=1
DATAMOST.CONF=1
MNO.CONF=1
DATASOFT.CONF=1
S.CONF=1
MICROFUN.CONF=1
AB.CONF=1
PICCADILLY.CONF=1
HIJKL.CONF=1
SIRIUS.CONF=1
[eof]
|
BIN
res/dhgr/SUMMER.EDITION
Normal file
BIN
res/dhgr/SUMMER.EDITION
Normal file
Binary file not shown.
BIN
res/dhgr/THEXDER128K
Normal file
BIN
res/dhgr/THEXDER128K
Normal file
Binary file not shown.
BIN
res/dhgr/WINTER.EDITION
Normal file
BIN
res/dhgr/WINTER.EDITION
Normal file
Binary file not shown.
BIN
res/dsk/jumpman PRODOS (san inc pack).dsk
Normal file
BIN
res/dsk/jumpman PRODOS (san inc pack).dsk
Normal file
Binary file not shown.
BIN
res/dsk/red alert 10k file PRODOS (san inc crack).dsk
Normal file
BIN
res/dsk/red alert 10k file PRODOS (san inc crack).dsk
Normal file
Binary file not shown.
BIN
res/dsk/rescue raiders PRODOS (san inc pack).po
Normal file
BIN
res/dsk/rescue raiders PRODOS (san inc pack).po
Normal file
Binary file not shown.
BIN
res/dsk/the games - summer edition PRODOS (san inc crack).po
Normal file
BIN
res/dsk/the games - summer edition PRODOS (san inc crack).po
Normal file
Binary file not shown.
BIN
res/dsk/the games - winter edition PRODOS (san inc pack).po
Normal file
BIN
res/dsk/the games - winter edition PRODOS (san inc pack).po
Normal file
Binary file not shown.
BIN
res/dsk/thexder 128k PRODOS (san inc pack).po
Normal file
BIN
res/dsk/thexder 128k PRODOS (san inc pack).po
Normal file
Binary file not shown.
BIN
res/dsk/thexder 64k PRODOS (san inc pack).po
Normal file
BIN
res/dsk/thexder 64k PRODOS (san inc pack).po
Normal file
Binary file not shown.
BIN
res/dsk/threshold PRODOS (san inc pack).dsk
Normal file
BIN
res/dsk/threshold PRODOS (san inc pack).dsk
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
#
# transition effects for HGR slideshows
#
# Each Mega-Attract Module that is an HGR slideshow (see attract.conf)
# will use a single transition effect for the length of the module.
# Transition effects are loaded in the order listed in this file. Each line
# of this file is a filename (not including comments, like this one). The
# name of the next transition effect is stored in the global prefs, so this
# file should not contain duplicates.
#
# Transition effects are binary files loaded at $6000 and called with
# hi-res page 1 showing and the next HGR graphic already loaded at $4000.
# A transition effect has full use of main memory, including zero page and
# text page if needed. LC RAM banks 1 and 2 are reserved for the launcher.
#
# Important: LC RAM bank 1 will be read/write on entry and must be read/write
# on exit. If you need ROM routines, you are responsible for switching to ROM
# then switching back to RAM bank 1 (read/write) before returning.
#
RADIAL
RIPPLE2
STAR
CORNER.CIRCLE
SUNRISE
SUNSET
RADIAL2
RADIAL3
RADIAL4
RADIAL5
FOURSPIRAL
RIPPLE
IRIS
SPLIT.UD.INTRO
DIAGONAL
CHECKERBOARD
HALF.FIZZLE
BAR.DISSOLVE
STAGGERWHITE.LR
DIAMOND
ONESQUARE
TWOPASS.LR
CRYSTAL
HALF.MOSAIC
STAGGER.LR
FOURSQUARE
STAGGER.UD
INTERLOCK.LR
BLOCK.MOSAIC
FIZZLE
STAGGERWHITE.UD
INTERLOCK.UD
BLOCK.FIZZLE
SPIRAL
[eof]
|
||||
#
# transition effects for HGR slideshows
#
# Each Mega-Attract Module that is an HGR slideshow (see attract.conf)
# will use a single transition effect for the length of the module.
# Transition effects are loaded in the order listed in this file. Each line
# of this file is a filename (not including comments, like this one). The
# name of the next transition effect is stored in the global prefs, so this
# file should not contain duplicates.
#
# Transition effects are binary files loaded at $6000 and called with
# hi-res page 1 showing and the next HGR graphic already loaded at $4000.
# A transition effect has full use of main memory, including zero page and
# text page if needed. LC RAM banks 1 and 2 are reserved for the launcher.
#
# Important: LC RAM bank 1 will be read/write on entry and must be read/write
# on exit. If you need ROM routines, you are responsible for switching to ROM
# then switching back to RAM bank 1 (read/write) before returning.
#
STAR
RADIAL
RIPPLE2
CORNER.CIRCLE
SUNRISE
SUNSET
RADIAL2
RADIAL3
RADIAL4
RADIAL5
FOURSPIRAL
RIPPLE
IRIS
SPLIT.UD.INTRO
DIAGONAL
CHECKERBOARD
HALF.FIZZLE
BAR.DISSOLVE
STAGGERWHITE.LR
DIAMOND
ONESQUARE
TWOPASS.LR
CRYSTAL
HALF.MOSAIC
STAGGER.LR
FOURSQUARE
STAGGER.UD
INTERLOCK.LR
BLOCK.MOSAIC
FIZZLE
STAGGERWHITE.UD
INTERLOCK.UD
BLOCK.FIZZLE
SPIRAL
[eof]
|
@ -1 +1 @@
|
||||
#
# 4cade master game list
#
# Format:
# AB,directory=name
#
# A=1 if game requires joystick, 0 if playable on keyboard
# B=1 if game requires 128K, 0 if playable on 64K
#
# all other values for A or B -> ignore entire line (like this one!)
# A line beginning with '[' terminates the parsing
#
00,AGENT.USA=Agent USA
11,AIRHEART=Airheart
00,ALCAZAR=Alcazar
10,ALIEN.AMBUSH=Alien Ambush
00,ALIEN.DOWNPOUR=Alien Downpour
00,ALIEN.RAIN=Alien Rain
00,ALIEN.MUNCHIES=Alien Munchies
00,ANKH=Ankh
00,CIDER.SPIDER=Apple Cider Spider
00,APPLE.PANIC=Apple Panic
00,AQUATRON=Aquatron
00,ARGOS=Argos
10,ARKANOID=Arkanoid
00,BATTLEZONE=Battlezone
10,BCS.QUEST=BC's Quest For Tires
00,BEER.RUN=Beer Run
00,BELLHOP=Bellhop
00,BERZAP=Berzap
00,BUDGETRILOGY=Bill Budge's Trilogy
00,BLISTER.BALL=Blister Ball
00,BOLO=Bolo
00,BOUNCING.KMNGAS=Bouncing Kamungas
00,BRAINTEASERBLVD=Brainteaser Boulevard
10,BRUCE.LEE=Bruce Lee
10,BUBBLE.BOBBLE=Bubble Bobble
00,BURGERTIME=BurgerTime
00,BUZZARD.BAIT=Buzzard Bait
00,CANNONBALL.BLTZ=Cannonball Blitz
00,CANYON.CLIMBER=Canyon Climber
10,CEILING.ZERO=Ceiling Zero
00,CENTIPEDE=Centipede
00,CHAMP.LODERUN=Championship Lode Runner
10,CHOPLIFTER=Choplifter
00,COMMANDO=Commando
00,CONAN=Conan
00,CRAZY.MAZY=Crazy Mazey
10,CRISIS.MOUNTAIN=Crisis Mountain
00,CRIME.WAVE=Crime Wave
00,CROSSFIRE=Crossfire
00,CYBERSTRIKE=Cyber Strike
01,D.GENERATION=D-Generation
10,DAVIDS.MAGIC=David's Midnight Magic
10,DEFENDER=Defender
00,DIG.DUG=Dig Dug
10,DINO.EGGS=Dino Eggs
10,DONKEY.KONG=Donkey Kong
10,DRELBS=Drelbs
00,DROL=Drol
00,DUNG.BEETLES=Dung Beetles
00,EPOCH=Epoch
00,FALCONS=Falcons
00,FS1=Flight Simulator I
00,FLIP.OUT=Flip Out
00,FIREBIRD=Firebird
10,FORMULA.1=Formula 1 Racer
00,FROGGER=Frogger
10,FUJI.SPEED.WAY=Fuji Crowded Speed Way
10,GALAXIAN=Galaxian
10,GAMMA.GOBLINS=Gamma Goblins
10,GOONIES=The Goonies
00,GORGON=Gorgon
00,GREMLINS=Gremlins
00,GUMBALL=Gumball
10,HERO=H.E.R.O.
00,HARD.HAT.MACK=Hard Hat Mack
00,HEAD.ON=Head On
00,HIGH.RISE=High Rise
00,HUNGRYBOY=Hungry Boy
10,IMPOSSIBLE.MISS=Impossible Mission
10,INTL.GRAN.PRIX=International Gran Prix
00,JOUST=Joust
00,JUGGLER=Juggler
00,JUNGLE.HUNT=Jungle Hunt
00,KARATEKA=Karateka
00,LADY.TUT=Lady Tut
00,LODE.RUNNER=Lode Runner
10,LOST.TOMB=Lost Tomb
10,MAD.BOMBER=Mad Bomber
10,MARBLE.MADNESS=Marble Madness
00,MARIO.BROS=Mario Bros
10,MINER.2049ER=Miner 2049er
00,MONTEZUMA=Montezuma's Revenge
00,MOON.PATROL=Moon Patrol
00,MR.COOL=Mr. Cool
10,MR.DO=Mr. Do
00,MR.ROBOT=Mr. Robot
00,MS.PACMAN=Ms. Pacman
00,NIBBLER=Nibbler
10,NIGHT.MISSION=Night Mission Pinball
00,NIGHT.STALKER=Night Stalker
00,NIGHTMARE=Nightmare Gallery
00,NORAD=NORAD
00,ORILEYS.MINE=O'Riley's Mine
00,ORBITRON=Orbitron
00,OUTPOST=Outpost
00,PAC.MAN=Pac-Man
00,PAPERBOY=Paperboy
00,PEST.PATROL=Pest Patrol
10,PHANTOMS.FIVE=Phantoms Five
00,PIEMAN=Pie-Man
00,PITSTOP.II=Pit Stop II
10,PITFALL.II=Pitfall II
00,PLASMANIA=Plasmania
00,POLLYWOG=Pollywog
00,POOYAN=Pooyan
01,PRINCEUNP=Prince of Persia
00,PUCK.MAN=Puckman
11,QIX=Qix
01,RADWARRIOR=Radwarrior
00,RASTER.BLASTER=Raster Blaster
00,REPTON=Repton
00,RIBBIT=Ribbit
00,ROBOTRON.2084=Robotron 2084
00,SABOTAGE=Sabotage
00,SAMMY.LIGHTFOOT=Sammy Lightfoot
00,SERPENTINE=Serpentine
10,SHAMUS=Shamus
00,SHUFFLEBOARD=Shuffleboard
00,SNACK.ATTACK=Snack Attack
00,SNAKE.BYTE=Snake Byte
00,SNEAKERS=Sneakers
00,SNOGGLE=Snoggle
10,SPACE.EGGS=Space Eggs
00,SPACE.QUARKS=Space Quarks
00,SPACE.RAIDERS=Space Raiders
00,SPARE.CHANGE=Spare Change
00,SPIDER.RAID=Spider Raid
01,SPIDERBOT=Spiderbot
00,SPY.HUNTER=Spy Hunter
00,SPYS.DEMISE=Spy's Demise
10,STARBLASTER=Starblaster
10,STARGATE=Stargate
00,STELLAR.7=Stellar 7
00,SUCCESSION=Succession
00,SUICIDE=Suicide!
00,SWASHBUCKLER=Swashbuckler
00,TAG.TEAM=Tag Team Wrestling
00,TAPPER=Tapper
00,TETRIS=Tetris
01,TETRIS128K=Tetris (DHGR)
00,THIEF=Thief
00,THUNDERBOMBS=Thunder Bombs
10,TOMAHAWK=Tomahawk
00,TRACK.AND.FIELD=Track N Field
10,TUBEWAY=Tubeway ][
00,TWERPS=Twerps
00,UP.N.DOWN=Up'n Down
01,VICTORY.ROAD=Victory Road
00,VINDICATOR=Vindicator
00,WARP.DESTROYER=Warp Destroyer
00,WAVY.NAVY=Wavy Navy
[eof]
|
||||
#
# 4cade master game list
#
# Format:
# AB,directory=name
#
# A=1 if game requires joystick, 0 if playable on keyboard
# B=1 if game requires 128K, 0 if playable on 64K
#
# all other values for A or B -> ignore entire line (like this one!)
# A line beginning with '[' terminates the parsing
#
00,AGENT.USA=Agent USA
11,AIRHEART=Airheart
00,ALCAZAR=Alcazar
10,ALIEN.AMBUSH=Alien Ambush
00,ALIEN.DOWNPOUR=Alien Downpour
00,ALIEN.RAIN=Alien Rain
00,ALIEN.MUNCHIES=Alien Munchies
00,ANKH=Ankh
00,CIDER.SPIDER=Apple Cider Spider
00,APPLE.PANIC=Apple Panic
00,AQUATRON=Aquatron
00,ARGOS=Argos
10,ARKANOID=Arkanoid
00,BATTLEZONE=Battlezone
10,BCS.QUEST=BC's Quest For Tires
00,BEER.RUN=Beer Run
00,BELLHOP=Bellhop
00,BERZAP=Berzap
00,BUDGETRILOGY=Bill Budge's Trilogy
00,BLISTER.BALL=Blister Ball
00,BOLO=Bolo
00,BOUNCING.KMNGAS=Bouncing Kamungas
00,BRAINTEASERBLVD=Brainteaser Boulevard
10,BRUCE.LEE=Bruce Lee
10,BUBBLE.BOBBLE=Bubble Bobble
00,BURGERTIME=BurgerTime
00,BUZZARD.BAIT=Buzzard Bait
00,CANNONBALL.BLTZ=Cannonball Blitz
00,CANYON.CLIMBER=Canyon Climber
10,CEILING.ZERO=Ceiling Zero
00,CENTIPEDE=Centipede
00,CHAMP.LODERUN=Championship Lode Runner
10,CHOPLIFTER=Choplifter
00,COMMANDO=Commando
00,CONAN=Conan
00,CRAZY.MAZY=Crazy Mazey
10,CRISIS.MOUNTAIN=Crisis Mountain
00,CRIME.WAVE=Crime Wave
00,CROSSFIRE=Crossfire
00,CYBERSTRIKE=Cyber Strike
01,D.GENERATION=D-Generation
10,DAVIDS.MAGIC=David's Midnight Magic
10,DEFENDER=Defender
00,DIG.DUG=Dig Dug
10,DINO.EGGS=Dino Eggs
10,DONKEY.KONG=Donkey Kong
10,DRELBS=Drelbs
00,DROL=Drol
00,DUNG.BEETLES=Dung Beetles
00,EPOCH=Epoch
00,FALCONS=Falcons
00,FS1=Flight Simulator I
00,FLIP.OUT=Flip Out
00,FIREBIRD=Firebird
10,FORMULA.1=Formula 1 Racer
00,FROGGER=Frogger
10,FUJI.SPEED.WAY=Fuji Crowded Speed Way
10,GALAXIAN=Galaxian
10,GAMMA.GOBLINS=Gamma Goblins
00,GORGON=Gorgon
00,GREMLINS=Gremlins
00,GUMBALL=Gumball
10,HERO=H.E.R.O.
00,HARD.HAT.MACK=Hard Hat Mack
00,HEAD.ON=Head On
00,HIGH.RISE=High Rise
00,HUNGRYBOY=Hungry Boy
10,IMPOSSIBLE.MISS=Impossible Mission
10,INTL.GRAN.PRIX=International Gran Prix
00,JOUST=Joust
00,JUGGLER=Juggler
00,JUMPMAN=Jumpman
00,JUNGLE.HUNT=Jungle Hunt
00,KARATEKA=Karateka
00,LADY.TUT=Lady Tut
00,LODE.RUNNER=Lode Runner
10,LOST.TOMB=Lost Tomb
10,MAD.BOMBER=Mad Bomber
10,MARBLE.MADNESS=Marble Madness
00,MARIO.BROS=Mario Bros
10,MINER.2049ER=Miner 2049er
00,MONTEZUMA=Montezuma's Revenge
00,MOON.PATROL=Moon Patrol
00,MR.COOL=Mr. Cool
10,MR.DO=Mr. Do
00,MR.ROBOT=Mr. Robot
00,MS.PACMAN=Ms. Pacman
00,NIBBLER=Nibbler
10,NIGHT.MISSION=Night Mission Pinball
00,NIGHT.STALKER=Night Stalker
00,NIGHTMARE=Nightmare Gallery
00,NORAD=NORAD
00,ORILEYS.MINE=O'Riley's Mine
00,ORBITRON=Orbitron
00,OUTPOST=Outpost
00,PAC.MAN=Pac-Man
00,PAPERBOY=Paperboy
00,PEST.PATROL=Pest Patrol
10,PHANTOMS.FIVE=Phantoms Five
00,PIEMAN=Pie-Man
00,PITSTOP.II=Pit Stop II
10,PITFALL.II=Pitfall II
00,PLASMANIA=Plasmania
00,POLLYWOG=Pollywog
00,POOYAN=Pooyan
01,PRINCEUNP=Prince of Persia
00,PUCK.MAN=Puckman
11,QIX=Qix
01,RADWARRIOR=Radwarrior
00,RASTER.BLASTER=Raster Blaster
10,RED.ALERT=Red Alert
00,REPTON=Repton
00,RESCUE.RAIDERS=Rescue Raiders
00,RIBBIT=Ribbit
00,ROBOTRON.2084=Robotron 2084
00,SABOTAGE=Sabotage
00,SAMMY.LIGHTFOOT=Sammy Lightfoot
00,SERPENTINE=Serpentine
10,SHAMUS=Shamus
00,SHUFFLEBOARD=Shuffleboard
00,SNACK.ATTACK=Snack Attack
00,SNAKE.BYTE=Snake Byte
00,SNEAKERS=Sneakers
00,SNOGGLE=Snoggle
10,SPACE.EGGS=Space Eggs
00,SPACE.QUARKS=Space Quarks
00,SPACE.RAIDERS=Space Raiders
00,SPARE.CHANGE=Spare Change
00,SPIDER.RAID=Spider Raid
01,SPIDERBOT=Spiderbot
00,SPY.HUNTER=Spy Hunter
00,SPYS.DEMISE=Spy's Demise
10,STARBLASTER=Starblaster
10,STARGATE=Stargate
00,STELLAR.7=Stellar 7
00,SUCCESSION=Succession
00,SUICIDE=Suicide!
00,SWASHBUCKLER=Swashbuckler
00,TAG.TEAM=Tag Team Wrestling
00,TAPPER=Tapper
00,TETRIS=Tetris
01,TETRIS128K=Tetris (DHGR)
01,SUMMER.EDITION=The Games: Summer Edition
01,WINTER.EDITION=The Games: Winter Edition
10,GOONIES=The Goonies
00,THEXDER=Thexder
01,THEXDER128K=Thexder (DHGR)
00,THIEF=Thief
00,THRESHOLD=Threshold
00,THUNDERBOMBS=Thunder Bombs
10,TOMAHAWK=Tomahawk
00,TRACK.AND.FIELD=Track N Field
10,TUBEWAY=Tubeway ][
00,TWERPS=Twerps
00,UP.N.DOWN=Up'n Down
01,VICTORY.ROAD=Victory Road
00,VINDICATOR=Vindicator
00,WARP.DESTROYER=Warp Destroyer
00,WAVY.NAVY=Wavy Navy
[eof]
|
BIN
res/hgr/JUMPMAN
Normal file
BIN
res/hgr/JUMPMAN
Normal file
Binary file not shown.
BIN
res/hgr/RED.ALERT
Normal file
BIN
res/hgr/RED.ALERT
Normal file
Binary file not shown.
BIN
res/hgr/RESCUE.RAIDERS
Normal file
BIN
res/hgr/RESCUE.RAIDERS
Normal file
Binary file not shown.
BIN
res/hgr/THEXDER
Normal file
BIN
res/hgr/THEXDER
Normal file
Binary file not shown.
BIN
res/hgr/THRESHOLD
Normal file
BIN
res/hgr/THRESHOLD
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
#
# Broderbund Software slideshow
#
DAVIDS.MAGIC
GALAXIAN
SERPENTINE
SPARE.CHANGE
SPACE.QUARKS
LODE.RUNNER
SNOGGLE
PRINCEUNP
DROL
CHAMP.LODERUN
CHOPLIFTER
ALIEN.RAIN
KARATEKA
APPLE.PANIC
GUMBALL
[eof]
|
||||
#
# Broderbund Software slideshow
#
DAVIDS.MAGIC
GALAXIAN
SERPENTINE
SPARE.CHANGE
SPACE.QUARKS
LODE.RUNNER
SNOGGLE
PRINCEUNP
RED.ALERT
DROL
CHAMP.LODERUN
CHOPLIFTER
ALIEN.RAIN
KARATEKA
APPLE.PANIC
GUMBALL
[eof]
|
@ -1 +1 @@
|
||||
#
# double hi-res slideshow
#
AIRHEART
BRUCE.LEE
D.GENERATION
PRINCEUNP
QIX
RADWARRIOR
SPIDERBOT
TETRIS128K
VICTORY.ROAD
[eof]
|
||||
#
# double hi-res slideshow
#
SUMMER.EDITION
THEXDER128K
WINTER.EDITION
AIRHEART
BRUCE.LEE
D.GENERATION
PRINCEUNP
QIX
RADWARRIOR
SPIDERBOT
TETRIS128K
VICTORY.ROAD
[eof]
|
@ -1 +1 @@
|
||||
#
# slideshow of favorite title screens
#
TOMAHAWK
SPYS.DEMISE
DIG.DUG
WAVY.NAVY
TETRIS
TAPPER
TUBEWAY
POOYAN
GOONIES
PLASMANIA
PITFALL.II
ALCAZAR
SABOTAGE
SPARE.CHANGE
FROGGER
GORGON
CONAN
NIGHT.MISSION
DINO.EGGS
FALCONS
BRUCE.LEE
BCS.QUEST
JOUST
DUNG.BEETLES
MR.ROBOT
MOON.PATROL
HERO
DROL
MONTEZUMA
DAVIDS.MAGIC
CRAZY.MAZY
PAPERBOY
PRINCEUNP
LOST.TOMB
NIBBLER
SNAKE.BYTE
SWASHBUCKLER
[eof]
|
||||
#
# slideshow of favorite title screens
#
TOMAHAWK
SPYS.DEMISE
DIG.DUG
WAVY.NAVY
TETRIS
TAPPER
TUBEWAY
POOYAN
GOONIES
PLASMANIA
PITFALL.II
ALCAZAR
SABOTAGE
SPARE.CHANGE
RESCUE.RAIDERS
FROGGER
GORGON
CONAN
NIGHT.MISSION
DINO.EGGS
FALCONS
BRUCE.LEE
BCS.QUEST
JOUST
DUNG.BEETLES
MR.ROBOT
MOON.PATROL
HERO
DROL
MONTEZUMA
DAVIDS.MAGIC
CRAZY.MAZY
PAPERBOY
PRINCEUNP
LOST.TOMB
SWASHBUCKLER
[eof]
|
@ -1 +1 @@
|
||||
#
# slideshow of games that begin with "H","I","J","K","L"
#
JUGGLER
LADY.TUT
HERO
JUNGLE.HUNT
HUNGRYBOY
HIGH.RISE
LOST.TOMB
JOUST
LODE.RUNNER
INTL.GRAN.PRIX
HARD.HAT.MACK
HEAD.ON
IMPOSSIBLE.MISS
KARATEKA
[eof]
|
||||
#
# slideshow of games that begin with "H","I","J","K","L"
#
JUGGLER
LADY.TUT
HERO
JUNGLE.HUNT
HUNGRYBOY
HIGH.RISE
LOST.TOMB
JOUST
LODE.RUNNER
INTL.GRAN.PRIX
HARD.HAT.MACK
JUMPMAN
HEAD.ON
IMPOSSIBLE.MISS
KARATEKA
[eof]
|
@ -1 +1 @@
|
||||
#
# slideshow of games that begin with "P","Q","R"
#
PEST.PATROL
PAPERBOY
PIEMAN
PITFALL.II
RASTER.BLASTER
POLLYWOG
PAC.MAN
ROBOTRON.2084
PRINCEUNP
PLASMANIA
PITSTOP.II
RIBBIT
REPTON
PHANTOMS.FIVE
POOYAN
PUCK.MAN
[eof]
|
||||
#
# slideshow of games that begin with "P","Q","R"
#
RESCUE.RAIDERS
PEST.PATROL
PAPERBOY
PIEMAN
RED.ALERT
PITFALL.II
RASTER.BLASTER
POLLYWOG
PAC.MAN
ROBOTRON.2084
PRINCEUNP
PLASMANIA
PITSTOP.II
RIBBIT
REPTON
PHANTOMS.FIVE
POOYAN
PUCK.MAN
[eof]
|
@ -1 +1 @@
|
||||
BRUCE.LEE
AQUATRON
[eof]
|
||||
THRESHOLD
THEXDER
RESCUE.RAIDERS
JUMPMAN
RED.ALERT
#BRUCE.LEE
#AQUATRON
[eof]
|
@ -1 +1 @@
|
||||
#
# Sierra On-Line slideshow
#
BCS.QUEST
SABOTAGE
CANNONBALL.BLTZ
CROSSFIRE
SAMMY.LIGHTFOOT
CIDER.SPIDER
AQUATRON
PEST.PATROL
[eof]
|
||||
#
# Sierra On-Line slideshow
#
BCS.QUEST
SABOTAGE
CANNONBALL.BLTZ
THRESHOLD
CROSSFIRE
SAMMY.LIGHTFOOT
CIDER.SPIDER
THEXDER
AQUATRON
PEST.PATROL
[eof]
|
@ -1 +1 @@
|
||||
#
# slideshow of games that begin with "T","U","V","W","X","Y","Z"
#
TRACK.AND.FIELD
THUNDERBOMBS
TAG.TEAM
VINDICATOR
UP.N.DOWN
WAVY.NAVY
THIEF
TOMAHAWK
TUBEWAY
TAPPER
TWERPS
TETRIS
WARP.DESTROYER
[eof]
|
||||
#
# slideshow of games that begin with "T","U","V","W","X","Y","Z"
#
TRACK.AND.FIELD
THUNDERBOMBS
TAG.TEAM
VINDICATOR
UP.N.DOWN
WAVY.NAVY
THIEF
TOMAHAWK
THRESHOLD
THEXDER
TUBEWAY
TAPPER
TWERPS
TETRIS
WARP.DESTROYER
[eof]
|
@ -28,7 +28,6 @@ Gulf Strike
|
||||
Heavy Barrel [DHGR] [priority]
|
||||
The Heist
|
||||
Impossible Mission II [DHGR]
|
||||
Jumpman
|
||||
Kamikaze
|
||||
Karate Champ
|
||||
Kung Fu Master
|
||||
@ -69,8 +68,6 @@ Super Bunny
|
||||
Super Huey
|
||||
Techno Cop [DHGR] [priority]
|
||||
Tharolian Tunnels
|
||||
The Games: Winter Edition [DHGR]
|
||||
Threshold
|
||||
Video Vegas
|
||||
World Karate Championship
|
||||
The World's Greatest Baseball Game
|
||||
@ -91,7 +88,6 @@ Pipe Dream [DHGR] [priority]
|
||||
Renegade [DHGR] [priority]
|
||||
Sea Dragon
|
||||
Ski Crazed
|
||||
The Games: Summer Edition [DHGR]
|
||||
|
||||
//qkumba crack
|
||||
Bandits
|
||||
@ -100,10 +96,8 @@ Injured Engine
|
||||
Jawbreaker ][
|
||||
Mating Zone
|
||||
Randamn
|
||||
Rescue Raiders [priority]
|
||||
Saracen
|
||||
Test Drive [DHGR] [priority]
|
||||
Thexder [DHGR] [priority]
|
||||
|
||||
//TODO(woz-imaged but uncracked)
|
||||
The Bilestoad
|
||||
@ -124,7 +118,6 @@ Peeping Tom
|
||||
Pulsar II
|
||||
Quadrant 6112
|
||||
Rear Guard
|
||||
Red Alert
|
||||
Roach Hotel
|
||||
Russki Duck
|
||||
Seafox
|
||||
|
Loading…
x
Reference in New Issue
Block a user