├── 6809ops.c ├── 6809tbl.c ├── 8255ppi.c ├── 8255ppi.h ├── EXCLUDE.txt ├── FILES.txt ├── Make02.bat ├── Makefile ├── README.md ├── YM2151_s16.C.bak ├── bitswap.h ├── burn.c ├── burn.h ├── burn_sound.h ├── burn_sound_c.c ├── burn_ym2151.c ├── burn_ym2151.h ├── burn_ym2413.c ├── burn_ym2413.h ├── burnint.h ├── clear.bat ├── cz80 ├── cz80.c ├── cz80_op.c ├── cz80_opCB.c ├── cz80_opED.c ├── cz80_opXY.c ├── cz80_opXYCB.c ├── cz80jmp.c └── cz80m.h ├── cz80sys1 ├── cz80.c ├── cz80_op.c ├── cz80_opCB.c ├── cz80_opED.c ├── cz80_opXY.c ├── cz80_opXYCB.c ├── cz80jmp.c └── cz80m.h ├── czet.c ├── czet.h ├── d_1943.c ├── d_1943.h ├── d_appoooh.c ├── d_appoooh.h ├── d_atetris.c ├── d_atetris_mame6502.c ├── d_atetris_mame6502.h ├── d_bankp.c ├── d_bankp.h ├── d_blktiger.c ├── d_blktiger.h ├── d_bombjack.c ├── d_bombjack.h ├── d_freekick.c ├── d_freekick.h ├── d_gberet.c ├── d_gberet.h ├── d_gng.c ├── d_gng.h ├── d_higemaru.c ├── d_higemaru.h ├── d_mitchell.c ├── d_mitchell.h ├── d_msx.c ├── d_msx.h ├── d_news.c ├── d_news.h ├── d_ninjakd2.c ├── d_ninjakd2.h ├── d_pacman.c ├── d_pacman.h ├── d_pkunwar.c ├── d_pkunwar.h ├── d_segae.c ├── d_segae.h ├── d_sg1000.c ├── d_sg1000.h ├── d_sidarm.c ├── d_sidarm.h ├── d_slpfgh.c ├── d_slpfgh.h ├── d_sms.c ├── d_sms.h ├── d_solomon.c ├── d_solomon.h ├── d_sys1.c ├── d_sys1.h ├── d_sys1_common.c ├── d_sys1_common.h ├── d_sys1h.c ├── d_sys1h.h ├── d_sys2.c ├── d_sys2.h ├── d_vigilant.c ├── d_vigilant.h ├── d_wiz.c ├── d_wiz.h ├── d_zaxxon.c ├── d_zaxxon.h ├── eeprom.c ├── eeprom.h ├── globals.h ├── kabuki.c ├── libyaul ├── LICENSE.txt └── libtga │ ├── tga.c │ └── tga.h ├── load.c ├── m6502.new ├── ill02.h ├── m6502.c ├── m6502.h ├── m6502_intf.c ├── m6502_intf.h ├── ops02.h ├── opsc02.h ├── opsn2a03.h ├── t6502.c ├── t65c02.c ├── t65sc02.c ├── tdeco16.c └── tn2a03.c ├── m6502 ├── m6502.c ├── m6502.h ├── m6502_intf.c ├── m6502_intf.h ├── m6502ops.h ├── tbl6502.h ├── tbl6510.h └── tbl65c02.h ├── m6809.c ├── m6809.h ├── m6809_intf.c ├── m6809_intf.h ├── mc8123.c ├── mc8123.h ├── psg.c ├── psg.h ├── psg_sms.c ├── psg_sms.h ├── raze ├── raze.h ├── raze.inc ├── raze.reg ├── raze.s └── raze.s.m4 ├── root ├── ABS.TXT ├── BIB.TXT ├── BLKTIGER │ ├── 033.pcm │ ├── 034.pcm │ ├── 035.pcm │ ├── 036.pcm │ ├── 037.pcm │ ├── 038.pcm │ ├── 039.pcm │ ├── 040.pcm │ ├── 041.pcm │ ├── 042.pcm │ ├── 043.pcm │ ├── 044.pcm │ ├── 045.pcm │ ├── 046.pcm │ ├── 047.pcm │ ├── 048.pcm │ ├── 049.pcm │ ├── 050.pcm │ ├── 051.pcm │ ├── 052.pcm │ └── SFX.ROM ├── CPY.TXT ├── SDDRVS.TSK ├── font.bin ├── img.lnk ├── overlay.lnk ├── sl.cti ├── sl.lnk └── sl2.lnk ├── saturn ├── SYSCALL.H ├── file.c ├── font.c ├── images │ ├── help.h │ └── main.h ├── img.c ├── low.s ├── ovl.c ├── ovl.h ├── pcmstm.c ├── pcmstm.h ├── pcmsys2.c ├── pcmsys2.h ├── saturn.c ├── saturn.h ├── saturn_ext.c ├── saturn_snd.c ├── saturn_snd.h └── strt1_vbt.s ├── slapstic.c ├── slapstic.h ├── snd ├── ay8910.c ├── ay8910.h ├── burn_ym2203.c ├── burn_ym2203.h ├── dac.c ├── dac.h ├── driver.h ├── empty_drv.h ├── fm.c ├── fm.h ├── k051649.c ├── k051649.h ├── msm5205.c ├── msm5205.h ├── msm6295.c ├── msm6295.h ├── namco_snd.c ├── namco_snd.h ├── notes.h ├── scsp.h ├── sinepatt.h ├── sn76496.c ├── sn76496.h ├── sn76496ced.h ├── sn_map.h ├── sound_table.h ├── timer.c ├── timer.h ├── ym2151.c ├── ym2151.h └── ym2151_scsp.c ├── stdfunc.h ├── strt ├── strt1_g.o └── strt2_g.o ├── tms9928a.c ├── tms9928a.h ├── ym2413.c ├── ym2413.h ├── z80 ├── z80.c ├── z80.h ├── z80daisy.c └── z80daisy.h ├── z80_intf.c └── z80_intf.h /6809ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/6809ops.c -------------------------------------------------------------------------------- /6809tbl.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8255ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/8255ppi.c -------------------------------------------------------------------------------- /8255ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/8255ppi.h -------------------------------------------------------------------------------- /EXCLUDE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/EXCLUDE.txt -------------------------------------------------------------------------------- /FILES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/FILES.txt -------------------------------------------------------------------------------- /Make02.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/Make02.bat -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/README.md -------------------------------------------------------------------------------- /YM2151_s16.C.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/YM2151_s16.C.bak -------------------------------------------------------------------------------- /bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/bitswap.h -------------------------------------------------------------------------------- /burn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/burn.c -------------------------------------------------------------------------------- /burn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/burn.h -------------------------------------------------------------------------------- /burn_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/burn_sound.h -------------------------------------------------------------------------------- /burn_sound_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/burn_sound_c.c -------------------------------------------------------------------------------- /burn_ym2151.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/burn_ym2151.c -------------------------------------------------------------------------------- /burn_ym2151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/burn_ym2151.h -------------------------------------------------------------------------------- /burn_ym2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/burn_ym2413.c -------------------------------------------------------------------------------- /burn_ym2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/burn_ym2413.h -------------------------------------------------------------------------------- /burnint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/burnint.h -------------------------------------------------------------------------------- /clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/clear.bat -------------------------------------------------------------------------------- /cz80/cz80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80/cz80.c -------------------------------------------------------------------------------- /cz80/cz80_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80/cz80_op.c -------------------------------------------------------------------------------- /cz80/cz80_opCB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80/cz80_opCB.c -------------------------------------------------------------------------------- /cz80/cz80_opED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80/cz80_opED.c -------------------------------------------------------------------------------- /cz80/cz80_opXY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80/cz80_opXY.c -------------------------------------------------------------------------------- /cz80/cz80_opXYCB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80/cz80_opXYCB.c -------------------------------------------------------------------------------- /cz80/cz80jmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80/cz80jmp.c -------------------------------------------------------------------------------- /cz80/cz80m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80/cz80m.h -------------------------------------------------------------------------------- /cz80sys1/cz80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80sys1/cz80.c -------------------------------------------------------------------------------- /cz80sys1/cz80_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80sys1/cz80_op.c -------------------------------------------------------------------------------- /cz80sys1/cz80_opCB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80sys1/cz80_opCB.c -------------------------------------------------------------------------------- /cz80sys1/cz80_opED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80sys1/cz80_opED.c -------------------------------------------------------------------------------- /cz80sys1/cz80_opXY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80sys1/cz80_opXY.c -------------------------------------------------------------------------------- /cz80sys1/cz80_opXYCB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80sys1/cz80_opXYCB.c -------------------------------------------------------------------------------- /cz80sys1/cz80jmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80sys1/cz80jmp.c -------------------------------------------------------------------------------- /cz80sys1/cz80m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/cz80sys1/cz80m.h -------------------------------------------------------------------------------- /czet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/czet.c -------------------------------------------------------------------------------- /czet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/czet.h -------------------------------------------------------------------------------- /d_1943.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_1943.c -------------------------------------------------------------------------------- /d_1943.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_1943.h -------------------------------------------------------------------------------- /d_appoooh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_appoooh.c -------------------------------------------------------------------------------- /d_appoooh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_appoooh.h -------------------------------------------------------------------------------- /d_atetris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_atetris.c -------------------------------------------------------------------------------- /d_atetris_mame6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_atetris_mame6502.c -------------------------------------------------------------------------------- /d_atetris_mame6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_atetris_mame6502.h -------------------------------------------------------------------------------- /d_bankp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_bankp.c -------------------------------------------------------------------------------- /d_bankp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_bankp.h -------------------------------------------------------------------------------- /d_blktiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_blktiger.c -------------------------------------------------------------------------------- /d_blktiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_blktiger.h -------------------------------------------------------------------------------- /d_bombjack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_bombjack.c -------------------------------------------------------------------------------- /d_bombjack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_bombjack.h -------------------------------------------------------------------------------- /d_freekick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_freekick.c -------------------------------------------------------------------------------- /d_freekick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_freekick.h -------------------------------------------------------------------------------- /d_gberet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_gberet.c -------------------------------------------------------------------------------- /d_gberet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_gberet.h -------------------------------------------------------------------------------- /d_gng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_gng.c -------------------------------------------------------------------------------- /d_gng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_gng.h -------------------------------------------------------------------------------- /d_higemaru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_higemaru.c -------------------------------------------------------------------------------- /d_higemaru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_higemaru.h -------------------------------------------------------------------------------- /d_mitchell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_mitchell.c -------------------------------------------------------------------------------- /d_mitchell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_mitchell.h -------------------------------------------------------------------------------- /d_msx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_msx.c -------------------------------------------------------------------------------- /d_msx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_msx.h -------------------------------------------------------------------------------- /d_news.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_news.c -------------------------------------------------------------------------------- /d_news.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_news.h -------------------------------------------------------------------------------- /d_ninjakd2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_ninjakd2.c -------------------------------------------------------------------------------- /d_ninjakd2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_ninjakd2.h -------------------------------------------------------------------------------- /d_pacman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_pacman.c -------------------------------------------------------------------------------- /d_pacman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_pacman.h -------------------------------------------------------------------------------- /d_pkunwar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_pkunwar.c -------------------------------------------------------------------------------- /d_pkunwar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_pkunwar.h -------------------------------------------------------------------------------- /d_segae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_segae.c -------------------------------------------------------------------------------- /d_segae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_segae.h -------------------------------------------------------------------------------- /d_sg1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sg1000.c -------------------------------------------------------------------------------- /d_sg1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sg1000.h -------------------------------------------------------------------------------- /d_sidarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sidarm.c -------------------------------------------------------------------------------- /d_sidarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sidarm.h -------------------------------------------------------------------------------- /d_slpfgh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_slpfgh.c -------------------------------------------------------------------------------- /d_slpfgh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_slpfgh.h -------------------------------------------------------------------------------- /d_sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sms.c -------------------------------------------------------------------------------- /d_sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sms.h -------------------------------------------------------------------------------- /d_solomon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_solomon.c -------------------------------------------------------------------------------- /d_solomon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_solomon.h -------------------------------------------------------------------------------- /d_sys1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sys1.c -------------------------------------------------------------------------------- /d_sys1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sys1.h -------------------------------------------------------------------------------- /d_sys1_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sys1_common.c -------------------------------------------------------------------------------- /d_sys1_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sys1_common.h -------------------------------------------------------------------------------- /d_sys1h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sys1h.c -------------------------------------------------------------------------------- /d_sys1h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sys1h.h -------------------------------------------------------------------------------- /d_sys2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sys2.c -------------------------------------------------------------------------------- /d_sys2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_sys2.h -------------------------------------------------------------------------------- /d_vigilant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_vigilant.c -------------------------------------------------------------------------------- /d_vigilant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_vigilant.h -------------------------------------------------------------------------------- /d_wiz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_wiz.c -------------------------------------------------------------------------------- /d_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_wiz.h -------------------------------------------------------------------------------- /d_zaxxon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_zaxxon.c -------------------------------------------------------------------------------- /d_zaxxon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/d_zaxxon.h -------------------------------------------------------------------------------- /eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/eeprom.c -------------------------------------------------------------------------------- /eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/eeprom.h -------------------------------------------------------------------------------- /globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/globals.h -------------------------------------------------------------------------------- /kabuki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/kabuki.c -------------------------------------------------------------------------------- /libyaul/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/libyaul/LICENSE.txt -------------------------------------------------------------------------------- /libyaul/libtga/tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/libyaul/libtga/tga.c -------------------------------------------------------------------------------- /libyaul/libtga/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/libyaul/libtga/tga.h -------------------------------------------------------------------------------- /load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/load.c -------------------------------------------------------------------------------- /m6502.new/ill02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/ill02.h -------------------------------------------------------------------------------- /m6502.new/m6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/m6502.c -------------------------------------------------------------------------------- /m6502.new/m6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/m6502.h -------------------------------------------------------------------------------- /m6502.new/m6502_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/m6502_intf.c -------------------------------------------------------------------------------- /m6502.new/m6502_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/m6502_intf.h -------------------------------------------------------------------------------- /m6502.new/ops02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/ops02.h -------------------------------------------------------------------------------- /m6502.new/opsc02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/opsc02.h -------------------------------------------------------------------------------- /m6502.new/opsn2a03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/opsn2a03.h -------------------------------------------------------------------------------- /m6502.new/t6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/t6502.c -------------------------------------------------------------------------------- /m6502.new/t65c02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/t65c02.c -------------------------------------------------------------------------------- /m6502.new/t65sc02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/t65sc02.c -------------------------------------------------------------------------------- /m6502.new/tdeco16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/tdeco16.c -------------------------------------------------------------------------------- /m6502.new/tn2a03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502.new/tn2a03.c -------------------------------------------------------------------------------- /m6502/m6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502/m6502.c -------------------------------------------------------------------------------- /m6502/m6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502/m6502.h -------------------------------------------------------------------------------- /m6502/m6502_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502/m6502_intf.c -------------------------------------------------------------------------------- /m6502/m6502_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502/m6502_intf.h -------------------------------------------------------------------------------- /m6502/m6502ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502/m6502ops.h -------------------------------------------------------------------------------- /m6502/tbl6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502/tbl6502.h -------------------------------------------------------------------------------- /m6502/tbl6510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502/tbl6510.h -------------------------------------------------------------------------------- /m6502/tbl65c02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6502/tbl65c02.h -------------------------------------------------------------------------------- /m6809.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6809.c -------------------------------------------------------------------------------- /m6809.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6809.h -------------------------------------------------------------------------------- /m6809_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6809_intf.c -------------------------------------------------------------------------------- /m6809_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/m6809_intf.h -------------------------------------------------------------------------------- /mc8123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/mc8123.c -------------------------------------------------------------------------------- /mc8123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/mc8123.h -------------------------------------------------------------------------------- /psg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/psg.c -------------------------------------------------------------------------------- /psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/psg.h -------------------------------------------------------------------------------- /psg_sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/psg_sms.c -------------------------------------------------------------------------------- /psg_sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/psg_sms.h -------------------------------------------------------------------------------- /raze/raze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/raze/raze.h -------------------------------------------------------------------------------- /raze/raze.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/raze/raze.inc -------------------------------------------------------------------------------- /raze/raze.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/raze/raze.reg -------------------------------------------------------------------------------- /raze/raze.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/raze/raze.s -------------------------------------------------------------------------------- /raze/raze.s.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/raze/raze.s.m4 -------------------------------------------------------------------------------- /root/ABS.TXT: -------------------------------------------------------------------------------- 1 | NOT Abstracted by SEGA 2 | 3 | -------------------------------------------------------------------------------- /root/BIB.TXT: -------------------------------------------------------------------------------- 1 | NOT Bibliographiced by SEGA 2 | 3 | -------------------------------------------------------------------------------- /root/BLKTIGER/033.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/033.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/034.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/034.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/035.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/035.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/036.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/036.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/037.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/037.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/038.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/038.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/039.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/039.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/040.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/040.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/041.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/041.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/042.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/042.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/043.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/043.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/044.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/044.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/045.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/045.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/046.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/046.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/047.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/047.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/048.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/048.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/049.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/049.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/050.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/050.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/051.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/051.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/052.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/052.pcm -------------------------------------------------------------------------------- /root/BLKTIGER/SFX.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/BLKTIGER/SFX.ROM -------------------------------------------------------------------------------- /root/CPY.TXT: -------------------------------------------------------------------------------- 1 | VBT. 2 | 3 | -------------------------------------------------------------------------------- /root/SDDRVS.TSK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/SDDRVS.TSK -------------------------------------------------------------------------------- /root/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/font.bin -------------------------------------------------------------------------------- /root/img.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/img.lnk -------------------------------------------------------------------------------- /root/overlay.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/overlay.lnk -------------------------------------------------------------------------------- /root/sl.cti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/sl.cti -------------------------------------------------------------------------------- /root/sl.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/sl.lnk -------------------------------------------------------------------------------- /root/sl2.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/root/sl2.lnk -------------------------------------------------------------------------------- /saturn/SYSCALL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/SYSCALL.H -------------------------------------------------------------------------------- /saturn/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/file.c -------------------------------------------------------------------------------- /saturn/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/font.c -------------------------------------------------------------------------------- /saturn/images/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/images/help.h -------------------------------------------------------------------------------- /saturn/images/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/images/main.h -------------------------------------------------------------------------------- /saturn/img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/img.c -------------------------------------------------------------------------------- /saturn/low.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/low.s -------------------------------------------------------------------------------- /saturn/ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/ovl.c -------------------------------------------------------------------------------- /saturn/ovl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/ovl.h -------------------------------------------------------------------------------- /saturn/pcmstm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/pcmstm.c -------------------------------------------------------------------------------- /saturn/pcmstm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/pcmstm.h -------------------------------------------------------------------------------- /saturn/pcmsys2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/pcmsys2.c -------------------------------------------------------------------------------- /saturn/pcmsys2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/pcmsys2.h -------------------------------------------------------------------------------- /saturn/saturn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/saturn.c -------------------------------------------------------------------------------- /saturn/saturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/saturn.h -------------------------------------------------------------------------------- /saturn/saturn_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/saturn_ext.c -------------------------------------------------------------------------------- /saturn/saturn_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/saturn_snd.c -------------------------------------------------------------------------------- /saturn/saturn_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/saturn_snd.h -------------------------------------------------------------------------------- /saturn/strt1_vbt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/saturn/strt1_vbt.s -------------------------------------------------------------------------------- /slapstic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/slapstic.c -------------------------------------------------------------------------------- /slapstic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/slapstic.h -------------------------------------------------------------------------------- /snd/ay8910.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/ay8910.c -------------------------------------------------------------------------------- /snd/ay8910.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/ay8910.h -------------------------------------------------------------------------------- /snd/burn_ym2203.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/burn_ym2203.c -------------------------------------------------------------------------------- /snd/burn_ym2203.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/burn_ym2203.h -------------------------------------------------------------------------------- /snd/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/dac.c -------------------------------------------------------------------------------- /snd/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/dac.h -------------------------------------------------------------------------------- /snd/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/driver.h -------------------------------------------------------------------------------- /snd/empty_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/empty_drv.h -------------------------------------------------------------------------------- /snd/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/fm.c -------------------------------------------------------------------------------- /snd/fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/fm.h -------------------------------------------------------------------------------- /snd/k051649.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/k051649.c -------------------------------------------------------------------------------- /snd/k051649.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/k051649.h -------------------------------------------------------------------------------- /snd/msm5205.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/msm5205.c -------------------------------------------------------------------------------- /snd/msm5205.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/msm5205.h -------------------------------------------------------------------------------- /snd/msm6295.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/msm6295.c -------------------------------------------------------------------------------- /snd/msm6295.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/msm6295.h -------------------------------------------------------------------------------- /snd/namco_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/namco_snd.c -------------------------------------------------------------------------------- /snd/namco_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/namco_snd.h -------------------------------------------------------------------------------- /snd/notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/notes.h -------------------------------------------------------------------------------- /snd/scsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/scsp.h -------------------------------------------------------------------------------- /snd/sinepatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/sinepatt.h -------------------------------------------------------------------------------- /snd/sn76496.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/sn76496.c -------------------------------------------------------------------------------- /snd/sn76496.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/sn76496.h -------------------------------------------------------------------------------- /snd/sn76496ced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/sn76496ced.h -------------------------------------------------------------------------------- /snd/sn_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/sn_map.h -------------------------------------------------------------------------------- /snd/sound_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/sound_table.h -------------------------------------------------------------------------------- /snd/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/timer.c -------------------------------------------------------------------------------- /snd/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/timer.h -------------------------------------------------------------------------------- /snd/ym2151.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/ym2151.c -------------------------------------------------------------------------------- /snd/ym2151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/ym2151.h -------------------------------------------------------------------------------- /snd/ym2151_scsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/snd/ym2151_scsp.c -------------------------------------------------------------------------------- /stdfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/stdfunc.h -------------------------------------------------------------------------------- /strt/strt1_g.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/strt/strt1_g.o -------------------------------------------------------------------------------- /strt/strt2_g.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/strt/strt2_g.o -------------------------------------------------------------------------------- /tms9928a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/tms9928a.c -------------------------------------------------------------------------------- /tms9928a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/tms9928a.h -------------------------------------------------------------------------------- /ym2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/ym2413.c -------------------------------------------------------------------------------- /ym2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/ym2413.h -------------------------------------------------------------------------------- /z80/z80.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /z80/z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/z80/z80.h -------------------------------------------------------------------------------- /z80/z80daisy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/z80/z80daisy.c -------------------------------------------------------------------------------- /z80/z80daisy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/z80/z80daisy.h -------------------------------------------------------------------------------- /z80_intf.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /z80_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbt1/fba_saturn/HEAD/z80_intf.h --------------------------------------------------------------------------------