Skip to content

Commit

Permalink
Fixed arcade rom loading.
Browse files Browse the repository at this point in the history
  • Loading branch information
FluBBaOfWard committed Oct 31, 2023
1 parent 4c30651 commit a7094fb
Show file tree
Hide file tree
Showing 5 changed files with 180 additions and 77 deletions.
4 changes: 3 additions & 1 deletion History.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ S8DS revision history
-=-=-=-=-=-=-=-=-=-=-=-


V1.1.7 - 2023-10-28 (FluBBa)
V1.1.7 - 2023-10-31 (FluBBa)
Added support for "Megumi Rescue" on System-E.
Added support for "Opa Opa unencrypted" on System-E.
Added support for "Slap Shooter" on System-E.
Added support for "Super Derby (satellite board)" on SG-AC (not working).
Added support for "Super Derby II (satellite board)" on SG-AC (not working).
Added new debug menu.
Fixed envelope handling on the AY38910.
Fixed pause on older Sega machines (again).
Expand Down
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,6 @@ better 3D effect, I have only tested with red/cyan glasses.
* GG Border: Lets you change between black, bordercolor and none.
* Perfect Sprites: Uses a bit more cpu but is worth it.
* 3D Display: Terminator vs Robocop needs this off.
* Disable Background: Turn on/off background rendering.
* Disable Sprites: Turn on/off sprite rendering.
* Machine:
* Region: Change the region of the SMS and video standard.
* Machine: Here you can select the hardware, Auto should work for most games.
Expand All @@ -116,8 +114,12 @@ better 3D effect, I have only tested with red/cyan glasses.
screen when menu is not active.
* Emulator on Bottom: Select if top or bottom screen should be used for
emulator, when menu is active emulator screen is allways on top.
* Debug Output: Toggle fps meter & more.
* Autosleep: Change the autosleep time, also see Sleep. !!!DoesntWork!!!
* Debug:
* Debug Output: Toggle fps meter & more.
* Disable Background: Turn on/off background rendering.
* Disable Sprites: Turn on/off sprite rendering.
* Step Frame: Emulate one frame.
* Dipswitches: For arcade games

### About
Expand All @@ -126,27 +128,37 @@ Some dumb info...

## Arcade roms

## MegaTech

* After Burner MT - mt_aftrb.zip
* Alien Syndrom MT - mt_asyn.zip
* Astro Warrior MT - mt_astro.zip
* Fantasy Zone MT - mt_fz.zip
* Great Football MT - mt_gfoot.zip
* Great Golf MT - mt_ggolf.zip
* Great Soccer MT - mt_gsocr.zip
* Great Soccer MT - mt_gsocr.zip (bad dump)
* Out Run MT - mt_orun.zip
* Parlour Games MT - mt_parlg.zip
* Shinobi MT - mt_shnbi.zip

## SG AC

* Champion Boxing SG-AC - chboxing.zip
* Champion Wrestling SG-AC - chwrestl.zip (encrypted)
* Doki Doki Penguin SG-AC - dokidoki.zip
* Super Derby (satellite board) SG-AC - sderbys (not working)
* Super Derby II (satellite board) SG-AC - sderby2s (not working)

## System-E

* Astro Flash System-E - astrofl.zip (encrypted)
* Fantasy Zone 2 System-E - fantzn2.zip (encrypted)
* Hang On Jr System-E - hangonjr.zip
* Megumi Rescue System-E - megrescu.zip
* Opa Opa System-E - opaopa.zip (encrypted)
* Opa Opa System-E - opaopan.zip
* Riddle Of Pythagoras System-E - ridleofp.zip
* Slap Shooter System-E - slapshtr.zip
* Tetris System-E - tetrisse.zip
* Transformer System-E - transfrm.zip

Expand All @@ -163,6 +175,6 @@ The crew at PocketHeaven for their support.

Fredrik Ahlström

Twitter/X @TheRealFluBBa
X/Twitter @TheRealFluBBa

http://www.github.com/FluBBaOfWard
2 changes: 2 additions & 0 deletions source/Equates.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@
#define AC_CHAMPION_BOXING (0x01)
#define AC_CHAMPION_WRESTLING (0x02)
#define AC_DOKI_DOKI_PENGUIN (0x03)
#define AC_SUPER_DERBY (0x04)
#define AC_SUPER_DERBY_II (0x05)
#define AC_HANG_ON_JR (0x10)
#define AC_SLAP_SHOOTER (0x11)
#define AC_TRANSFORMER (0x12)
Expand Down
2 changes: 1 addition & 1 deletion source/Gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "AY38910/Version.h"
#include "SCC/Version.h"

#define EMUVERSION "V1.1.7 2023-10-28"
#define EMUVERSION "V1.1.7 2023-10-31"

#define ENABLE_LIVE_UI (1<<12)

Expand Down
Loading

0 comments on commit a7094fb

Please sign in to comment.