├── .gitignore ├── .gitmodules ├── .vs ├── ProjectSettings.json ├── VSWorkspaceState.json ├── satiator-rings │ └── v16 │ │ ├── .suo │ │ └── Browse.VC.db └── slnx.sqlite ├── .vscode └── settings.json ├── SD ├── ar_patched-satiator-rings.bin ├── boot.desc └── satiator-rings │ ├── ar │ ├── ar_patched-satiator-rings_ARP_201.bin │ ├── ar_patched-satiator-rings_ARP_201D.bin │ ├── ar_patched-satiator-rings_ARP_201Z.bin │ ├── ar_patched-satiator-rings_ARP_202.bin │ ├── ar_patched-satiator-rings_ARP_202C.bin │ ├── ar_patched-satiator-rings_ARS_14BG.bin │ ├── ar_patched-satiator-rings_ARS_15DG.bin │ ├── ar_patched-satiator-rings_ARS_181.bin │ ├── ar_patched-satiator-rings_ARS_194.bin │ ├── ar_patched-satiator-rings_ARS_194C.bin │ └── ar_patched-satiator-rings_AR_201_RED_LABEL.bin │ ├── emulate.bin │ ├── gfx │ ├── FONT.TGA │ ├── S.TGA │ ├── S1.TGA │ ├── S2.TGA │ └── SBOX.TGA │ ├── sfx │ ├── BACK.PCM │ ├── CHANGE.PCM │ ├── INTRO.PCM │ ├── MOVE.PCM │ ├── OPTION.PCM │ ├── SANSH.PCM │ ├── SELECT.PCM │ ├── SLIDE.PCM │ └── THUD.PCM │ └── themes │ ├── blue │ ├── CONSOLE.TGA │ ├── CORNER.TGA │ ├── GAME.TGA │ ├── MENU.TGA │ ├── OPTION.TGA │ ├── RINGS.TGA │ ├── SHDW.TGA │ ├── SIATOR.TGA │ ├── THEME.TGA │ └── theme.ini │ ├── dark │ ├── CONSOLE.TGA │ ├── CORNER.TGA │ ├── GAME.TGA │ ├── MENU.TGA │ ├── OPTION.TGA │ ├── RINGS.TGA │ ├── SHDW.TGA │ ├── SIATOR.TGA │ ├── THEME.TGA │ └── theme.ini │ └── default │ ├── CONSOLE.TGA │ ├── CORNER.TGA │ ├── GAME.TGA │ ├── MENU.TGA │ ├── OPTION.TGA │ ├── RINGS.TGA │ ├── SHDW.TGA │ ├── SIATOR.TGA │ ├── THEME.TGA │ └── theme.ini ├── Save-Game-Copier ├── backends │ ├── README.md │ ├── backend.c │ ├── backend.h │ ├── sat.c │ ├── sat.h │ ├── satiator.c │ ├── satiator.h │ ├── saturn.c │ └── saturn.h ├── bup_header.c └── bup_header.h ├── background.c ├── background.h ├── bios.c ├── bios.h ├── cd ├── ABS.TXT ├── BIB.TXT └── CPY.TXT ├── clean.bat ├── clean.sh ├── compile - mednafen.bat ├── compile.bat ├── compile.sh ├── compile_and_run_with_yabause.bat ├── debug.c ├── debug.h ├── direntry.c ├── direntry.h ├── font.c ├── font.h ├── gui.c ├── gui.h ├── ini.c ├── ini.h ├── main.c ├── main.h ├── makefile ├── options_file.c ├── options_file.h ├── pad_controllers.c ├── pad_controllers.h ├── run_with_daemon_tools_and_ssf.bat ├── run_with_kronos.bat ├── run_with_mednafen.bat ├── run_with_nova.bat ├── run_with_powershell_and_ssf.ps1 ├── run_with_virtual_clone_drive_and_ssf.bat ├── run_with_yabaSanshiro.bat ├── run_with_yabause.bat ├── run_with_yabause.sh ├── satiator ├── disc_format │ ├── .gitignore │ ├── cdparse.c │ ├── cdparse.h │ ├── cue2desc.c │ └── test_image2desc.c ├── elf.h ├── elfloader.c ├── endian.h ├── iapetus │ ├── bios.h │ ├── cd │ │ ├── cd.c │ │ ├── cd.h │ │ ├── cdsect.c │ │ └── cdsect.h │ ├── iapetus.h │ ├── peripherals │ │ └── smpc.h │ ├── sh2 │ │ ├── sh2int.c │ │ └── sh2int.h │ ├── types.h │ └── video │ │ ├── vdp.h │ │ └── vdpinit.c ├── jhloader.c └── jhloader.h ├── satiator_functions.c ├── satiator_functions.h ├── save_functions.c ├── save_functions.h ├── sci.c ├── sci.h ├── sound.c ├── sound.h ├── source images ├── GAME1.xcf ├── Header.xcf ├── Vermin Vibes 1989.ttf ├── favicon.ico └── logo.png ├── sprite_manager.c ├── sprite_manager.h ├── states ├── bootscreen.c ├── console_information.c ├── gamelist.c ├── init.c ├── menu.c ├── menu_options.c ├── menu_options.h ├── options.c ├── options.h ├── routine_states.c ├── routine_states.h ├── satiator_information.c ├── splash.c └── theme.c ├── theme.c └── theme.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": "No Configurations" 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/satiator-rings/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/.vs/satiator-rings/v16/.suo -------------------------------------------------------------------------------- /.vs/satiator-rings/v16/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/.vs/satiator-rings/v16/Browse.VC.db -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /SD/ar_patched-satiator-rings.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/ar_patched-satiator-rings.bin -------------------------------------------------------------------------------- /SD/boot.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/boot.desc -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_ARP_201.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_ARP_201.bin -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_ARP_201D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_ARP_201D.bin -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_ARP_201Z.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_ARP_201Z.bin -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_ARP_202.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_ARP_202.bin -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_ARP_202C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_ARP_202C.bin -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_ARS_14BG.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_ARS_14BG.bin -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_ARS_15DG.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_ARS_15DG.bin -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_ARS_181.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_ARS_181.bin -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_ARS_194.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_ARS_194.bin -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_ARS_194C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_ARS_194C.bin -------------------------------------------------------------------------------- /SD/satiator-rings/ar/ar_patched-satiator-rings_AR_201_RED_LABEL.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/ar/ar_patched-satiator-rings_AR_201_RED_LABEL.bin -------------------------------------------------------------------------------- /SD/satiator-rings/emulate.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/emulate.bin -------------------------------------------------------------------------------- /SD/satiator-rings/gfx/FONT.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/gfx/FONT.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/gfx/S.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/gfx/S.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/gfx/S1.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/gfx/S1.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/gfx/S2.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/gfx/S2.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/gfx/SBOX.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/gfx/SBOX.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/sfx/BACK.PCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/sfx/BACK.PCM -------------------------------------------------------------------------------- /SD/satiator-rings/sfx/CHANGE.PCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/sfx/CHANGE.PCM -------------------------------------------------------------------------------- /SD/satiator-rings/sfx/INTRO.PCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/sfx/INTRO.PCM -------------------------------------------------------------------------------- /SD/satiator-rings/sfx/MOVE.PCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/sfx/MOVE.PCM -------------------------------------------------------------------------------- /SD/satiator-rings/sfx/OPTION.PCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/sfx/OPTION.PCM -------------------------------------------------------------------------------- /SD/satiator-rings/sfx/SANSH.PCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/sfx/SANSH.PCM -------------------------------------------------------------------------------- /SD/satiator-rings/sfx/SELECT.PCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/sfx/SELECT.PCM -------------------------------------------------------------------------------- /SD/satiator-rings/sfx/SLIDE.PCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/sfx/SLIDE.PCM -------------------------------------------------------------------------------- /SD/satiator-rings/sfx/THUD.PCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/sfx/THUD.PCM -------------------------------------------------------------------------------- /SD/satiator-rings/themes/blue/CONSOLE.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/blue/CONSOLE.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/blue/CORNER.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/blue/CORNER.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/blue/GAME.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/blue/GAME.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/blue/MENU.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/blue/MENU.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/blue/OPTION.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/blue/OPTION.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/blue/RINGS.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/blue/RINGS.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/blue/SHDW.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/blue/SHDW.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/blue/SIATOR.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/blue/SIATOR.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/blue/THEME.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/blue/THEME.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/blue/theme.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/blue/theme.ini -------------------------------------------------------------------------------- /SD/satiator-rings/themes/dark/CONSOLE.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/dark/CONSOLE.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/dark/CORNER.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/dark/CORNER.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/dark/GAME.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/dark/GAME.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/dark/MENU.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/dark/MENU.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/dark/OPTION.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/dark/OPTION.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/dark/RINGS.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/dark/RINGS.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/dark/SHDW.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/dark/SHDW.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/dark/SIATOR.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/dark/SIATOR.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/dark/THEME.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/dark/THEME.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/dark/theme.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/dark/theme.ini -------------------------------------------------------------------------------- /SD/satiator-rings/themes/default/CONSOLE.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/default/CONSOLE.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/default/CORNER.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/default/CORNER.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/default/GAME.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/default/GAME.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/default/MENU.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/default/MENU.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/default/OPTION.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/default/OPTION.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/default/RINGS.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/default/RINGS.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/default/SHDW.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/default/SHDW.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/default/SIATOR.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/default/SIATOR.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/default/THEME.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/default/THEME.TGA -------------------------------------------------------------------------------- /SD/satiator-rings/themes/default/theme.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/SD/satiator-rings/themes/default/theme.ini -------------------------------------------------------------------------------- /Save-Game-Copier/backends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/backends/README.md -------------------------------------------------------------------------------- /Save-Game-Copier/backends/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/backends/backend.c -------------------------------------------------------------------------------- /Save-Game-Copier/backends/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/backends/backend.h -------------------------------------------------------------------------------- /Save-Game-Copier/backends/sat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/backends/sat.c -------------------------------------------------------------------------------- /Save-Game-Copier/backends/sat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/backends/sat.h -------------------------------------------------------------------------------- /Save-Game-Copier/backends/satiator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/backends/satiator.c -------------------------------------------------------------------------------- /Save-Game-Copier/backends/satiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/backends/satiator.h -------------------------------------------------------------------------------- /Save-Game-Copier/backends/saturn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/backends/saturn.c -------------------------------------------------------------------------------- /Save-Game-Copier/backends/saturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/backends/saturn.h -------------------------------------------------------------------------------- /Save-Game-Copier/bup_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/bup_header.c -------------------------------------------------------------------------------- /Save-Game-Copier/bup_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/Save-Game-Copier/bup_header.h -------------------------------------------------------------------------------- /background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/background.c -------------------------------------------------------------------------------- /background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/background.h -------------------------------------------------------------------------------- /bios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/bios.c -------------------------------------------------------------------------------- /bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/bios.h -------------------------------------------------------------------------------- /cd/ABS.TXT: -------------------------------------------------------------------------------- 1 | NOT Abstracted by SEGA 2 | 3 | -------------------------------------------------------------------------------- /cd/BIB.TXT: -------------------------------------------------------------------------------- 1 | NOT Bibliographiced by SEGA 2 | 3 | -------------------------------------------------------------------------------- /cd/CPY.TXT: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/clean.bat -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/clean.sh -------------------------------------------------------------------------------- /compile - mednafen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/compile - mednafen.bat -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/compile.bat -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/compile.sh -------------------------------------------------------------------------------- /compile_and_run_with_yabause.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/compile_and_run_with_yabause.bat -------------------------------------------------------------------------------- /debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/debug.c -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/debug.h -------------------------------------------------------------------------------- /direntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/direntry.c -------------------------------------------------------------------------------- /direntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/direntry.h -------------------------------------------------------------------------------- /font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/font.c -------------------------------------------------------------------------------- /font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/font.h -------------------------------------------------------------------------------- /gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/gui.c -------------------------------------------------------------------------------- /gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/gui.h -------------------------------------------------------------------------------- /ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/ini.c -------------------------------------------------------------------------------- /ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/ini.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/main.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/makefile -------------------------------------------------------------------------------- /options_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/options_file.c -------------------------------------------------------------------------------- /options_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/options_file.h -------------------------------------------------------------------------------- /pad_controllers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/pad_controllers.c -------------------------------------------------------------------------------- /pad_controllers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/pad_controllers.h -------------------------------------------------------------------------------- /run_with_daemon_tools_and_ssf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/run_with_daemon_tools_and_ssf.bat -------------------------------------------------------------------------------- /run_with_kronos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/run_with_kronos.bat -------------------------------------------------------------------------------- /run_with_mednafen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/run_with_mednafen.bat -------------------------------------------------------------------------------- /run_with_nova.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/run_with_nova.bat -------------------------------------------------------------------------------- /run_with_powershell_and_ssf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/run_with_powershell_and_ssf.ps1 -------------------------------------------------------------------------------- /run_with_virtual_clone_drive_and_ssf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/run_with_virtual_clone_drive_and_ssf.bat -------------------------------------------------------------------------------- /run_with_yabaSanshiro.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/run_with_yabaSanshiro.bat -------------------------------------------------------------------------------- /run_with_yabause.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/run_with_yabause.bat -------------------------------------------------------------------------------- /run_with_yabause.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/run_with_yabause.sh -------------------------------------------------------------------------------- /satiator/disc_format/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/disc_format/.gitignore -------------------------------------------------------------------------------- /satiator/disc_format/cdparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/disc_format/cdparse.c -------------------------------------------------------------------------------- /satiator/disc_format/cdparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/disc_format/cdparse.h -------------------------------------------------------------------------------- /satiator/disc_format/cue2desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/disc_format/cue2desc.c -------------------------------------------------------------------------------- /satiator/disc_format/test_image2desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/disc_format/test_image2desc.c -------------------------------------------------------------------------------- /satiator/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/elf.h -------------------------------------------------------------------------------- /satiator/elfloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/elfloader.c -------------------------------------------------------------------------------- /satiator/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/endian.h -------------------------------------------------------------------------------- /satiator/iapetus/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/bios.h -------------------------------------------------------------------------------- /satiator/iapetus/cd/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/cd/cd.c -------------------------------------------------------------------------------- /satiator/iapetus/cd/cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/cd/cd.h -------------------------------------------------------------------------------- /satiator/iapetus/cd/cdsect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/cd/cdsect.c -------------------------------------------------------------------------------- /satiator/iapetus/cd/cdsect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/cd/cdsect.h -------------------------------------------------------------------------------- /satiator/iapetus/iapetus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/iapetus.h -------------------------------------------------------------------------------- /satiator/iapetus/peripherals/smpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/peripherals/smpc.h -------------------------------------------------------------------------------- /satiator/iapetus/sh2/sh2int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/sh2/sh2int.c -------------------------------------------------------------------------------- /satiator/iapetus/sh2/sh2int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/sh2/sh2int.h -------------------------------------------------------------------------------- /satiator/iapetus/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/types.h -------------------------------------------------------------------------------- /satiator/iapetus/video/vdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/video/vdp.h -------------------------------------------------------------------------------- /satiator/iapetus/video/vdpinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/iapetus/video/vdpinit.c -------------------------------------------------------------------------------- /satiator/jhloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/jhloader.c -------------------------------------------------------------------------------- /satiator/jhloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator/jhloader.h -------------------------------------------------------------------------------- /satiator_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator_functions.c -------------------------------------------------------------------------------- /satiator_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/satiator_functions.h -------------------------------------------------------------------------------- /save_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/save_functions.c -------------------------------------------------------------------------------- /save_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/save_functions.h -------------------------------------------------------------------------------- /sci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/sci.c -------------------------------------------------------------------------------- /sci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/sci.h -------------------------------------------------------------------------------- /sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/sound.c -------------------------------------------------------------------------------- /sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/sound.h -------------------------------------------------------------------------------- /source images/GAME1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/source images/GAME1.xcf -------------------------------------------------------------------------------- /source images/Header.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/source images/Header.xcf -------------------------------------------------------------------------------- /source images/Vermin Vibes 1989.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/source images/Vermin Vibes 1989.ttf -------------------------------------------------------------------------------- /source images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/source images/favicon.ico -------------------------------------------------------------------------------- /source images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/source images/logo.png -------------------------------------------------------------------------------- /sprite_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/sprite_manager.c -------------------------------------------------------------------------------- /sprite_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/sprite_manager.h -------------------------------------------------------------------------------- /states/bootscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/bootscreen.c -------------------------------------------------------------------------------- /states/console_information.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/console_information.c -------------------------------------------------------------------------------- /states/gamelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/gamelist.c -------------------------------------------------------------------------------- /states/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/init.c -------------------------------------------------------------------------------- /states/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/menu.c -------------------------------------------------------------------------------- /states/menu_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/menu_options.c -------------------------------------------------------------------------------- /states/menu_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/menu_options.h -------------------------------------------------------------------------------- /states/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/options.c -------------------------------------------------------------------------------- /states/options.h: -------------------------------------------------------------------------------- 1 | extern void logic_options(); -------------------------------------------------------------------------------- /states/routine_states.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/routine_states.c -------------------------------------------------------------------------------- /states/routine_states.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/routine_states.h -------------------------------------------------------------------------------- /states/satiator_information.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/satiator_information.c -------------------------------------------------------------------------------- /states/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/splash.c -------------------------------------------------------------------------------- /states/theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/states/theme.c -------------------------------------------------------------------------------- /theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/theme.c -------------------------------------------------------------------------------- /theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrohead/satiator-rings/HEAD/theme.h --------------------------------------------------------------------------------