├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── appveyor.yml ├── fba.chm ├── fbahelpfilesrc ├── Table of Contents.hhc ├── acknowledgments.htm ├── cheat_format.htm ├── command.htm ├── dialog_cheats.htm ├── dialog_choose_monitor.htm ├── dialog_dips.htm ├── dialog_game_info.htm ├── dialog_game_select.htm ├── dialog_inputs.htm ├── dialog_ips_manager.htm ├── dialog_multislot.htm ├── dialog_neocdz.htm ├── dialog_palette_viewer.htm ├── dialog_rom_paths.htm ├── dialog_shot_factory.htm ├── dialog_support_path.htm ├── fba.chm ├── fba.hhk ├── fba.hhp ├── images │ ├── misc.bmp │ ├── tv not found non essential.ico │ ├── tv not found.ico │ └── tv not working.ico ├── intro.htm ├── keys.htm ├── localise_app.htm ├── localise_gamelist.htm ├── menu_audio.htm ├── menu_game.htm ├── menu_help.htm ├── menu_input.htm ├── menu_misc.htm ├── menu_video.htm ├── presets.htm └── sysreq.htm ├── games.bat ├── luadeps.zip ├── makefile ├── makefile.burn_rules ├── makefile.burner_win32_rules ├── makefile.mamemingw ├── makefile.mingw ├── makefile.sdl ├── makefile.sdlrules ├── makefile.vc ├── preset-example.zip ├── projectfiles ├── README.TXT ├── libretro-android │ └── jni │ │ ├── Android.mk │ │ └── Application.mk ├── qtcreator │ ├── fba_qt.pro │ └── fba_sdl.pro ├── visualstudio-2003-libretro-xbox1 │ ├── fba_vs2003_libretro_xbox1.sln │ ├── fba_vs2003_libretro_xbox1.vcproj │ ├── stdint.h │ ├── zconf.h │ └── zlib.h ├── visualstudio-2010-libretro-360 │ ├── fba_vs2010_libretro_360.sln │ ├── fba_vs2010_libretro_360.vcxproj │ └── fba_vs2010_libretro_360.vcxproj.filters └── visualstudio-2015 │ ├── .gitignore │ ├── fbneo_vs2015.sln │ ├── fbneo_vs2015.vcxproj │ ├── fbneo_vs2015.vcxproj.filters │ ├── fbneo_vs2015.vcxproj.user │ └── run_scripts.bat ├── src ├── burn │ ├── bitswap.h │ ├── burn.cpp │ ├── burn.h │ ├── burn_bitmap.cpp │ ├── burn_bitmap.h │ ├── burn_gun.cpp │ ├── burn_gun.h │ ├── burn_led.cpp │ ├── burn_led.h │ ├── burn_memory.cpp │ ├── burn_pal.cpp │ ├── burn_pal.h │ ├── burn_shift.cpp │ ├── burn_shift.h │ ├── burn_sound.cpp │ ├── burn_sound.h │ ├── burn_sound_a.asm │ ├── burn_sound_c.cpp │ ├── burnint.h │ ├── cheat.cpp │ ├── cheat.h │ ├── debug_track.cpp │ ├── devices │ │ ├── 6821pia.cpp │ │ ├── 6821pia.h │ │ ├── 8255ppi.cpp │ │ ├── 8255ppi.h │ │ ├── 8257dma.cpp │ │ ├── 8257dma.h │ │ ├── atariic.cpp │ │ ├── atariic.h │ │ ├── atarijsa.cpp │ │ ├── atarijsa.h │ │ ├── atarimo.cpp │ │ ├── atarimo.h │ │ ├── atarirle.cpp │ │ ├── atarirle.h │ │ ├── atarivad.cpp │ │ ├── atarivad.h │ │ ├── avgdvg.cpp │ │ ├── avgdvg.h │ │ ├── bsmt2000.cpp │ │ ├── bsmt2000.h │ │ ├── c169.cpp │ │ ├── c169.h │ │ ├── decobsmt.cpp │ │ ├── decobsmt.h │ │ ├── earom.cpp │ │ ├── earom.h │ │ ├── eeprom.cpp │ │ ├── eeprom.h │ │ ├── gaelco_crypt.cpp │ │ ├── gaelco_crypt.h │ │ ├── i4x00.cpp │ │ ├── i4x00.h │ │ ├── joyprocess.cpp │ │ ├── joyprocess.h │ │ ├── kaneko_tmap.cpp │ │ ├── kaneko_tmap.h │ │ ├── mathbox.cpp │ │ ├── mathbox.h │ │ ├── mb87078.cpp │ │ ├── mb87078.h │ │ ├── mermaid.cpp │ │ ├── mermaid.h │ │ ├── midcsd.cpp │ │ ├── midcsd.h │ │ ├── midsat.cpp │ │ ├── midsat.h │ │ ├── midsg.cpp │ │ ├── midsg.h │ │ ├── midssio.cpp │ │ ├── midssio.h │ │ ├── midtcs.cpp │ │ ├── midtcs.h │ │ ├── namco_c45.cpp │ │ ├── namco_c45.h │ │ ├── namcoio.cpp │ │ ├── namcoio.h │ │ ├── nb1414m4.cpp │ │ ├── nb1414m4.h │ │ ├── nb1414m4_8bit.cpp │ │ ├── nb1414m4_8bit.h │ │ ├── nmk004.cpp │ │ ├── nmk004.h │ │ ├── nmk112.cpp │ │ ├── nmk112.h │ │ ├── pandora.cpp │ │ ├── pandora.h │ │ ├── qs1000.cpp │ │ ├── qs1000.h │ │ ├── resnet.cpp │ │ ├── resnet.h │ │ ├── seibucop.cpp │ │ ├── seibucop.h │ │ ├── seibusnd.cpp │ │ ├── seibusnd.h │ │ ├── sknsspr.cpp │ │ ├── sknsspr.h │ │ ├── slapstic.cpp │ │ ├── slapstic.h │ │ ├── st0020.cpp │ │ ├── st0020.h │ │ ├── t5182.cpp │ │ ├── t5182.h │ │ ├── timekpr.cpp │ │ ├── timekpr.h │ │ ├── tms34061.cpp │ │ ├── tms34061.h │ │ ├── tms9928a.cpp │ │ ├── tms9928a.h │ │ ├── v3021.cpp │ │ ├── v3021.h │ │ ├── vdc.cpp │ │ ├── vdc.h │ │ ├── watchdog.cpp │ │ ├── watchdog.h │ │ ├── x2212.cpp │ │ └── x2212.h │ ├── driver.h │ ├── drv │ │ ├── atari │ │ │ ├── WHATSNEW.txt │ │ │ ├── WHATSNEW.txt.cpp │ │ │ ├── d_akkaarrh.cpp │ │ │ ├── d_arcadecl.cpp │ │ │ ├── d_atarig1.cpp │ │ │ ├── d_badlands.cpp │ │ │ ├── d_batman.cpp │ │ │ ├── d_blstroid.cpp │ │ │ ├── d_eprom.cpp │ │ │ ├── d_gauntlet.cpp │ │ │ ├── d_klax.cpp │ │ │ ├── d_offtwall.cpp │ │ │ ├── d_rampart.cpp │ │ │ ├── d_relief.cpp │ │ │ ├── d_shuuz.cpp │ │ │ ├── d_skullxbo.cpp │ │ │ ├── d_thunderj.cpp │ │ │ ├── d_toobin.cpp │ │ │ ├── d_vindictr.cpp │ │ │ └── d_xybots.cpp │ │ ├── capcom │ │ │ ├── cps.cpp │ │ │ ├── cps.h │ │ │ ├── cps2_crpt.cpp │ │ │ ├── cps_config.cpp │ │ │ ├── cps_draw.cpp │ │ │ ├── cps_mem.cpp │ │ │ ├── cps_obj.cpp │ │ │ ├── cps_pal.cpp │ │ │ ├── cps_run.cpp │ │ │ ├── cps_rw.cpp │ │ │ ├── cps_scr.cpp │ │ │ ├── cpsr.cpp │ │ │ ├── cpsrd.cpp │ │ │ ├── cpst.cpp │ │ │ ├── ctv.cpp │ │ │ ├── ctv_do.h │ │ │ ├── ctv_make.cpp │ │ │ ├── d_cps1.cpp │ │ │ ├── d_cps2.cpp │ │ │ ├── d_kenseim.h │ │ │ ├── fcrash_snd.cpp │ │ │ ├── kabuki.cpp │ │ │ ├── ps.cpp │ │ │ ├── ps_m.cpp │ │ │ ├── ps_z.cpp │ │ │ ├── qs.cpp │ │ │ ├── qs_c.cpp │ │ │ ├── qs_z.cpp │ │ │ └── sf2mdt_snd.cpp │ │ ├── cave │ │ │ ├── cave.cpp │ │ │ ├── cave.h │ │ │ ├── cave_palette.cpp │ │ │ ├── cave_sprite.cpp │ │ │ ├── cave_sprite_render.h │ │ │ ├── cave_sprite_render_zoom.h │ │ │ ├── cave_tile.cpp │ │ │ ├── cave_tile_render.h │ │ │ ├── d_dodonpachi.cpp │ │ │ ├── d_donpachi.cpp │ │ │ ├── d_esprade.cpp │ │ │ ├── d_feversos.cpp │ │ │ ├── d_gaia.cpp │ │ │ ├── d_guwange.cpp │ │ │ ├── d_hotdogst.cpp │ │ │ ├── d_korokoro.cpp │ │ │ ├── d_mazinger.cpp │ │ │ ├── d_metmqstr.cpp │ │ │ ├── d_pwrinst2.cpp │ │ │ ├── d_sailormn.cpp │ │ │ ├── d_tjumpman.cpp │ │ │ └── d_uopoko.cpp │ │ ├── coleco │ │ │ └── d_coleco.cpp │ │ ├── cps3 │ │ │ ├── cps3.h │ │ │ ├── cps3run.cpp │ │ │ ├── cps3snd.cpp │ │ │ └── d_cps3.cpp │ │ ├── d_parent.cpp │ │ ├── dataeast │ │ │ ├── d_actfancr.cpp │ │ │ ├── d_backfire.cpp │ │ │ ├── d_boogwing.cpp │ │ │ ├── d_brkthru.cpp │ │ │ ├── d_bwing.cpp │ │ │ ├── d_cbuster.cpp │ │ │ ├── d_chanbara.cpp │ │ │ ├── d_cninja.cpp │ │ │ ├── d_darkseal.cpp │ │ │ ├── d_dassault.cpp │ │ │ ├── d_dblewing.cpp │ │ │ ├── d_dec0.cpp │ │ │ ├── d_dec8.cpp │ │ │ ├── d_deco156.cpp │ │ │ ├── d_deco32.cpp │ │ │ ├── d_decocass.cpp │ │ │ ├── d_decomlc.cpp │ │ │ ├── d_dietgogo.cpp │ │ │ ├── d_dreambal.cpp │ │ │ ├── d_funkyjet.cpp │ │ │ ├── d_karnov.cpp │ │ │ ├── d_kchamp.cpp │ │ │ ├── d_lemmings.cpp │ │ │ ├── d_liberate.cpp │ │ │ ├── d_metlclsh.cpp │ │ │ ├── d_pktgaldx.cpp │ │ │ ├── d_progolf.cpp │ │ │ ├── d_rohga.cpp │ │ │ ├── d_shootout.cpp │ │ │ ├── d_sidepckt.cpp │ │ │ ├── d_simpl156.cpp │ │ │ ├── d_sshangha.cpp │ │ │ ├── d_stadhero.cpp │ │ │ ├── d_supbtime.cpp │ │ │ ├── d_tumblep.cpp │ │ │ ├── d_vaportra.cpp │ │ │ ├── deco146.cpp │ │ │ ├── deco146.h │ │ │ ├── deco16ic.cpp │ │ │ ├── deco16ic.h │ │ │ ├── decobac06.cpp │ │ │ └── decobac06.h │ │ ├── galaxian │ │ │ ├── d_galaxian.cpp │ │ │ ├── gal.h │ │ │ ├── gal_gfx.cpp │ │ │ ├── gal_run.cpp │ │ │ ├── gal_sound.cpp │ │ │ └── gal_stars.cpp │ │ ├── irem │ │ │ ├── d_m107.cpp │ │ │ ├── d_m52.cpp │ │ │ ├── d_m57.cpp │ │ │ ├── d_m58.cpp │ │ │ ├── d_m62.cpp │ │ │ ├── d_m63.cpp │ │ │ ├── d_m72.cpp │ │ │ ├── d_m90.cpp │ │ │ ├── d_m92.cpp │ │ │ ├── d_vigilant.cpp │ │ │ ├── irem_cpu.cpp │ │ │ ├── irem_cpu.h │ │ │ ├── irem_sound.cpp │ │ │ └── irem_sound.h │ │ ├── konami │ │ │ ├── d_88games.cpp │ │ │ ├── d_ajax.cpp │ │ │ ├── d_aliens.cpp │ │ │ ├── d_asterix.cpp │ │ │ ├── d_battlnts.cpp │ │ │ ├── d_bishi.cpp │ │ │ ├── d_bladestl.cpp │ │ │ ├── d_blockhl.cpp │ │ │ ├── d_bottom9.cpp │ │ │ ├── d_chqflag.cpp │ │ │ ├── d_circusc.cpp │ │ │ ├── d_combatsc.cpp │ │ │ ├── d_contra.cpp │ │ │ ├── d_crimfght.cpp │ │ │ ├── d_dbz.cpp │ │ │ ├── d_ddribble.cpp │ │ │ ├── d_divebomb.cpp │ │ │ ├── d_fastlane.cpp │ │ │ ├── d_finalzr.cpp │ │ │ ├── d_flkatck.cpp │ │ │ ├── d_gberet.cpp │ │ │ ├── d_gbusters.cpp │ │ │ ├── d_gijoe.cpp │ │ │ ├── d_gradius3.cpp │ │ │ ├── d_gyruss.cpp │ │ │ ├── d_hcastle.cpp │ │ │ ├── d_hexion.cpp │ │ │ ├── d_hyperspt.cpp │ │ │ ├── d_ironhors.cpp │ │ │ ├── d_jackal.cpp │ │ │ ├── d_jailbrek.cpp │ │ │ ├── d_junofrst.cpp │ │ │ ├── d_kontest.cpp │ │ │ ├── d_labyrunr.cpp │ │ │ ├── d_lethal.cpp │ │ │ ├── d_mainevt.cpp │ │ │ ├── d_megazone.cpp │ │ │ ├── d_mikie.cpp │ │ │ ├── d_mogura.cpp │ │ │ ├── d_moo.cpp │ │ │ ├── d_mystwarr.cpp │ │ │ ├── d_nemesis.cpp │ │ │ ├── d_pandoras.cpp │ │ │ ├── d_parodius.cpp │ │ │ ├── d_pingpong.cpp │ │ │ ├── d_pooyan.cpp │ │ │ ├── d_rockrage.cpp │ │ │ ├── d_rocnrope.cpp │ │ │ ├── d_rollerg.cpp │ │ │ ├── d_sbasketb.cpp │ │ │ ├── d_scotrsht.cpp │ │ │ ├── d_shaolins.cpp │ │ │ ├── d_simpsons.cpp │ │ │ ├── d_spy.cpp │ │ │ ├── d_surpratk.cpp │ │ │ ├── d_thunderx.cpp │ │ │ ├── d_timeplt.cpp │ │ │ ├── d_tmnt.cpp │ │ │ ├── d_tp84.cpp │ │ │ ├── d_trackfld.cpp │ │ │ ├── d_tutankhm.cpp │ │ │ ├── d_twin16.cpp │ │ │ ├── d_ultraman.cpp │ │ │ ├── d_vendetta.cpp │ │ │ ├── d_xexex.cpp │ │ │ ├── d_xmen.cpp │ │ │ ├── d_yiear.cpp │ │ │ ├── k007121.cpp │ │ │ ├── k007121.h │ │ │ ├── k007342_k007420.cpp │ │ │ ├── k007342_k007420.h │ │ │ ├── k051316.cpp │ │ │ ├── k051733.cpp │ │ │ ├── k051960.cpp │ │ │ ├── k052109.cpp │ │ │ ├── k053245.cpp │ │ │ ├── k053247.cpp │ │ │ ├── k053250.cpp │ │ │ ├── k053251.cpp │ │ │ ├── k053936.cpp │ │ │ ├── k054000.cpp │ │ │ ├── k054338.cpp │ │ │ ├── k055555.cpp │ │ │ ├── k056832.cpp │ │ │ ├── konamigx.cpp │ │ │ ├── konamiic.cpp │ │ │ ├── konamiic.h │ │ │ ├── timeplt_snd.cpp │ │ │ └── timeplt_snd.h │ │ ├── megadrive │ │ │ ├── d_megadrive.cpp │ │ │ ├── mdeeprom.cpp │ │ │ ├── mdeeprom.h │ │ │ ├── megadrive.cpp │ │ │ ├── megadrive.h │ │ │ └── stm95.cpp │ │ ├── midway │ │ │ ├── d_kinst.cpp │ │ │ ├── d_tunit.cpp │ │ │ ├── d_wunit.cpp │ │ │ ├── dcs2k.cpp │ │ │ ├── dcs2k.h │ │ │ ├── ide.cpp │ │ │ ├── ide.h │ │ │ ├── midtunit.cpp │ │ │ ├── midtunit.h │ │ │ ├── midtunit_dma.h │ │ │ ├── midwayic.cpp │ │ │ ├── midwayic.h │ │ │ ├── midwunit.cpp │ │ │ └── midwunit.h │ │ ├── msx │ │ │ └── d_msx.cpp │ │ ├── neogeo │ │ │ ├── d_neogeo.cpp │ │ │ ├── neo_decrypt.cpp │ │ │ ├── neo_palette.cpp │ │ │ ├── neo_run.cpp │ │ │ ├── neo_sprite.cpp │ │ │ ├── neo_sprite_render.h │ │ │ ├── neo_text.cpp │ │ │ ├── neo_text_render.h │ │ │ ├── neo_upd4990a.cpp │ │ │ ├── neogeo.cpp │ │ │ └── neogeo.h │ │ ├── nes │ │ │ └── d_nes.cpp │ │ ├── pce │ │ │ ├── d_pce.cpp │ │ │ ├── pce.cpp │ │ │ └── pce.h │ │ ├── pgm │ │ │ ├── d_pgm.cpp │ │ │ ├── pgm.h │ │ │ ├── pgm_asic25.cpp │ │ │ ├── pgm_asic27a_type1.cpp │ │ │ ├── pgm_asic27a_type2.cpp │ │ │ ├── pgm_asic27a_type3.cpp │ │ │ ├── pgm_asic3.cpp │ │ │ ├── pgm_crypt.cpp │ │ │ ├── pgm_draw.cpp │ │ │ ├── pgm_run.cpp │ │ │ └── pgm_sprite_create.cpp │ │ ├── pre90s │ │ │ ├── d_1942.cpp │ │ │ ├── d_1943.cpp │ │ │ ├── d_4enraya.cpp │ │ │ ├── d_aeroboto.cpp │ │ │ ├── d_alinvade.cpp │ │ │ ├── d_alpha68k.cpp │ │ │ ├── d_alpha68k1.cpp │ │ │ ├── d_alpha68k2.cpp │ │ │ ├── d_ambush.cpp │ │ │ ├── d_amspdwy.cpp │ │ │ ├── d_arabian.cpp │ │ │ ├── d_argus.cpp │ │ │ ├── d_armedf.cpp │ │ │ ├── d_asteroids.cpp │ │ │ ├── d_atetris.cpp │ │ │ ├── d_aztarac.cpp │ │ │ ├── d_bagman.cpp │ │ │ ├── d_baraduke.cpp │ │ │ ├── d_battlane.cpp │ │ │ ├── d_battlex.cpp │ │ │ ├── d_bbusters.cpp │ │ │ ├── d_beaminv.cpp │ │ │ ├── d_berzerk.cpp │ │ │ ├── d_bionicc.cpp │ │ │ ├── d_blktiger.cpp │ │ │ ├── d_blockade.cpp │ │ │ ├── d_blockout.cpp │ │ │ ├── d_blueprnt.cpp │ │ │ ├── d_bogeyman.cpp │ │ │ ├── d_bombjack.cpp │ │ │ ├── d_btime.cpp │ │ │ ├── d_bwidow.cpp │ │ │ ├── d_bzone.cpp │ │ │ ├── d_cabal.cpp │ │ │ ├── d_calorie.cpp │ │ │ ├── d_canyon.cpp │ │ │ ├── d_capbowl.cpp │ │ │ ├── d_carjmbre.cpp │ │ │ ├── d_ccastles.cpp │ │ │ ├── d_cclimber.cpp │ │ │ ├── d_cheekyms.cpp │ │ │ ├── d_chinagat.cpp │ │ │ ├── d_citycon.cpp │ │ │ ├── d_cloak.cpp │ │ │ ├── d_cloud9.cpp │ │ │ ├── d_clshroad.cpp │ │ │ ├── d_commando.cpp │ │ │ ├── d_cop01.cpp │ │ │ ├── d_copsnrob.cpp │ │ │ ├── d_cybertnk.cpp │ │ │ ├── d_dacholer.cpp │ │ │ ├── d_dday.cpp │ │ │ ├── d_ddayjlc.cpp │ │ │ ├── d_ddragon.cpp │ │ │ ├── d_deadang.cpp │ │ │ ├── d_djboy.cpp │ │ │ ├── d_dkong.cpp │ │ │ ├── d_docastle.cpp │ │ │ ├── d_dogfgt.cpp │ │ │ ├── d_dorachan.cpp │ │ │ ├── d_dribling.cpp │ │ │ ├── d_drmicro.cpp │ │ │ ├── d_dynduke.cpp │ │ │ ├── d_efdt.cpp │ │ │ ├── d_epos.cpp │ │ │ ├── d_espial.cpp │ │ │ ├── d_ettrivia.cpp │ │ │ ├── d_exedexes.cpp │ │ │ ├── d_exprraid.cpp │ │ │ ├── d_fantland.cpp │ │ │ ├── d_fastfred.cpp │ │ │ ├── d_firetrap.cpp │ │ │ ├── d_flipjack.cpp │ │ │ ├── d_flower.cpp │ │ │ ├── d_foodf.cpp │ │ │ ├── d_freekick.cpp │ │ │ ├── d_funkybee.cpp │ │ │ ├── d_galaga.cpp │ │ │ ├── d_galivan.cpp │ │ │ ├── d_gaplus.cpp │ │ │ ├── d_ginganin.cpp │ │ │ ├── d_gng.cpp │ │ │ ├── d_goindol.cpp │ │ │ ├── d_gunsmoke.cpp │ │ │ ├── d_headonb.cpp │ │ │ ├── d_higemaru.cpp │ │ │ ├── d_himesiki.cpp │ │ │ ├── d_holeland.cpp │ │ │ ├── d_hvyunit.cpp │ │ │ ├── d_invaders.cpp │ │ │ ├── d_iqblock.cpp │ │ │ ├── d_jack.cpp │ │ │ ├── d_jedi.cpp │ │ │ ├── d_jrpacman.cpp │ │ │ ├── d_kangaroo.cpp │ │ │ ├── d_kingofbox.cpp │ │ │ ├── d_kncljoe.cpp │ │ │ ├── d_kyugo.cpp │ │ │ ├── d_ladybug.cpp │ │ │ ├── d_lasso.cpp │ │ │ ├── d_lastduel.cpp │ │ │ ├── d_lwings.cpp │ │ │ ├── d_madmotor.cpp │ │ │ ├── d_mainsnk.cpp │ │ │ ├── d_mappy.cpp │ │ │ ├── d_marineb.cpp │ │ │ ├── d_mario.cpp │ │ │ ├── d_markham.cpp │ │ │ ├── d_mastboyo.cpp │ │ │ ├── d_matmania.cpp │ │ │ ├── d_mcr.cpp │ │ │ ├── d_mcr3.cpp │ │ │ ├── d_megasys1.cpp │ │ │ ├── d_meijinsn.cpp │ │ │ ├── d_metlfrzr.cpp │ │ │ ├── d_mhavoc.cpp │ │ │ ├── d_millipede.cpp │ │ │ ├── d_mirax.cpp │ │ │ ├── d_mitchell.cpp │ │ │ ├── d_mjkjidai.cpp │ │ │ ├── d_mmagic.cpp │ │ │ ├── d_mole.cpp │ │ │ ├── d_momoko.cpp │ │ │ ├── d_mouser.cpp │ │ │ ├── d_mrdo.cpp │ │ │ ├── d_mrflea.cpp │ │ │ ├── d_mrjong.cpp │ │ │ ├── d_munchmo.cpp │ │ │ ├── d_mustache.cpp │ │ │ ├── d_mystston.cpp │ │ │ ├── d_namcos1.cpp │ │ │ ├── d_namcos86.cpp │ │ │ ├── d_naughtyb.cpp │ │ │ ├── d_ninjakd2.cpp │ │ │ ├── d_nitedrvr.cpp │ │ │ ├── d_olibochu.cpp │ │ │ ├── d_omegrace.cpp │ │ │ ├── d_pac2650.cpp │ │ │ ├── d_pacland.cpp │ │ │ ├── d_pacman.cpp │ │ │ ├── d_pbaction.cpp │ │ │ ├── d_pengadvb.cpp │ │ │ ├── d_phoenix.cpp │ │ │ ├── d_pitnrun.cpp │ │ │ ├── d_pkunwar.cpp │ │ │ ├── d_popeye.cpp │ │ │ ├── d_popper.cpp │ │ │ ├── d_prehisle.cpp │ │ │ ├── d_psychic5.cpp │ │ │ ├── d_pturn.cpp │ │ │ ├── d_punchout.cpp │ │ │ ├── d_qbert.cpp │ │ │ ├── d_quantum.cpp │ │ │ ├── d_quizo.cpp │ │ │ ├── d_rallyx.cpp │ │ │ ├── d_renegade.cpp │ │ │ ├── d_route16.cpp │ │ │ ├── d_rpunch.cpp │ │ │ ├── d_safarir.cpp │ │ │ ├── d_sauro.cpp │ │ │ ├── d_scregg.cpp │ │ │ ├── d_seicross.cpp │ │ │ ├── d_senjyo.cpp │ │ │ ├── d_sf.cpp │ │ │ ├── d_shisen.cpp │ │ │ ├── d_sidearms.cpp │ │ │ ├── d_skyarmy.cpp │ │ │ ├── d_skyfox.cpp │ │ │ ├── d_skykid.cpp │ │ │ ├── d_snk.cpp │ │ │ ├── d_snk6502.cpp │ │ │ ├── d_snk68.cpp │ │ │ ├── d_solomon.cpp │ │ │ ├── d_sonson.cpp │ │ │ ├── d_spacefb.cpp │ │ │ ├── d_spdodgeb.cpp │ │ │ ├── d_speedbal.cpp │ │ │ ├── d_sprcros2.cpp │ │ │ ├── d_srumbler.cpp │ │ │ ├── d_ssozumo.cpp │ │ │ ├── d_sstrangr.cpp │ │ │ ├── d_starwars.cpp │ │ │ ├── d_stfight.cpp │ │ │ ├── d_stuntair.cpp │ │ │ ├── d_sub.cpp │ │ │ ├── d_suna8.cpp │ │ │ ├── d_tagteam.cpp │ │ │ ├── d_tail2nose.cpp │ │ │ ├── d_tankbust.cpp │ │ │ ├── d_tbowl.cpp │ │ │ ├── d_tceptor.cpp │ │ │ ├── d_tecmo.cpp │ │ │ ├── d_tempest.cpp │ │ │ ├── d_terracre.cpp │ │ │ ├── d_thedeep.cpp │ │ │ ├── d_thepit.cpp │ │ │ ├── d_thief.cpp │ │ │ ├── d_tigeroad.cpp │ │ │ ├── d_timelimt.cpp │ │ │ ├── d_toki.cpp │ │ │ ├── d_toypop.cpp │ │ │ ├── d_travrusa.cpp │ │ │ ├── d_tsamurai.cpp │ │ │ ├── d_tubep.cpp │ │ │ ├── d_usgames.cpp │ │ │ ├── d_vastar.cpp │ │ │ ├── d_vball.cpp │ │ │ ├── d_vicdual.cpp │ │ │ ├── d_vulgus.cpp │ │ │ ├── d_wallc.cpp │ │ │ ├── d_warpsped.cpp │ │ │ ├── d_warpwarp.cpp │ │ │ ├── d_wc90.cpp │ │ │ ├── d_wc90b.cpp │ │ │ ├── d_williams.cpp │ │ │ ├── d_wiping.cpp │ │ │ ├── d_wiz.cpp │ │ │ ├── d_wwfsstar.cpp │ │ │ ├── d_xain.cpp │ │ │ ├── d_xxmissio.cpp │ │ │ ├── d_xyonix.cpp │ │ │ └── d_zodiack.cpp │ │ ├── psikyo │ │ │ ├── d_psikyo.cpp │ │ │ ├── d_psikyo4.cpp │ │ │ ├── d_psikyosh.cpp │ │ │ ├── psikyo.h │ │ │ ├── psikyo_palette.cpp │ │ │ ├── psikyo_render.h │ │ │ ├── psikyo_sprite.cpp │ │ │ ├── psikyo_sprite_func.h │ │ │ ├── psikyo_tile.cpp │ │ │ ├── psikyosh_render.cpp │ │ │ └── psikyosh_render.h │ │ ├── pst90s │ │ │ ├── d_1945kiii.cpp │ │ │ ├── d_20pacgal.cpp │ │ │ ├── d_3x3puzzl.cpp │ │ │ ├── d_aerofgt.cpp │ │ │ ├── d_airbustr.cpp │ │ │ ├── d_aquarium.cpp │ │ │ ├── d_bestleag.cpp │ │ │ ├── d_bigstrkb.cpp │ │ │ ├── d_blackt96.cpp │ │ │ ├── d_blmbycar.cpp │ │ │ ├── d_bloodbro.cpp │ │ │ ├── d_crospang.cpp │ │ │ ├── d_crshrace.cpp │ │ │ ├── d_cultures.cpp │ │ │ ├── d_dcon.cpp │ │ │ ├── d_ddragon3.cpp │ │ │ ├── d_deniam.cpp │ │ │ ├── d_diverboy.cpp │ │ │ ├── d_dooyong.cpp │ │ │ ├── d_dreamwld.cpp │ │ │ ├── d_drgnmst.cpp │ │ │ ├── d_drtomy.cpp │ │ │ ├── d_egghunt.cpp │ │ │ ├── d_esd16.cpp │ │ │ ├── d_f1gp.cpp │ │ │ ├── d_funybubl.cpp │ │ │ ├── d_fuukifg2.cpp │ │ │ ├── d_fuukifg3.cpp │ │ │ ├── d_gaelco.cpp │ │ │ ├── d_gaelco2.cpp │ │ │ ├── d_gaiden.cpp │ │ │ ├── d_galpani3.cpp │ │ │ ├── d_galpanic.cpp │ │ │ ├── d_galspnbl.cpp │ │ │ ├── d_glass.cpp │ │ │ ├── d_go2000.cpp │ │ │ ├── d_gotcha.cpp │ │ │ ├── d_gstream.cpp │ │ │ ├── d_gumbo.cpp │ │ │ ├── d_hyperpac.cpp │ │ │ ├── d_hyprduel.cpp │ │ │ ├── d_inufuku.cpp │ │ │ ├── d_itech32.cpp │ │ │ ├── d_jchan.cpp │ │ │ ├── d_kaneko16.cpp │ │ │ ├── d_kickgoal.cpp │ │ │ ├── d_legionna.cpp │ │ │ ├── d_limenko.cpp │ │ │ ├── d_lordgun.cpp │ │ │ ├── d_macrossp.cpp │ │ │ ├── d_mcatadv.cpp │ │ │ ├── d_metro.cpp │ │ │ ├── d_midas.cpp │ │ │ ├── d_mirage.cpp │ │ │ ├── d_missb2.cpp │ │ │ ├── d_mosaic.cpp │ │ │ ├── d_mugsmash.cpp │ │ │ ├── d_mwarr.cpp │ │ │ ├── d_namcos2.cpp │ │ │ ├── d_news.cpp │ │ │ ├── d_nmg5.cpp │ │ │ ├── d_nmk16.cpp │ │ │ ├── d_ohmygod.cpp │ │ │ ├── d_oneshot.cpp │ │ │ ├── d_onetwo.cpp │ │ │ ├── d_pass.cpp │ │ │ ├── d_patapata.cpp │ │ │ ├── d_pipedrm.cpp │ │ │ ├── d_pirates.cpp │ │ │ ├── d_pkscram.cpp │ │ │ ├── d_playmark.cpp │ │ │ ├── d_powerins.cpp │ │ │ ├── d_ppmast93.cpp │ │ │ ├── d_pushman.cpp │ │ │ ├── d_rabbit.cpp │ │ │ ├── d_raiden.cpp │ │ │ ├── d_raiden2.cpp │ │ │ ├── d_sandscrp.cpp │ │ │ ├── d_seta.cpp │ │ │ ├── d_seta2.cpp │ │ │ ├── d_shadfrce.cpp │ │ │ ├── d_silkroad.cpp │ │ │ ├── d_silvmil.cpp │ │ │ ├── d_speedspn.cpp │ │ │ ├── d_ssv.cpp │ │ │ ├── d_suna16.cpp │ │ │ ├── d_supduck.cpp │ │ │ ├── d_suprnova.cpp │ │ │ ├── d_taotaido.cpp │ │ │ ├── d_targeth.cpp │ │ │ ├── d_tecmo16.cpp │ │ │ ├── d_tecmosys.cpp │ │ │ ├── d_tetrisp2.cpp │ │ │ ├── d_thoop2.cpp │ │ │ ├── d_tumbleb.cpp │ │ │ ├── d_unico.cpp │ │ │ ├── d_vamphalf.cpp │ │ │ ├── d_vegaeo.cpp │ │ │ ├── d_vmetal.cpp │ │ │ ├── d_welltris.cpp │ │ │ ├── d_wrally.cpp │ │ │ ├── d_wwfwfest.cpp │ │ │ ├── d_xorworld.cpp │ │ │ ├── d_yunsun16.cpp │ │ │ ├── d_yunsung8.cpp │ │ │ ├── d_zerozone.cpp │ │ │ └── kanekotb.h │ │ ├── sega │ │ │ ├── d_angelkds.cpp │ │ │ ├── d_appoooh.cpp │ │ │ ├── d_bankp.cpp │ │ │ ├── d_dotrikun.cpp │ │ │ ├── d_hangon.cpp │ │ │ ├── d_outrun.cpp │ │ │ ├── d_segac2.cpp │ │ │ ├── d_segae.cpp │ │ │ ├── d_segag80v.cpp │ │ │ ├── d_suprloco.cpp │ │ │ ├── d_sys1.cpp │ │ │ ├── d_sys16a.cpp │ │ │ ├── d_sys16b.cpp │ │ │ ├── d_sys18.cpp │ │ │ ├── d_sys24.cpp │ │ │ ├── d_turbo.cpp │ │ │ ├── d_xbrd.cpp │ │ │ ├── d_ybrd.cpp │ │ │ ├── d_zaxxon.cpp │ │ │ ├── fd1089.cpp │ │ │ ├── fd1094.cpp │ │ │ ├── fd1094.h │ │ │ ├── fd1094_intf.cpp │ │ │ ├── fd1094_intf.h │ │ │ ├── genesis_vid.cpp │ │ │ ├── genesis_vid.h │ │ │ ├── mc8123.cpp │ │ │ ├── mc8123.h │ │ │ ├── sega_315_5195.cpp │ │ │ ├── sys16.h │ │ │ ├── sys16_fd1094.cpp │ │ │ ├── sys16_gfx.cpp │ │ │ ├── sys16_run.cpp │ │ │ ├── usb_snd.cpp │ │ │ └── usb_snd.h │ │ ├── sg1000 │ │ │ └── d_sg1000.cpp │ │ ├── sms │ │ │ ├── d_sms.cpp │ │ │ ├── sms.cpp │ │ │ ├── sms.h │ │ │ ├── smsfmintf.cpp │ │ │ ├── smsfmintf.h │ │ │ ├── smshvc.h │ │ │ ├── smspio.cpp │ │ │ ├── smspio.h │ │ │ ├── smsrender.cpp │ │ │ ├── smsrender.h │ │ │ ├── smsshared.h │ │ │ ├── smssound.cpp │ │ │ ├── smssound.h │ │ │ ├── smssystem.cpp │ │ │ ├── smssystem.h │ │ │ ├── smstms.cpp │ │ │ ├── smstms.h │ │ │ ├── smsvdp.cpp │ │ │ └── smsvdp.h │ │ ├── snes │ │ │ ├── d_snes.cpp │ │ │ ├── snes.h │ │ │ ├── snes_65816.cpp │ │ │ ├── snes_65816.h │ │ │ ├── snes_dsp.cpp │ │ │ ├── snes_io.cpp │ │ │ ├── snes_main.cpp │ │ │ ├── snes_ppu.cpp │ │ │ └── snes_spc700.cpp │ │ ├── spectrum │ │ │ ├── d_spectrum.cpp │ │ │ ├── spectrum.h │ │ │ ├── spectrum_games.txt │ │ │ └── spectrum_states.cpp │ │ ├── taito │ │ │ ├── cchip.cpp │ │ │ ├── cchip.h │ │ │ ├── d_arkanoid.cpp │ │ │ ├── d_ashnojoe.cpp │ │ │ ├── d_asuka.cpp │ │ │ ├── d_bublbobl.cpp │ │ │ ├── d_buggychl.cpp │ │ │ ├── d_chaknpop.cpp │ │ │ ├── d_crbaloon.cpp │ │ │ ├── d_darius2.cpp │ │ │ ├── d_darkmist.cpp │ │ │ ├── d_exzisus.cpp │ │ │ ├── d_flstory.cpp │ │ │ ├── d_groundfx.cpp │ │ │ ├── d_gunbuster.cpp │ │ │ ├── d_jollyjgr.cpp │ │ │ ├── d_ksayakyu.cpp │ │ │ ├── d_lkage.cpp │ │ │ ├── d_mexico86.cpp │ │ │ ├── d_minivdr.cpp │ │ │ ├── d_msisaac.cpp │ │ │ ├── d_othunder.cpp │ │ │ ├── d_qix.cpp │ │ │ ├── d_retofinv.cpp │ │ │ ├── d_rollrace.cpp │ │ │ ├── d_slapshot.cpp │ │ │ ├── d_ssrj.cpp │ │ │ ├── d_superchs.cpp │ │ │ ├── d_supridr.cpp │ │ │ ├── d_taitob.cpp │ │ │ ├── d_taitof2.cpp │ │ │ ├── d_taitof3.cpp │ │ │ ├── d_taitoh.cpp │ │ │ ├── d_taitol.cpp │ │ │ ├── d_taitomisc.cpp │ │ │ ├── d_taitosj.cpp │ │ │ ├── d_taitox.cpp │ │ │ ├── d_taitoz.cpp │ │ │ ├── d_tnzs.cpp │ │ │ ├── d_undrfire.cpp │ │ │ ├── d_wyvernf0.cpp │ │ │ ├── pc080sn.cpp │ │ │ ├── pc090oj.cpp │ │ │ ├── taito.cpp │ │ │ ├── taito.h │ │ │ ├── taito_ic.cpp │ │ │ ├── taito_ic.h │ │ │ ├── taito_m68705.cpp │ │ │ ├── taito_m68705.h │ │ │ ├── taitof3_snd.cpp │ │ │ ├── taitof3_snd.h │ │ │ ├── taitof3_video.cpp │ │ │ ├── taitof3_video.h │ │ │ ├── tc0100scn.cpp │ │ │ ├── tc0110pcr.cpp │ │ │ ├── tc0140syt.cpp │ │ │ ├── tc0150rod.cpp │ │ │ ├── tc0180vcu.cpp │ │ │ ├── tc0220ioc.cpp │ │ │ ├── tc0280grd.cpp │ │ │ ├── tc0360pri.cpp │ │ │ ├── tc0480scp.cpp │ │ │ ├── tc0510nio.cpp │ │ │ ├── tc0640fio.cpp │ │ │ ├── tnzs_prot.cpp │ │ │ └── tnzs_prot.h │ │ └── toaplan │ │ │ ├── d_batrider.cpp │ │ │ ├── d_batsugun.cpp │ │ │ ├── d_battleg.cpp │ │ │ ├── d_bbakraid.cpp │ │ │ ├── d_dogyuun.cpp │ │ │ ├── d_enmadaio.cpp │ │ │ ├── d_fixeight.cpp │ │ │ ├── d_ghox.cpp │ │ │ ├── d_kbash.cpp │ │ │ ├── d_kbash2.cpp │ │ │ ├── d_mahoudai.cpp │ │ │ ├── d_pipibibs.cpp │ │ │ ├── d_shippumd.cpp │ │ │ ├── d_slapfght.cpp │ │ │ ├── d_snowbro2.cpp │ │ │ ├── d_tekipaki.cpp │ │ │ ├── d_toaplan1.cpp │ │ │ ├── d_truxton2.cpp │ │ │ ├── d_twincobr.cpp │ │ │ ├── d_vfive.cpp │ │ │ ├── d_wardner.cpp │ │ │ ├── toa_bcu2.cpp │ │ │ ├── toa_extratext.cpp │ │ │ ├── toa_extratext.h │ │ │ ├── toa_gp9001.cpp │ │ │ ├── toa_gp9001_render.h │ │ │ ├── toa_palette.cpp │ │ │ ├── toaplan.cpp │ │ │ ├── toaplan.h │ │ │ └── toaplan1.cpp │ ├── hiscore.cpp │ ├── hiscore.h │ ├── load.cpp │ ├── snd │ │ ├── asteroids.cpp │ │ ├── asteroids.h │ │ ├── ay8910.c │ │ ├── ay8910.h │ │ ├── burn_md2612.cpp │ │ ├── burn_md2612.h │ │ ├── burn_y8950.cpp │ │ ├── burn_y8950.h │ │ ├── burn_ym2151.cpp │ │ ├── burn_ym2151.h │ │ ├── burn_ym2203.cpp │ │ ├── burn_ym2203.h │ │ ├── burn_ym2413.cpp │ │ ├── burn_ym2413.h │ │ ├── burn_ym2608.cpp │ │ ├── burn_ym2608.h │ │ ├── burn_ym2610.cpp │ │ ├── burn_ym2610.h │ │ ├── burn_ym2612.cpp │ │ ├── burn_ym2612.h │ │ ├── burn_ym3526.cpp │ │ ├── burn_ym3526.h │ │ ├── burn_ym3812.cpp │ │ ├── burn_ym3812.h │ │ ├── burn_ymf262.cpp │ │ ├── burn_ymf262.h │ │ ├── burn_ymf278b.cpp │ │ ├── burn_ymf278b.h │ │ ├── bzone.cpp │ │ ├── bzone.h │ │ ├── c140.cpp │ │ ├── c140.h │ │ ├── c6280.cpp │ │ ├── c6280.h │ │ ├── dac.cpp │ │ ├── dac.h │ │ ├── es5506.cpp │ │ ├── es5506.h │ │ ├── es8712.cpp │ │ ├── es8712.h │ │ ├── flower.cpp │ │ ├── flower.h │ │ ├── flt_rc.cpp │ │ ├── flt_rc.h │ │ ├── fm.c │ │ ├── fm.h │ │ ├── fmopl.c │ │ ├── fmopl.h │ │ ├── gaelco.cpp │ │ ├── gaelco.h │ │ ├── hc55516.cpp │ │ ├── hc55516.h │ │ ├── i5000.cpp │ │ ├── i5000.h │ │ ├── ics2115.cpp │ │ ├── ics2115.h │ │ ├── iremga20.cpp │ │ ├── iremga20.h │ │ ├── k005289.cpp │ │ ├── k005289.h │ │ ├── k007232.cpp │ │ ├── k007232.h │ │ ├── k051649.cpp │ │ ├── k051649.h │ │ ├── k053260.cpp │ │ ├── k053260.h │ │ ├── k054539.cpp │ │ ├── k054539.h │ │ ├── llander.cpp │ │ ├── llander.h │ │ ├── msm5205.cpp │ │ ├── msm5205.h │ │ ├── msm5232.cpp │ │ ├── msm5232.h │ │ ├── msm6295.cpp │ │ ├── msm6295.h │ │ ├── namco_snd.cpp │ │ ├── namco_snd.h │ │ ├── nes_apu.cpp │ │ ├── nes_apu.h │ │ ├── nes_defs.h │ │ ├── phoenixsound.cpp │ │ ├── phoenixsound.h │ │ ├── pleiadssound.cpp │ │ ├── pleiadssound.h │ │ ├── pokey.cpp │ │ ├── pokey.h │ │ ├── redbaron.cpp │ │ ├── redbaron.h │ │ ├── rescap.h │ │ ├── rf5c68.cpp │ │ ├── rf5c68.h │ │ ├── s14001a.cpp │ │ ├── s14001a.h │ │ ├── saa1099.cpp │ │ ├── saa1099.h │ │ ├── samples.cpp │ │ ├── samples.h │ │ ├── segapcm.cpp │ │ ├── segapcm.h │ │ ├── sn76477.cpp │ │ ├── sn76477.h │ │ ├── sn76496.cpp │ │ ├── sn76496.h │ │ ├── snk6502_sound.cpp │ │ ├── snk6502_sound.h │ │ ├── sp0250.cpp │ │ ├── sp0250.h │ │ ├── sp0256.cpp │ │ ├── sp0256.h │ │ ├── tms36xx.cpp │ │ ├── tms36xx.h │ │ ├── tms5110.cpp │ │ ├── tms5110.h │ │ ├── tms5110_tables.h │ │ ├── tms5220.cpp │ │ ├── tms5220.h │ │ ├── tms5220_tables.h │ │ ├── upd7759.cpp │ │ ├── upd7759.h │ │ ├── vlm5030.cpp │ │ ├── vlm5030.h │ │ ├── wiping.cpp │ │ ├── wiping.h │ │ ├── x1010.cpp │ │ ├── x1010.h │ │ ├── ym2151.c │ │ ├── ym2151.h │ │ ├── ym2413.c │ │ ├── ym2413.h │ │ ├── ym2612.c │ │ ├── ym2612.h │ │ ├── ymdeltat.c │ │ ├── ymdeltat.h │ │ ├── ymf262.cpp │ │ ├── ymf262.h │ │ ├── ymf278b.c │ │ ├── ymf278b.h │ │ ├── ymz280b.cpp │ │ └── ymz280b.h │ ├── state.h │ ├── stdfunc.h │ ├── tilemap_generic.cpp │ ├── tilemap_generic.h │ ├── tiles_generic.cpp │ ├── tiles_generic.h │ ├── timer.cpp │ ├── timer.h │ ├── vector.cpp │ ├── vector.h │ └── version.h ├── burner │ ├── burner.h │ ├── conc.cpp │ ├── cong.cpp │ ├── dat.cpp │ ├── dynhuff.cpp │ ├── dynhuff.h │ ├── gamc.cpp │ ├── gameinp.h │ ├── gami.cpp │ ├── image.cpp │ ├── ioapi.c │ ├── ioapi.h │ ├── luaengine.cpp │ ├── luaengine.h │ ├── luasav.cpp │ ├── luasav.h │ ├── macos │ │ ├── FBImporter.h │ │ ├── FBImporter.m │ │ ├── FBMainThread+Etc.mm │ │ ├── FBMainThread.h │ │ ├── FBMainThread.mm │ │ ├── FBScanner.h │ │ ├── FBScanner.mm │ │ ├── burner_macos.h │ │ ├── main.cpp │ │ ├── main.h │ │ ├── misc.cpp │ │ └── tchar.h │ ├── misc.cpp │ ├── neocdlist.h │ ├── pi │ │ ├── main_pi.cpp │ │ └── run_pi.cpp │ ├── psp │ │ ├── burner_psp.h │ │ ├── config.cpp │ │ ├── drv.cpp │ │ ├── font.c │ │ ├── inpdipsw.cpp │ │ ├── main.cpp │ │ ├── pg.c │ │ ├── pg.h │ │ ├── run.cpp │ │ ├── select.cpp │ │ ├── stated.cpp │ │ └── tchar.h │ ├── qt │ │ ├── aboutdialog.cpp │ │ ├── aboutdialog.h │ │ ├── aboutdialog.ui │ │ ├── burner_qt.h │ │ ├── bzip.cpp │ │ ├── dipswitchdialog.cpp │ │ ├── dipswitchdialog.h │ │ ├── dipswitchdialog.ui │ │ ├── driver.cpp │ │ ├── emuworker.cpp │ │ ├── emuworker.h │ │ ├── inputdialog.cpp │ │ ├── inputdialog.h │ │ ├── inputdialog.ui │ │ ├── inputsetdialog.cpp │ │ ├── inputsetdialog.h │ │ ├── inputsetdialog.ui │ │ ├── logdialog.cpp │ │ ├── logdialog.h │ │ ├── logdialog.ui │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── neocdlist.cpp │ │ ├── oglviewport.cpp │ │ ├── oglviewport.h │ │ ├── progress.cpp │ │ ├── qaudiointerface.cpp │ │ ├── qaudiointerface.h │ │ ├── qinputinterface.cpp │ │ ├── qinputinterface.h │ │ ├── qutil.cpp │ │ ├── qutil.h │ │ ├── resource │ │ │ ├── about.bmp │ │ │ ├── branch-closed.png │ │ │ ├── branch-end.png │ │ │ ├── branch-more.png │ │ │ ├── branch-open.png │ │ │ ├── checked.png │ │ │ ├── dark-flat-bg.png │ │ │ ├── dark-flat.css │ │ │ ├── down_arrow.png │ │ │ ├── left_arrow.png │ │ │ ├── misc.bmp │ │ │ ├── right_arrow.png │ │ │ ├── splash.bmp │ │ │ ├── tv-not-found-non-essential.ico │ │ │ ├── tv-not-found.ico │ │ │ ├── tv-not-working.ico │ │ │ ├── up_arrow.png │ │ │ └── vline.png │ │ ├── romdirsdialog.cpp │ │ ├── romdirsdialog.h │ │ ├── romdirsdialog.ui │ │ ├── rominfodialog.cpp │ │ ├── rominfodialog.h │ │ ├── rominfodialog.ui │ │ ├── romscandialog.cpp │ │ ├── romscandialog.h │ │ ├── romscandialog.ui │ │ ├── rscr.qrc │ │ ├── selectdialog.cpp │ │ ├── selectdialog.h │ │ ├── selectdialog.ui │ │ ├── stringset.cpp │ │ ├── supportdirsdialog.cpp │ │ ├── supportdirsdialog.h │ │ ├── supportdirsdialog.ui │ │ ├── tchar.h │ │ └── widgets │ │ │ ├── hexspinbox.cpp │ │ │ └── hexspinbox.h │ ├── resource │ │ ├── TV Minus.ico │ │ ├── TV Not Found Non Essential.ico │ │ ├── TV Not Found.ico │ │ ├── TV Not Working.ico │ │ ├── TV Plus.ico │ │ ├── about.bmp │ │ ├── fba.ico │ │ ├── manifest.xml │ │ ├── misc.bmp │ │ └── splash.bmp │ ├── sdl │ │ ├── burner_sdl.h │ │ ├── bzip.cpp │ │ ├── config.cpp │ │ ├── drv.cpp │ │ ├── inpdipsw.cpp │ │ ├── input.cpp │ │ ├── input_sdl2.cpp │ │ ├── ips_manager.cpp │ │ ├── main.cpp │ │ ├── media.cpp │ │ ├── neocdlist.cpp │ │ ├── replay.cpp │ │ ├── run.cpp │ │ ├── scrn.cpp │ │ ├── sdl2_gui.cpp │ │ ├── sdl2_gui.h │ │ ├── sdl2_gui_common.cpp │ │ ├── sdl2_gui_common.h │ │ ├── sdl2_gui_ingame.cpp │ │ ├── sdl2_inprint.cpp │ │ ├── sdl2_inprint.h │ │ ├── stated.cpp │ │ ├── stringset.cpp │ │ ├── support_paths.cpp │ │ └── tchar.h │ ├── sshot.cpp │ ├── state.cpp │ ├── statec.cpp │ ├── title.h │ ├── un7z.cpp │ ├── un7z.h │ ├── unzip.c │ ├── unzip.h │ ├── win32 │ │ ├── about.cpp │ │ ├── app.rc │ │ ├── avi.cpp │ │ ├── burner_win32.h │ │ ├── bzip.cpp │ │ ├── choose_monitor.cpp │ │ ├── cona.cpp │ │ ├── d3dkmt_sync.cpp │ │ ├── d3dkmt_sync.h │ │ ├── debugger.cpp │ │ ├── drv.cpp │ │ ├── dynhuff.cpp │ │ ├── dynhuff.h │ │ ├── fba_kaillera.cpp │ │ ├── fbn_ggpo.cpp │ │ ├── fbn_ggpo_perfmon.cpp │ │ ├── fbn_network.cpp │ │ ├── gameinfo.cpp │ │ ├── image_win32.cpp │ │ ├── inpc.cpp │ │ ├── inpcheat.cpp │ │ ├── inpd.cpp │ │ ├── inpdipsw.cpp │ │ ├── inps.cpp │ │ ├── ips_manager.cpp │ │ ├── localise.cpp │ │ ├── localise_download.cpp │ │ ├── localise_gamelist.cpp │ │ ├── luaconsole.cpp │ │ ├── main.cpp │ │ ├── media.cpp │ │ ├── memcard.cpp │ │ ├── menu.cpp │ │ ├── misc_win32.cpp │ │ ├── neocdlist.cpp │ │ ├── neocdsel.cpp │ │ ├── numdial.cpp │ │ ├── paletteviewer.cpp │ │ ├── placeholder.cpp │ │ ├── popup_win32.cpp │ │ ├── progress.cpp │ │ ├── replay.cpp │ │ ├── res.cpp │ │ ├── resource.h │ │ ├── resource.rc │ │ ├── resource_string.h │ │ ├── roms.cpp │ │ ├── run.cpp │ │ ├── scrn.cpp │ │ ├── sel.cpp │ │ ├── sfactd.cpp │ │ ├── splash.cpp │ │ ├── stated.cpp │ │ ├── string.rc │ │ ├── support_paths.cpp │ │ ├── systeminfo.cpp │ │ ├── version.rc │ │ └── wave.cpp │ └── zipfn.cpp ├── cpu │ ├── a68k │ │ ├── fba_make68k.c │ │ └── mips │ │ │ ├── a68k.s │ │ │ ├── a68ktbl.inc │ │ │ ├── builda68k.bat │ │ │ └── fba_make68k.c │ ├── adsp2100 │ │ ├── 2100dasm.cpp │ │ ├── 2100ops.c │ │ ├── adsp2100.cpp │ │ ├── adsp2100.h │ │ └── adsp2100_defs.h │ ├── adsp2100_intf.cpp │ ├── adsp2100_intf.h │ ├── arm │ │ └── arm.cpp │ ├── arm7 │ │ ├── arm7.cpp │ │ ├── arm7core.c │ │ ├── arm7core.h │ │ └── arm7exec.c │ ├── arm7_intf.cpp │ ├── arm7_intf.h │ ├── arm_intf.cpp │ ├── arm_intf.h │ ├── e132xs │ │ ├── e132xs.cpp │ │ ├── e132xs.h │ │ └── e132xsop.inc │ ├── e132xs_intf.h │ ├── h6280 │ │ ├── h6280.cpp │ │ ├── h6280.h │ │ ├── h6280ops.h │ │ └── tblh6280.c │ ├── h6280_intf.cpp │ ├── h6280_intf.h │ ├── hd6309 │ │ ├── 6309ops.c │ │ ├── 6309tbl.c │ │ ├── hd6309.cpp │ │ └── hd6309.h │ ├── hd6309_intf.cpp │ ├── hd6309_intf.h │ ├── i8039 │ │ ├── i8039.cpp │ │ └── i8039.h │ ├── i8051 │ │ ├── mcs51.cpp │ │ ├── mcs51.h │ │ └── mcs51ops.c │ ├── i8x41 │ │ ├── 8x41dasm.c │ │ ├── i8x41.cpp │ │ └── i8x41.h │ ├── konami │ │ ├── konami.cpp │ │ ├── konami.h │ │ ├── konamops.c │ │ └── konamtbl.c │ ├── konami_intf.cpp │ ├── konami_intf.h │ ├── m6502 │ │ ├── ill02.h │ │ ├── m6502.cpp │ │ ├── m6502.h │ │ ├── ops02.h │ │ ├── opsc02.h │ │ ├── opsn2a03.h │ │ ├── t6502.c │ │ ├── t65c02.c │ │ ├── t65sc02.c │ │ ├── tdeco16.c │ │ └── tn2a03.c │ ├── m6502_intf.cpp │ ├── m6502_intf.h │ ├── m6800 │ │ ├── 6800ops.c │ │ ├── 6800tbl.c │ │ ├── m6800.cpp │ │ └── m6800.h │ ├── m68000_debug.h │ ├── m68000_intf.cpp │ ├── m68000_intf.h │ ├── m6800_intf.cpp │ ├── m6800_intf.h │ ├── m6805 │ │ ├── 6805ops.c │ │ ├── m6805.cpp │ │ └── m6805.h │ ├── m6805_intf.cpp │ ├── m6805_intf.h │ ├── m6809 │ │ ├── 6809ops.c │ │ ├── 6809tbl.c │ │ ├── m6809.cpp │ │ └── m6809.h │ ├── m6809_intf.cpp │ ├── m6809_intf.h │ ├── m68k │ │ ├── m68k.h │ │ ├── m68k_in.c │ │ ├── m68kconf.h │ │ ├── m68kcpu.c │ │ ├── m68kcpu.h │ │ ├── m68kdasm.c │ │ ├── m68kfpu.c │ │ └── m68kmake.c │ ├── mips3 │ │ ├── cop0.cpp │ │ ├── cop1.cpp │ │ ├── mips3.cpp │ │ ├── mips3.h │ │ ├── mips3_arithm.h │ │ ├── mips3_bitops.h │ │ ├── mips3_branch.h │ │ ├── mips3_common.h │ │ ├── mips3_dasm.cpp │ │ ├── mips3_memory.h │ │ ├── mips3_misc.h │ │ ├── mips3_rw.h │ │ ├── mips3_shift.h │ │ ├── mipsdef.h │ │ └── x64 │ │ │ ├── mips3_x64.cpp │ │ │ ├── mips3_x64.h │ │ │ ├── mips3_x64_arithm.h │ │ │ ├── mips3_x64_bitops.h │ │ │ ├── mips3_x64_branch.h │ │ │ ├── mips3_x64_cop0.h │ │ │ ├── mips3_x64_cop1.h │ │ │ ├── mips3_x64_defs.h │ │ │ ├── mips3_x64_misc.h │ │ │ ├── mips3_x64_rw.h │ │ │ ├── mips3_x64_shift.h │ │ │ └── xbyak │ │ │ ├── xbyak.h │ │ │ ├── xbyak_bin2hex.h │ │ │ ├── xbyak_mnemonic.h │ │ │ └── xbyak_util.h │ ├── mips3_intf.cpp │ ├── mips3_intf.h │ ├── nec │ │ ├── nec.cpp │ │ ├── nec.h │ │ ├── necea.h │ │ ├── necinstr.c │ │ ├── necinstr.h │ │ ├── necmacro.h │ │ ├── necmodrm.h │ │ ├── necpriv.h │ │ ├── v25.cpp │ │ ├── v25instr.c │ │ ├── v25instr.h │ │ ├── v25priv.h │ │ └── v25sfr.c │ ├── nec_intf.cpp │ ├── nec_intf.h │ ├── pic16c5x │ │ ├── pic16c5x.cpp │ │ └── pic16c5x.h │ ├── pic16c5x_intf.cpp │ ├── pic16c5x_intf.h │ ├── s2650 │ │ ├── s2650.cpp │ │ └── s2650.h │ ├── s2650_intf.cpp │ ├── s2650_intf.h │ ├── sh2 │ │ └── sh2.cpp │ ├── sh2_intf.h │ ├── tlcs90 │ │ └── tlcs90.cpp │ ├── tlcs90_intf.cpp │ ├── tlcs90_intf.h │ ├── tms32010 │ │ ├── tms32010.cpp │ │ └── tms32010.h │ ├── tms34 │ │ ├── 34010fld.c │ │ ├── 34010gfx.c │ │ ├── 34010ops.c │ │ ├── 34010ops.h │ │ ├── 34010tbl.c │ │ ├── tms34010.cpp │ │ └── tms34010.h │ ├── tms34010 │ │ ├── tms34010.cpp │ │ ├── tms34010.h │ │ ├── tms34010_arithm.h │ │ ├── tms34010_ctrl.h │ │ ├── tms34010_dasm.cpp │ │ ├── tms34010_defs.h │ │ ├── tms34010_gfx.h │ │ ├── tms34010_jump.h │ │ ├── tms34010_memacc.h │ │ ├── tms34010_mov.h │ │ ├── tms34010_newdasm.cpp │ │ ├── tms34010_optable.cpp │ │ └── tms34010_shift.h │ ├── tms34010_intf.cpp │ ├── tms34010_intf.h │ ├── tms34_intf.cpp │ ├── tms34_intf.h │ ├── upd7725 │ │ ├── upd7725.cpp │ │ └── upd7725.h │ ├── upd7810 │ │ ├── 7810dasm.c │ │ ├── 7810ops.c │ │ ├── 7810tbl.c │ │ ├── upd7810.cpp │ │ └── upd7810.h │ ├── upd7810_intf.h │ ├── v60 │ │ ├── am.c │ │ ├── am1.c │ │ ├── am2.c │ │ ├── am3.c │ │ ├── op12.c │ │ ├── op2.c │ │ ├── op3.c │ │ ├── op4.c │ │ ├── op5.c │ │ ├── op6.c │ │ ├── op7a.c │ │ ├── optable.c │ │ ├── v60.cpp │ │ ├── v60.h │ │ ├── v60d.c │ │ └── v60mem.c │ ├── v60_intf.h │ ├── z180 │ │ ├── z180.cpp │ │ ├── z180.h │ │ ├── z180cb.c │ │ ├── z180daa.h │ │ ├── z180dd.c │ │ ├── z180ed.c │ │ ├── z180fd.c │ │ ├── z180op.c │ │ ├── z180ops.h │ │ ├── z180tbl.h │ │ └── z180xy.c │ ├── z180_intf.cpp │ ├── z180_intf.h │ ├── z80 │ │ ├── z80.cpp │ │ ├── z80.h │ │ ├── z80ctc.cpp │ │ ├── z80ctc.h │ │ ├── z80daisy.cpp │ │ ├── z80daisy.h │ │ ├── z80pio.cpp │ │ └── z80pio.h │ ├── z80_intf.cpp │ └── z80_intf.h ├── dep │ ├── generated │ │ ├── detector_buffers.h │ │ └── detector_loaders.h │ ├── ggpo │ │ ├── include │ │ │ ├── ggpo_perfmon.h │ │ │ ├── ggpoclient.h │ │ │ └── ggponet.h │ │ └── lib │ │ │ └── ggponet.lib │ ├── kaillera │ │ └── client │ │ │ ├── kailleraclient.h │ │ │ ├── net.cpp │ │ │ └── net.h │ ├── libs │ │ ├── lib7z │ │ │ ├── 7z.h │ │ │ ├── 7zAlloc.c │ │ │ ├── 7zAlloc.h │ │ │ ├── 7zArcIn.c │ │ │ ├── 7zBuf.c │ │ │ ├── 7zBuf.h │ │ │ ├── 7zBuf2.c │ │ │ ├── 7zCrc.c │ │ │ ├── 7zCrc.h │ │ │ ├── 7zCrcOpt.c │ │ │ ├── 7zDec.c │ │ │ ├── 7zFile.c │ │ │ ├── 7zFile.h │ │ │ ├── 7zStream.c │ │ │ ├── 7zTypes.h │ │ │ ├── 7zVersion.h │ │ │ ├── 7zVersion.rc │ │ │ ├── Aes.c │ │ │ ├── Aes.h │ │ │ ├── AesOpt.c │ │ │ ├── Alloc.c │ │ │ ├── Alloc.h │ │ │ ├── Bcj2.c │ │ │ ├── Bcj2.h │ │ │ ├── Bcj2Enc.c │ │ │ ├── Bra.c │ │ │ ├── Bra.h │ │ │ ├── Bra86.c │ │ │ ├── BraIA64.c │ │ │ ├── Compiler.h │ │ │ ├── CpuArch.c │ │ │ ├── CpuArch.h │ │ │ ├── Delta.c │ │ │ ├── Delta.h │ │ │ ├── LzFind.c │ │ │ ├── LzFind.h │ │ │ ├── LzFindMt.c │ │ │ ├── LzFindMt.h │ │ │ ├── LzHash.h │ │ │ ├── Lzma2Dec.c │ │ │ ├── Lzma2Dec.h │ │ │ ├── Lzma2Enc.c │ │ │ ├── Lzma2Enc.h │ │ │ ├── Lzma86.h │ │ │ ├── Lzma86Dec.c │ │ │ ├── Lzma86Enc.c │ │ │ ├── LzmaDec.c │ │ │ ├── LzmaDec.h │ │ │ ├── LzmaEnc.c │ │ │ ├── LzmaEnc.h │ │ │ ├── LzmaLib.c │ │ │ ├── LzmaLib.h │ │ │ ├── MtCoder.c │ │ │ ├── MtCoder.h │ │ │ ├── Ppmd.h │ │ │ ├── Ppmd7.c │ │ │ ├── Ppmd7.h │ │ │ ├── Ppmd7Dec.c │ │ │ ├── Ppmd7Enc.c │ │ │ ├── Precomp.h │ │ │ ├── RotateDefs.h │ │ │ ├── Sha256.c │ │ │ ├── Sha256.h │ │ │ ├── Sort.c │ │ │ ├── Sort.h │ │ │ ├── Threads.c │ │ │ ├── Threads.h │ │ │ ├── Xz.c │ │ │ ├── Xz.h │ │ │ ├── XzCrc64.c │ │ │ ├── XzCrc64.h │ │ │ ├── XzCrc64Opt.c │ │ │ ├── XzDec.c │ │ │ ├── XzEnc.c │ │ │ ├── XzEnc.h │ │ │ ├── XzIn.c │ │ │ └── _fba_lzmasdk_v16.04.txt │ │ ├── libpng │ │ │ ├── _fba_libpng_v1635.txt │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pngdebug.h │ │ │ ├── pngerror.c │ │ │ ├── pngget.c │ │ │ ├── pnginfo.h │ │ │ ├── pnglibconf.h │ │ │ ├── pngmem.c │ │ │ ├── pngpread.c │ │ │ ├── pngpriv.h │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngstruct.h │ │ │ ├── pngtrans.c │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ └── pngwutil.c │ │ ├── lua │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.h │ │ │ ├── luac.c │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ ├── lzio.h │ │ │ └── print.c │ │ └── zlib │ │ │ ├── _fba_zlib_v1211.txt │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zconf.h.in │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ ├── mingw │ │ ├── DirectX SDK EULA.txt │ │ ├── dxsdk.7z │ │ └── include │ │ │ ├── directx9 │ │ │ ├── d3dx9.h │ │ │ ├── d3dx9anim.h │ │ │ ├── d3dx9core.h │ │ │ ├── d3dx9effect.h │ │ │ ├── d3dx9math.h │ │ │ ├── d3dx9math.inl │ │ │ ├── d3dx9mesh.h │ │ │ ├── d3dx9shader.h │ │ │ ├── d3dx9shape.h │ │ │ ├── d3dx9tex.h │ │ │ └── d3dx9xof.h │ │ │ ├── mingw_win32.h │ │ │ └── xaudio2 │ │ │ ├── audiodefs.h │ │ │ ├── sal.h │ │ │ ├── xaudio2.h │ │ │ ├── xaudio2fx.h │ │ │ └── xma2defs.h │ ├── pi │ │ └── gles │ │ │ ├── matrix.c │ │ │ ├── matrix.h │ │ │ ├── pigl.h │ │ │ ├── pigl_dmx.c │ │ │ └── pigl_drm.c │ ├── qtcreator │ │ └── SDL.h │ ├── scripts │ │ ├── build_details.cpp │ │ ├── cave_sprite_func.pl │ │ ├── cave_tile_func.pl │ │ ├── fixrc.pl │ │ ├── gamelist.pl │ │ ├── license2rtf.pl │ │ ├── neo_sprite_func.pl │ │ ├── psikyo_tile_func.pl │ │ └── toa_gp9001_func.pl │ ├── vc │ │ └── include │ │ │ ├── afxres.h │ │ │ ├── d3d.h │ │ │ ├── d3dcaps.h │ │ │ ├── d3dtypes.h │ │ │ ├── d3dvec.inl │ │ │ └── xaudio2 │ │ │ ├── XAudio2.h │ │ │ ├── XAudio2fx.h │ │ │ ├── audiodefs.h │ │ │ └── xma2defs.h │ └── vs2010 │ │ ├── pre.bat │ │ ├── pre2010.bat │ │ ├── pre2015.bat │ │ ├── pre2019.bat │ │ └── readme.txt ├── intf │ ├── audio │ │ ├── aud_dsp.cpp │ │ ├── aud_dsp.h │ │ ├── aud_interface.cpp │ │ ├── linux │ │ │ ├── aud_pulse_simple.cpp │ │ │ └── ringbuffer.h │ │ ├── lowpass2.cpp │ │ ├── lowpass2.h │ │ ├── macos │ │ │ ├── FBAudio.h │ │ │ ├── FBAudio.mm │ │ │ ├── SDLAudioEngine.h │ │ │ └── SDLAudioEngine.m │ │ ├── psp │ │ │ ├── aud_psp.cpp │ │ │ └── aud_psp_a.s │ │ ├── sdl │ │ │ └── aud_sdl.cpp │ │ └── win32 │ │ │ ├── aud_dsound3.cpp │ │ │ ├── aud_wasapi.cpp │ │ │ ├── aud_xaudio2.cpp │ │ │ ├── dsound_core.cpp │ │ │ └── dsound_core.h │ ├── cd │ │ ├── cd_interface.cpp │ │ ├── cd_interface.h │ │ ├── sdl │ │ │ ├── cd_isowav.cpp │ │ │ ├── cd_sdl2.cpp │ │ │ ├── cdsound.cpp │ │ │ └── cdsound.h │ │ └── win32 │ │ │ └── cd_img.cpp │ ├── input │ │ ├── inp_interface.cpp │ │ ├── inp_keys.h │ │ ├── macos │ │ │ ├── FBInput.h │ │ │ └── FBInput.mm │ │ ├── pi │ │ │ └── inp_pi.cpp │ │ ├── psp │ │ │ └── inp_psp.cpp │ │ ├── sdl │ │ │ ├── inp_sdl.cpp │ │ │ ├── inp_sdl2.cpp │ │ │ └── inp_sdl_keys.h │ │ └── win32 │ │ │ ├── dinput_core.cpp │ │ │ ├── dinput_core.h │ │ │ └── inp_dinput.cpp │ ├── interface.cpp │ ├── interface.h │ ├── perfcount │ │ ├── prf_interface.cpp │ │ └── win32 │ │ │ └── prf_performance_counter.cpp │ └── video │ │ ├── macos │ │ ├── FBVideo.h │ │ └── FBVideo.mm │ │ ├── opengl │ │ ├── shader.cpp │ │ ├── shader.h │ │ └── vid_opengl.cpp │ │ ├── pi │ │ └── vid_pi.cpp │ │ ├── psp │ │ ├── vid_psp.c │ │ ├── vid_psp.h │ │ └── vid_pspfx.cpp │ │ ├── scalers │ │ ├── 2xpm.cpp │ │ ├── 2xsai.cpp │ │ ├── 2xsaimmx.asm │ │ ├── ddt3x.cpp │ │ ├── eagle_fm.asm │ │ ├── epx.cpp │ │ ├── hq2x32.asm │ │ ├── hq2xs.cpp │ │ ├── hq2xs.h │ │ ├── hq2xs_16.cpp │ │ ├── hq3x32.asm │ │ ├── hq3xs.cpp │ │ ├── hq3xs.h │ │ ├── hq4x32.asm │ │ ├── hq_shared32.cpp │ │ ├── hq_shared32.h │ │ ├── interp.h │ │ ├── scale2x.h │ │ ├── scale2x_vc.h │ │ ├── scale3x.h │ │ ├── superscale.asm │ │ ├── xbr.cpp │ │ └── xbr.h │ │ ├── sdl │ │ ├── vid_sdl2.cpp │ │ ├── vid_sdl2opengl.cpp │ │ ├── vid_sdlfx.cpp │ │ └── vid_sdlopengl.cpp │ │ ├── vid_interface.cpp │ │ ├── vid_softfx.cpp │ │ ├── vid_softfx.h │ │ ├── vid_support.cpp │ │ ├── vid_support.h │ │ └── win32 │ │ ├── ddraw_core.cpp │ │ ├── ddraw_core.h │ │ ├── directx9_core.cpp │ │ ├── directx9_core.h │ │ ├── resource │ │ └── bicubic.fx │ │ ├── rgb_pattern.h │ │ ├── stb_image.h │ │ ├── vid_d3d.cpp │ │ ├── vid_ddraw.cpp │ │ ├── vid_ddrawfx.cpp │ │ ├── vid_detector.cpp │ │ ├── vid_detector.h │ │ ├── vid_directx9.cpp │ │ ├── vid_directx_support.cpp │ │ ├── vid_directx_support.h │ │ ├── vid_dynrender.cpp │ │ ├── vid_dynrender.h │ │ ├── vid_effect.cpp │ │ ├── vid_effect.h │ │ ├── vid_font.cpp │ │ ├── vid_font.h │ │ ├── vid_memorybuffer.cpp │ │ ├── vid_memorybuffer.h │ │ ├── vid_overlay.cpp │ │ └── vid_overlay.h └── license.txt └── whatsnew.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/appveyor.yml -------------------------------------------------------------------------------- /fba.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fba.chm -------------------------------------------------------------------------------- /fbahelpfilesrc/command.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/command.htm -------------------------------------------------------------------------------- /fbahelpfilesrc/fba.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/fba.chm -------------------------------------------------------------------------------- /fbahelpfilesrc/fba.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/fba.hhk -------------------------------------------------------------------------------- /fbahelpfilesrc/fba.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/fba.hhp -------------------------------------------------------------------------------- /fbahelpfilesrc/intro.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/intro.htm -------------------------------------------------------------------------------- /fbahelpfilesrc/keys.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/keys.htm -------------------------------------------------------------------------------- /fbahelpfilesrc/menu_audio.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/menu_audio.htm -------------------------------------------------------------------------------- /fbahelpfilesrc/menu_game.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/menu_game.htm -------------------------------------------------------------------------------- /fbahelpfilesrc/menu_help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/menu_help.htm -------------------------------------------------------------------------------- /fbahelpfilesrc/menu_input.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/menu_input.htm -------------------------------------------------------------------------------- /fbahelpfilesrc/menu_misc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/menu_misc.htm -------------------------------------------------------------------------------- /fbahelpfilesrc/menu_video.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/menu_video.htm -------------------------------------------------------------------------------- /fbahelpfilesrc/presets.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/presets.htm -------------------------------------------------------------------------------- /fbahelpfilesrc/sysreq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/fbahelpfilesrc/sysreq.htm -------------------------------------------------------------------------------- /games.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/games.bat -------------------------------------------------------------------------------- /luadeps.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/luadeps.zip -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/makefile -------------------------------------------------------------------------------- /makefile.burn_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/makefile.burn_rules -------------------------------------------------------------------------------- /makefile.burner_win32_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/makefile.burner_win32_rules -------------------------------------------------------------------------------- /makefile.mamemingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/makefile.mamemingw -------------------------------------------------------------------------------- /makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/makefile.mingw -------------------------------------------------------------------------------- /makefile.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/makefile.sdl -------------------------------------------------------------------------------- /makefile.sdlrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/makefile.sdlrules -------------------------------------------------------------------------------- /makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/makefile.vc -------------------------------------------------------------------------------- /preset-example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/preset-example.zip -------------------------------------------------------------------------------- /projectfiles/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/projectfiles/README.TXT -------------------------------------------------------------------------------- /projectfiles/visualstudio-2015/.gitignore: -------------------------------------------------------------------------------- 1 | Debug 2 | Release 3 | generated 4 | .vs 5 | fba_vs2015.vcxproj.user 6 | -------------------------------------------------------------------------------- /src/burn/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/bitswap.h -------------------------------------------------------------------------------- /src/burn/burn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn.cpp -------------------------------------------------------------------------------- /src/burn/burn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn.h -------------------------------------------------------------------------------- /src/burn/burn_bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_bitmap.cpp -------------------------------------------------------------------------------- /src/burn/burn_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_bitmap.h -------------------------------------------------------------------------------- /src/burn/burn_gun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_gun.cpp -------------------------------------------------------------------------------- /src/burn/burn_gun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_gun.h -------------------------------------------------------------------------------- /src/burn/burn_led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_led.cpp -------------------------------------------------------------------------------- /src/burn/burn_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_led.h -------------------------------------------------------------------------------- /src/burn/burn_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_memory.cpp -------------------------------------------------------------------------------- /src/burn/burn_pal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_pal.cpp -------------------------------------------------------------------------------- /src/burn/burn_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_pal.h -------------------------------------------------------------------------------- /src/burn/burn_shift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_shift.cpp -------------------------------------------------------------------------------- /src/burn/burn_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_shift.h -------------------------------------------------------------------------------- /src/burn/burn_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_sound.cpp -------------------------------------------------------------------------------- /src/burn/burn_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_sound.h -------------------------------------------------------------------------------- /src/burn/burn_sound_a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_sound_a.asm -------------------------------------------------------------------------------- /src/burn/burn_sound_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burn_sound_c.cpp -------------------------------------------------------------------------------- /src/burn/burnint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/burnint.h -------------------------------------------------------------------------------- /src/burn/cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/cheat.cpp -------------------------------------------------------------------------------- /src/burn/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/cheat.h -------------------------------------------------------------------------------- /src/burn/debug_track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/debug_track.cpp -------------------------------------------------------------------------------- /src/burn/devices/6821pia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/6821pia.cpp -------------------------------------------------------------------------------- /src/burn/devices/6821pia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/6821pia.h -------------------------------------------------------------------------------- /src/burn/devices/8255ppi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/8255ppi.cpp -------------------------------------------------------------------------------- /src/burn/devices/8255ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/8255ppi.h -------------------------------------------------------------------------------- /src/burn/devices/8257dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/8257dma.cpp -------------------------------------------------------------------------------- /src/burn/devices/8257dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/8257dma.h -------------------------------------------------------------------------------- /src/burn/devices/atariic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/atariic.cpp -------------------------------------------------------------------------------- /src/burn/devices/atariic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/atariic.h -------------------------------------------------------------------------------- /src/burn/devices/atarijsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/atarijsa.cpp -------------------------------------------------------------------------------- /src/burn/devices/atarijsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/atarijsa.h -------------------------------------------------------------------------------- /src/burn/devices/atarimo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/atarimo.cpp -------------------------------------------------------------------------------- /src/burn/devices/atarimo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/atarimo.h -------------------------------------------------------------------------------- /src/burn/devices/atarirle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/atarirle.cpp -------------------------------------------------------------------------------- /src/burn/devices/atarirle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/atarirle.h -------------------------------------------------------------------------------- /src/burn/devices/atarivad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/atarivad.cpp -------------------------------------------------------------------------------- /src/burn/devices/atarivad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/atarivad.h -------------------------------------------------------------------------------- /src/burn/devices/avgdvg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/avgdvg.cpp -------------------------------------------------------------------------------- /src/burn/devices/avgdvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/avgdvg.h -------------------------------------------------------------------------------- /src/burn/devices/bsmt2000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/bsmt2000.cpp -------------------------------------------------------------------------------- /src/burn/devices/bsmt2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/bsmt2000.h -------------------------------------------------------------------------------- /src/burn/devices/c169.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/c169.cpp -------------------------------------------------------------------------------- /src/burn/devices/c169.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/c169.h -------------------------------------------------------------------------------- /src/burn/devices/decobsmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/decobsmt.cpp -------------------------------------------------------------------------------- /src/burn/devices/decobsmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/decobsmt.h -------------------------------------------------------------------------------- /src/burn/devices/earom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/earom.cpp -------------------------------------------------------------------------------- /src/burn/devices/earom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/earom.h -------------------------------------------------------------------------------- /src/burn/devices/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/eeprom.cpp -------------------------------------------------------------------------------- /src/burn/devices/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/eeprom.h -------------------------------------------------------------------------------- /src/burn/devices/i4x00.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/i4x00.cpp -------------------------------------------------------------------------------- /src/burn/devices/i4x00.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/i4x00.h -------------------------------------------------------------------------------- /src/burn/devices/joyprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/joyprocess.h -------------------------------------------------------------------------------- /src/burn/devices/mathbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/mathbox.cpp -------------------------------------------------------------------------------- /src/burn/devices/mathbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/mathbox.h -------------------------------------------------------------------------------- /src/burn/devices/mb87078.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/mb87078.cpp -------------------------------------------------------------------------------- /src/burn/devices/mb87078.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/mb87078.h -------------------------------------------------------------------------------- /src/burn/devices/mermaid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/mermaid.cpp -------------------------------------------------------------------------------- /src/burn/devices/mermaid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/mermaid.h -------------------------------------------------------------------------------- /src/burn/devices/midcsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/midcsd.cpp -------------------------------------------------------------------------------- /src/burn/devices/midcsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/midcsd.h -------------------------------------------------------------------------------- /src/burn/devices/midsat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/midsat.cpp -------------------------------------------------------------------------------- /src/burn/devices/midsat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/midsat.h -------------------------------------------------------------------------------- /src/burn/devices/midsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/midsg.cpp -------------------------------------------------------------------------------- /src/burn/devices/midsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/midsg.h -------------------------------------------------------------------------------- /src/burn/devices/midssio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/midssio.cpp -------------------------------------------------------------------------------- /src/burn/devices/midssio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/midssio.h -------------------------------------------------------------------------------- /src/burn/devices/midtcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/midtcs.cpp -------------------------------------------------------------------------------- /src/burn/devices/midtcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/midtcs.h -------------------------------------------------------------------------------- /src/burn/devices/namco_c45.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/namco_c45.h -------------------------------------------------------------------------------- /src/burn/devices/namcoio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/namcoio.cpp -------------------------------------------------------------------------------- /src/burn/devices/namcoio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/namcoio.h -------------------------------------------------------------------------------- /src/burn/devices/nb1414m4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/nb1414m4.cpp -------------------------------------------------------------------------------- /src/burn/devices/nb1414m4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/nb1414m4.h -------------------------------------------------------------------------------- /src/burn/devices/nmk004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/nmk004.cpp -------------------------------------------------------------------------------- /src/burn/devices/nmk004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/nmk004.h -------------------------------------------------------------------------------- /src/burn/devices/nmk112.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/nmk112.cpp -------------------------------------------------------------------------------- /src/burn/devices/nmk112.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/nmk112.h -------------------------------------------------------------------------------- /src/burn/devices/pandora.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/pandora.cpp -------------------------------------------------------------------------------- /src/burn/devices/pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/pandora.h -------------------------------------------------------------------------------- /src/burn/devices/qs1000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/qs1000.cpp -------------------------------------------------------------------------------- /src/burn/devices/qs1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/qs1000.h -------------------------------------------------------------------------------- /src/burn/devices/resnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/resnet.cpp -------------------------------------------------------------------------------- /src/burn/devices/resnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/resnet.h -------------------------------------------------------------------------------- /src/burn/devices/seibucop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/seibucop.cpp -------------------------------------------------------------------------------- /src/burn/devices/seibucop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/seibucop.h -------------------------------------------------------------------------------- /src/burn/devices/seibusnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/seibusnd.cpp -------------------------------------------------------------------------------- /src/burn/devices/seibusnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/seibusnd.h -------------------------------------------------------------------------------- /src/burn/devices/sknsspr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/sknsspr.cpp -------------------------------------------------------------------------------- /src/burn/devices/sknsspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/sknsspr.h -------------------------------------------------------------------------------- /src/burn/devices/slapstic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/slapstic.cpp -------------------------------------------------------------------------------- /src/burn/devices/slapstic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/slapstic.h -------------------------------------------------------------------------------- /src/burn/devices/st0020.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/st0020.cpp -------------------------------------------------------------------------------- /src/burn/devices/st0020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/st0020.h -------------------------------------------------------------------------------- /src/burn/devices/t5182.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/t5182.cpp -------------------------------------------------------------------------------- /src/burn/devices/t5182.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/t5182.h -------------------------------------------------------------------------------- /src/burn/devices/timekpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/timekpr.cpp -------------------------------------------------------------------------------- /src/burn/devices/timekpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/timekpr.h -------------------------------------------------------------------------------- /src/burn/devices/tms34061.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/tms34061.cpp -------------------------------------------------------------------------------- /src/burn/devices/tms34061.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/tms34061.h -------------------------------------------------------------------------------- /src/burn/devices/tms9928a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/tms9928a.cpp -------------------------------------------------------------------------------- /src/burn/devices/tms9928a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/tms9928a.h -------------------------------------------------------------------------------- /src/burn/devices/v3021.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/v3021.cpp -------------------------------------------------------------------------------- /src/burn/devices/v3021.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/v3021.h -------------------------------------------------------------------------------- /src/burn/devices/vdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/vdc.cpp -------------------------------------------------------------------------------- /src/burn/devices/vdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/vdc.h -------------------------------------------------------------------------------- /src/burn/devices/watchdog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/watchdog.cpp -------------------------------------------------------------------------------- /src/burn/devices/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/watchdog.h -------------------------------------------------------------------------------- /src/burn/devices/x2212.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/x2212.cpp -------------------------------------------------------------------------------- /src/burn/devices/x2212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/devices/x2212.h -------------------------------------------------------------------------------- /src/burn/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/driver.h -------------------------------------------------------------------------------- /src/burn/drv/atari/d_klax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/atari/d_klax.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/cps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/cps.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/cps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/cps.h -------------------------------------------------------------------------------- /src/burn/drv/capcom/cpsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/cpsr.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/cpsrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/cpsrd.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/cpst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/cpst.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/ctv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/ctv.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/ctv_do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/ctv_do.h -------------------------------------------------------------------------------- /src/burn/drv/capcom/ps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/ps.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/ps_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/ps_m.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/ps_z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/ps_z.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/qs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/qs.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/qs_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/qs_c.cpp -------------------------------------------------------------------------------- /src/burn/drv/capcom/qs_z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/capcom/qs_z.cpp -------------------------------------------------------------------------------- /src/burn/drv/cave/cave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/cave/cave.cpp -------------------------------------------------------------------------------- /src/burn/drv/cave/cave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/cave/cave.h -------------------------------------------------------------------------------- /src/burn/drv/cave/d_gaia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/cave/d_gaia.cpp -------------------------------------------------------------------------------- /src/burn/drv/cps3/cps3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/cps3/cps3.h -------------------------------------------------------------------------------- /src/burn/drv/cps3/cps3run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/cps3/cps3run.cpp -------------------------------------------------------------------------------- /src/burn/drv/cps3/cps3snd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/cps3/cps3snd.cpp -------------------------------------------------------------------------------- /src/burn/drv/cps3/d_cps3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/cps3/d_cps3.cpp -------------------------------------------------------------------------------- /src/burn/drv/d_parent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/d_parent.cpp -------------------------------------------------------------------------------- /src/burn/drv/galaxian/gal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/galaxian/gal.h -------------------------------------------------------------------------------- /src/burn/drv/irem/d_m107.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/irem/d_m107.cpp -------------------------------------------------------------------------------- /src/burn/drv/irem/d_m52.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/irem/d_m52.cpp -------------------------------------------------------------------------------- /src/burn/drv/irem/d_m57.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/irem/d_m57.cpp -------------------------------------------------------------------------------- /src/burn/drv/irem/d_m58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/irem/d_m58.cpp -------------------------------------------------------------------------------- /src/burn/drv/irem/d_m62.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/irem/d_m62.cpp -------------------------------------------------------------------------------- /src/burn/drv/irem/d_m63.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/irem/d_m63.cpp -------------------------------------------------------------------------------- /src/burn/drv/irem/d_m72.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/irem/d_m72.cpp -------------------------------------------------------------------------------- /src/burn/drv/irem/d_m90.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/irem/d_m90.cpp -------------------------------------------------------------------------------- /src/burn/drv/irem/d_m92.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/irem/d_m92.cpp -------------------------------------------------------------------------------- /src/burn/drv/irem/irem_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/irem/irem_cpu.h -------------------------------------------------------------------------------- /src/burn/drv/konami/d_dbz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/konami/d_dbz.cpp -------------------------------------------------------------------------------- /src/burn/drv/konami/d_moo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/konami/d_moo.cpp -------------------------------------------------------------------------------- /src/burn/drv/konami/d_spy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/konami/d_spy.cpp -------------------------------------------------------------------------------- /src/burn/drv/konami/k007121.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/konami/k007121.h -------------------------------------------------------------------------------- /src/burn/drv/midway/dcs2k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/midway/dcs2k.cpp -------------------------------------------------------------------------------- /src/burn/drv/midway/dcs2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/midway/dcs2k.h -------------------------------------------------------------------------------- /src/burn/drv/midway/ide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/midway/ide.cpp -------------------------------------------------------------------------------- /src/burn/drv/midway/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/midway/ide.h -------------------------------------------------------------------------------- /src/burn/drv/msx/d_msx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/msx/d_msx.cpp -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neogeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/neogeo/neogeo.h -------------------------------------------------------------------------------- /src/burn/drv/nes/d_nes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/nes/d_nes.cpp -------------------------------------------------------------------------------- /src/burn/drv/pce/d_pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pce/d_pce.cpp -------------------------------------------------------------------------------- /src/burn/drv/pce/pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pce/pce.cpp -------------------------------------------------------------------------------- /src/burn/drv/pce/pce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pce/pce.h -------------------------------------------------------------------------------- /src/burn/drv/pgm/d_pgm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pgm/d_pgm.cpp -------------------------------------------------------------------------------- /src/burn/drv/pgm/pgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pgm/pgm.h -------------------------------------------------------------------------------- /src/burn/drv/pgm/pgm_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pgm/pgm_draw.cpp -------------------------------------------------------------------------------- /src/burn/drv/pgm/pgm_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pgm/pgm_run.cpp -------------------------------------------------------------------------------- /src/burn/drv/pre90s/d_gng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pre90s/d_gng.cpp -------------------------------------------------------------------------------- /src/burn/drv/pre90s/d_mcr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pre90s/d_mcr.cpp -------------------------------------------------------------------------------- /src/burn/drv/pre90s/d_sf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pre90s/d_sf.cpp -------------------------------------------------------------------------------- /src/burn/drv/pre90s/d_snk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pre90s/d_snk.cpp -------------------------------------------------------------------------------- /src/burn/drv/pre90s/d_sub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pre90s/d_sub.cpp -------------------------------------------------------------------------------- /src/burn/drv/pre90s/d_wiz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pre90s/d_wiz.cpp -------------------------------------------------------------------------------- /src/burn/drv/psikyo/psikyo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/psikyo/psikyo.h -------------------------------------------------------------------------------- /src/burn/drv/pst90s/d_ssv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/pst90s/d_ssv.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/d_bankp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/d_bankp.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/d_segae.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/d_segae.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/d_sys1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/d_sys1.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/d_sys18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/d_sys18.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/d_sys24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/d_sys24.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/d_turbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/d_turbo.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/d_xbrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/d_xbrd.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/d_ybrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/d_ybrd.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/fd1089.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/fd1089.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/fd1094.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/fd1094.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/fd1094.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/fd1094.h -------------------------------------------------------------------------------- /src/burn/drv/sega/mc8123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/mc8123.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/mc8123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/mc8123.h -------------------------------------------------------------------------------- /src/burn/drv/sega/sys16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/sys16.h -------------------------------------------------------------------------------- /src/burn/drv/sega/usb_snd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/usb_snd.cpp -------------------------------------------------------------------------------- /src/burn/drv/sega/usb_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sega/usb_snd.h -------------------------------------------------------------------------------- /src/burn/drv/sms/d_sms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/d_sms.cpp -------------------------------------------------------------------------------- /src/burn/drv/sms/sms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/sms.cpp -------------------------------------------------------------------------------- /src/burn/drv/sms/sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/sms.h -------------------------------------------------------------------------------- /src/burn/drv/sms/smsfmintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smsfmintf.h -------------------------------------------------------------------------------- /src/burn/drv/sms/smshvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smshvc.h -------------------------------------------------------------------------------- /src/burn/drv/sms/smspio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smspio.cpp -------------------------------------------------------------------------------- /src/burn/drv/sms/smspio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smspio.h -------------------------------------------------------------------------------- /src/burn/drv/sms/smsrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smsrender.h -------------------------------------------------------------------------------- /src/burn/drv/sms/smsshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smsshared.h -------------------------------------------------------------------------------- /src/burn/drv/sms/smssound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smssound.cpp -------------------------------------------------------------------------------- /src/burn/drv/sms/smssound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smssound.h -------------------------------------------------------------------------------- /src/burn/drv/sms/smssystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smssystem.h -------------------------------------------------------------------------------- /src/burn/drv/sms/smstms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smstms.cpp -------------------------------------------------------------------------------- /src/burn/drv/sms/smstms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smstms.h -------------------------------------------------------------------------------- /src/burn/drv/sms/smsvdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smsvdp.cpp -------------------------------------------------------------------------------- /src/burn/drv/sms/smsvdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/sms/smsvdp.h -------------------------------------------------------------------------------- /src/burn/drv/snes/d_snes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/snes/d_snes.cpp -------------------------------------------------------------------------------- /src/burn/drv/snes/snes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/snes/snes.h -------------------------------------------------------------------------------- /src/burn/drv/snes/snes_65816.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/burn/drv/snes/snes_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/snes/snes_io.cpp -------------------------------------------------------------------------------- /src/burn/drv/taito/cchip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/taito/cchip.cpp -------------------------------------------------------------------------------- /src/burn/drv/taito/cchip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/taito/cchip.h -------------------------------------------------------------------------------- /src/burn/drv/taito/d_qix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/taito/d_qix.cpp -------------------------------------------------------------------------------- /src/burn/drv/taito/d_ssrj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/taito/d_ssrj.cpp -------------------------------------------------------------------------------- /src/burn/drv/taito/d_tnzs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/taito/d_tnzs.cpp -------------------------------------------------------------------------------- /src/burn/drv/taito/taito.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/taito/taito.cpp -------------------------------------------------------------------------------- /src/burn/drv/taito/taito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/taito/taito.h -------------------------------------------------------------------------------- /src/burn/drv/taito/taito_ic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/drv/taito/taito_ic.h -------------------------------------------------------------------------------- /src/burn/hiscore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/hiscore.cpp -------------------------------------------------------------------------------- /src/burn/hiscore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/hiscore.h -------------------------------------------------------------------------------- /src/burn/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/load.cpp -------------------------------------------------------------------------------- /src/burn/snd/asteroids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/asteroids.cpp -------------------------------------------------------------------------------- /src/burn/snd/asteroids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/asteroids.h -------------------------------------------------------------------------------- /src/burn/snd/ay8910.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ay8910.c -------------------------------------------------------------------------------- /src/burn/snd/ay8910.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ay8910.h -------------------------------------------------------------------------------- /src/burn/snd/burn_md2612.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_md2612.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_md2612.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_md2612.h -------------------------------------------------------------------------------- /src/burn/snd/burn_y8950.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_y8950.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_y8950.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_y8950.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2151.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2151.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2203.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2203.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2203.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2203.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2413.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2413.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2413.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2608.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2608.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2608.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2608.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2610.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2610.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2610.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2610.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2612.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2612.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2612.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym2612.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ym3526.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym3526.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ym3526.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym3526.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ym3812.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym3812.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ym3812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ym3812.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ymf262.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ymf262.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ymf262.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ymf262.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ymf278b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ymf278b.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ymf278b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/burn_ymf278b.h -------------------------------------------------------------------------------- /src/burn/snd/bzone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/bzone.cpp -------------------------------------------------------------------------------- /src/burn/snd/bzone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/bzone.h -------------------------------------------------------------------------------- /src/burn/snd/c140.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/c140.cpp -------------------------------------------------------------------------------- /src/burn/snd/c140.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/c140.h -------------------------------------------------------------------------------- /src/burn/snd/c6280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/c6280.cpp -------------------------------------------------------------------------------- /src/burn/snd/c6280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/c6280.h -------------------------------------------------------------------------------- /src/burn/snd/dac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/dac.cpp -------------------------------------------------------------------------------- /src/burn/snd/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/dac.h -------------------------------------------------------------------------------- /src/burn/snd/es5506.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/es5506.cpp -------------------------------------------------------------------------------- /src/burn/snd/es5506.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/es5506.h -------------------------------------------------------------------------------- /src/burn/snd/es8712.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/es8712.cpp -------------------------------------------------------------------------------- /src/burn/snd/es8712.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/es8712.h -------------------------------------------------------------------------------- /src/burn/snd/flower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/flower.cpp -------------------------------------------------------------------------------- /src/burn/snd/flower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/flower.h -------------------------------------------------------------------------------- /src/burn/snd/flt_rc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/flt_rc.cpp -------------------------------------------------------------------------------- /src/burn/snd/flt_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/flt_rc.h -------------------------------------------------------------------------------- /src/burn/snd/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/fm.c -------------------------------------------------------------------------------- /src/burn/snd/fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/fm.h -------------------------------------------------------------------------------- /src/burn/snd/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/fmopl.c -------------------------------------------------------------------------------- /src/burn/snd/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/fmopl.h -------------------------------------------------------------------------------- /src/burn/snd/gaelco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/gaelco.cpp -------------------------------------------------------------------------------- /src/burn/snd/gaelco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/gaelco.h -------------------------------------------------------------------------------- /src/burn/snd/hc55516.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/hc55516.cpp -------------------------------------------------------------------------------- /src/burn/snd/hc55516.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/hc55516.h -------------------------------------------------------------------------------- /src/burn/snd/i5000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/i5000.cpp -------------------------------------------------------------------------------- /src/burn/snd/i5000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/i5000.h -------------------------------------------------------------------------------- /src/burn/snd/ics2115.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ics2115.cpp -------------------------------------------------------------------------------- /src/burn/snd/ics2115.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ics2115.h -------------------------------------------------------------------------------- /src/burn/snd/iremga20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/iremga20.cpp -------------------------------------------------------------------------------- /src/burn/snd/iremga20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/iremga20.h -------------------------------------------------------------------------------- /src/burn/snd/k005289.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/k005289.cpp -------------------------------------------------------------------------------- /src/burn/snd/k005289.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/k005289.h -------------------------------------------------------------------------------- /src/burn/snd/k007232.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/k007232.cpp -------------------------------------------------------------------------------- /src/burn/snd/k007232.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/k007232.h -------------------------------------------------------------------------------- /src/burn/snd/k051649.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/k051649.cpp -------------------------------------------------------------------------------- /src/burn/snd/k051649.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/k051649.h -------------------------------------------------------------------------------- /src/burn/snd/k053260.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/k053260.cpp -------------------------------------------------------------------------------- /src/burn/snd/k053260.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/k053260.h -------------------------------------------------------------------------------- /src/burn/snd/k054539.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/k054539.cpp -------------------------------------------------------------------------------- /src/burn/snd/k054539.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/k054539.h -------------------------------------------------------------------------------- /src/burn/snd/llander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/llander.cpp -------------------------------------------------------------------------------- /src/burn/snd/llander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/llander.h -------------------------------------------------------------------------------- /src/burn/snd/msm5205.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/msm5205.cpp -------------------------------------------------------------------------------- /src/burn/snd/msm5205.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/msm5205.h -------------------------------------------------------------------------------- /src/burn/snd/msm5232.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/msm5232.cpp -------------------------------------------------------------------------------- /src/burn/snd/msm5232.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/msm5232.h -------------------------------------------------------------------------------- /src/burn/snd/msm6295.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/msm6295.cpp -------------------------------------------------------------------------------- /src/burn/snd/msm6295.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/msm6295.h -------------------------------------------------------------------------------- /src/burn/snd/namco_snd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/namco_snd.cpp -------------------------------------------------------------------------------- /src/burn/snd/namco_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/namco_snd.h -------------------------------------------------------------------------------- /src/burn/snd/nes_apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/nes_apu.cpp -------------------------------------------------------------------------------- /src/burn/snd/nes_apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/nes_apu.h -------------------------------------------------------------------------------- /src/burn/snd/nes_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/nes_defs.h -------------------------------------------------------------------------------- /src/burn/snd/phoenixsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/phoenixsound.cpp -------------------------------------------------------------------------------- /src/burn/snd/phoenixsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/phoenixsound.h -------------------------------------------------------------------------------- /src/burn/snd/pleiadssound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/pleiadssound.cpp -------------------------------------------------------------------------------- /src/burn/snd/pleiadssound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/pleiadssound.h -------------------------------------------------------------------------------- /src/burn/snd/pokey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/pokey.cpp -------------------------------------------------------------------------------- /src/burn/snd/pokey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/pokey.h -------------------------------------------------------------------------------- /src/burn/snd/redbaron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/redbaron.cpp -------------------------------------------------------------------------------- /src/burn/snd/redbaron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/redbaron.h -------------------------------------------------------------------------------- /src/burn/snd/rescap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/rescap.h -------------------------------------------------------------------------------- /src/burn/snd/rf5c68.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/rf5c68.cpp -------------------------------------------------------------------------------- /src/burn/snd/rf5c68.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/rf5c68.h -------------------------------------------------------------------------------- /src/burn/snd/s14001a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/s14001a.cpp -------------------------------------------------------------------------------- /src/burn/snd/s14001a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/s14001a.h -------------------------------------------------------------------------------- /src/burn/snd/saa1099.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/saa1099.cpp -------------------------------------------------------------------------------- /src/burn/snd/saa1099.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/saa1099.h -------------------------------------------------------------------------------- /src/burn/snd/samples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/samples.cpp -------------------------------------------------------------------------------- /src/burn/snd/samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/samples.h -------------------------------------------------------------------------------- /src/burn/snd/segapcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/segapcm.cpp -------------------------------------------------------------------------------- /src/burn/snd/segapcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/segapcm.h -------------------------------------------------------------------------------- /src/burn/snd/sn76477.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/sn76477.cpp -------------------------------------------------------------------------------- /src/burn/snd/sn76477.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/sn76477.h -------------------------------------------------------------------------------- /src/burn/snd/sn76496.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/sn76496.cpp -------------------------------------------------------------------------------- /src/burn/snd/sn76496.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/sn76496.h -------------------------------------------------------------------------------- /src/burn/snd/snk6502_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/snk6502_sound.h -------------------------------------------------------------------------------- /src/burn/snd/sp0250.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/sp0250.cpp -------------------------------------------------------------------------------- /src/burn/snd/sp0250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/sp0250.h -------------------------------------------------------------------------------- /src/burn/snd/sp0256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/sp0256.cpp -------------------------------------------------------------------------------- /src/burn/snd/sp0256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/sp0256.h -------------------------------------------------------------------------------- /src/burn/snd/tms36xx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/tms36xx.cpp -------------------------------------------------------------------------------- /src/burn/snd/tms36xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/tms36xx.h -------------------------------------------------------------------------------- /src/burn/snd/tms5110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/tms5110.cpp -------------------------------------------------------------------------------- /src/burn/snd/tms5110.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/tms5110.h -------------------------------------------------------------------------------- /src/burn/snd/tms5110_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/tms5110_tables.h -------------------------------------------------------------------------------- /src/burn/snd/tms5220.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/tms5220.cpp -------------------------------------------------------------------------------- /src/burn/snd/tms5220.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/tms5220.h -------------------------------------------------------------------------------- /src/burn/snd/tms5220_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/tms5220_tables.h -------------------------------------------------------------------------------- /src/burn/snd/upd7759.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/upd7759.cpp -------------------------------------------------------------------------------- /src/burn/snd/upd7759.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/upd7759.h -------------------------------------------------------------------------------- /src/burn/snd/vlm5030.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/vlm5030.cpp -------------------------------------------------------------------------------- /src/burn/snd/vlm5030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/vlm5030.h -------------------------------------------------------------------------------- /src/burn/snd/wiping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/wiping.cpp -------------------------------------------------------------------------------- /src/burn/snd/wiping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/wiping.h -------------------------------------------------------------------------------- /src/burn/snd/x1010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/x1010.cpp -------------------------------------------------------------------------------- /src/burn/snd/x1010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/x1010.h -------------------------------------------------------------------------------- /src/burn/snd/ym2151.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ym2151.c -------------------------------------------------------------------------------- /src/burn/snd/ym2151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ym2151.h -------------------------------------------------------------------------------- /src/burn/snd/ym2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ym2413.c -------------------------------------------------------------------------------- /src/burn/snd/ym2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ym2413.h -------------------------------------------------------------------------------- /src/burn/snd/ym2612.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ym2612.c -------------------------------------------------------------------------------- /src/burn/snd/ym2612.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ym2612.h -------------------------------------------------------------------------------- /src/burn/snd/ymdeltat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ymdeltat.c -------------------------------------------------------------------------------- /src/burn/snd/ymdeltat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ymdeltat.h -------------------------------------------------------------------------------- /src/burn/snd/ymf262.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ymf262.cpp -------------------------------------------------------------------------------- /src/burn/snd/ymf262.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ymf262.h -------------------------------------------------------------------------------- /src/burn/snd/ymf278b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ymf278b.c -------------------------------------------------------------------------------- /src/burn/snd/ymf278b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ymf278b.h -------------------------------------------------------------------------------- /src/burn/snd/ymz280b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ymz280b.cpp -------------------------------------------------------------------------------- /src/burn/snd/ymz280b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/snd/ymz280b.h -------------------------------------------------------------------------------- /src/burn/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/state.h -------------------------------------------------------------------------------- /src/burn/stdfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/stdfunc.h -------------------------------------------------------------------------------- /src/burn/tilemap_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/tilemap_generic.cpp -------------------------------------------------------------------------------- /src/burn/tilemap_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/tilemap_generic.h -------------------------------------------------------------------------------- /src/burn/tiles_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/tiles_generic.cpp -------------------------------------------------------------------------------- /src/burn/tiles_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/tiles_generic.h -------------------------------------------------------------------------------- /src/burn/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/timer.cpp -------------------------------------------------------------------------------- /src/burn/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/timer.h -------------------------------------------------------------------------------- /src/burn/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/vector.cpp -------------------------------------------------------------------------------- /src/burn/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/vector.h -------------------------------------------------------------------------------- /src/burn/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burn/version.h -------------------------------------------------------------------------------- /src/burner/burner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/burner.h -------------------------------------------------------------------------------- /src/burner/conc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/conc.cpp -------------------------------------------------------------------------------- /src/burner/cong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/cong.cpp -------------------------------------------------------------------------------- /src/burner/dat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/dat.cpp -------------------------------------------------------------------------------- /src/burner/dynhuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/dynhuff.cpp -------------------------------------------------------------------------------- /src/burner/dynhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/dynhuff.h -------------------------------------------------------------------------------- /src/burner/gamc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/gamc.cpp -------------------------------------------------------------------------------- /src/burner/gameinp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/gameinp.h -------------------------------------------------------------------------------- /src/burner/gami.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/gami.cpp -------------------------------------------------------------------------------- /src/burner/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/image.cpp -------------------------------------------------------------------------------- /src/burner/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/ioapi.c -------------------------------------------------------------------------------- /src/burner/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/ioapi.h -------------------------------------------------------------------------------- /src/burner/luaengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/luaengine.cpp -------------------------------------------------------------------------------- /src/burner/luaengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/luaengine.h -------------------------------------------------------------------------------- /src/burner/luasav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/luasav.cpp -------------------------------------------------------------------------------- /src/burner/luasav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/luasav.h -------------------------------------------------------------------------------- /src/burner/macos/FBImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/macos/FBImporter.h -------------------------------------------------------------------------------- /src/burner/macos/FBImporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/macos/FBImporter.m -------------------------------------------------------------------------------- /src/burner/macos/FBScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/macos/FBScanner.h -------------------------------------------------------------------------------- /src/burner/macos/FBScanner.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/macos/FBScanner.mm -------------------------------------------------------------------------------- /src/burner/macos/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/macos/main.cpp -------------------------------------------------------------------------------- /src/burner/macos/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/macos/main.h -------------------------------------------------------------------------------- /src/burner/macos/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/macos/misc.cpp -------------------------------------------------------------------------------- /src/burner/macos/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/macos/tchar.h -------------------------------------------------------------------------------- /src/burner/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/misc.cpp -------------------------------------------------------------------------------- /src/burner/neocdlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/neocdlist.h -------------------------------------------------------------------------------- /src/burner/pi/main_pi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/pi/main_pi.cpp -------------------------------------------------------------------------------- /src/burner/pi/run_pi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/pi/run_pi.cpp -------------------------------------------------------------------------------- /src/burner/psp/burner_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/burner_psp.h -------------------------------------------------------------------------------- /src/burner/psp/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/config.cpp -------------------------------------------------------------------------------- /src/burner/psp/drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/drv.cpp -------------------------------------------------------------------------------- /src/burner/psp/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/font.c -------------------------------------------------------------------------------- /src/burner/psp/inpdipsw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/inpdipsw.cpp -------------------------------------------------------------------------------- /src/burner/psp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/main.cpp -------------------------------------------------------------------------------- /src/burner/psp/pg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/pg.c -------------------------------------------------------------------------------- /src/burner/psp/pg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/pg.h -------------------------------------------------------------------------------- /src/burner/psp/run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/run.cpp -------------------------------------------------------------------------------- /src/burner/psp/select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/select.cpp -------------------------------------------------------------------------------- /src/burner/psp/stated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/stated.cpp -------------------------------------------------------------------------------- /src/burner/psp/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/psp/tchar.h -------------------------------------------------------------------------------- /src/burner/qt/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/aboutdialog.cpp -------------------------------------------------------------------------------- /src/burner/qt/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/aboutdialog.h -------------------------------------------------------------------------------- /src/burner/qt/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/aboutdialog.ui -------------------------------------------------------------------------------- /src/burner/qt/burner_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/burner_qt.h -------------------------------------------------------------------------------- /src/burner/qt/bzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/bzip.cpp -------------------------------------------------------------------------------- /src/burner/qt/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/driver.cpp -------------------------------------------------------------------------------- /src/burner/qt/emuworker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/emuworker.cpp -------------------------------------------------------------------------------- /src/burner/qt/emuworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/emuworker.h -------------------------------------------------------------------------------- /src/burner/qt/inputdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/inputdialog.cpp -------------------------------------------------------------------------------- /src/burner/qt/inputdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/inputdialog.h -------------------------------------------------------------------------------- /src/burner/qt/inputdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/inputdialog.ui -------------------------------------------------------------------------------- /src/burner/qt/logdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/logdialog.cpp -------------------------------------------------------------------------------- /src/burner/qt/logdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/logdialog.h -------------------------------------------------------------------------------- /src/burner/qt/logdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/logdialog.ui -------------------------------------------------------------------------------- /src/burner/qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/main.cpp -------------------------------------------------------------------------------- /src/burner/qt/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/mainwindow.cpp -------------------------------------------------------------------------------- /src/burner/qt/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/mainwindow.h -------------------------------------------------------------------------------- /src/burner/qt/neocdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/neocdlist.cpp -------------------------------------------------------------------------------- /src/burner/qt/oglviewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/oglviewport.cpp -------------------------------------------------------------------------------- /src/burner/qt/oglviewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/oglviewport.h -------------------------------------------------------------------------------- /src/burner/qt/progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/progress.cpp -------------------------------------------------------------------------------- /src/burner/qt/qutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/qutil.cpp -------------------------------------------------------------------------------- /src/burner/qt/qutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/qutil.h -------------------------------------------------------------------------------- /src/burner/qt/romdirsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/romdirsdialog.h -------------------------------------------------------------------------------- /src/burner/qt/rominfodialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/rominfodialog.h -------------------------------------------------------------------------------- /src/burner/qt/romscandialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/romscandialog.h -------------------------------------------------------------------------------- /src/burner/qt/rscr.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/rscr.qrc -------------------------------------------------------------------------------- /src/burner/qt/selectdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/selectdialog.h -------------------------------------------------------------------------------- /src/burner/qt/selectdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/selectdialog.ui -------------------------------------------------------------------------------- /src/burner/qt/stringset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/stringset.cpp -------------------------------------------------------------------------------- /src/burner/qt/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/qt/tchar.h -------------------------------------------------------------------------------- /src/burner/resource/about.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/resource/about.bmp -------------------------------------------------------------------------------- /src/burner/resource/fba.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/resource/fba.ico -------------------------------------------------------------------------------- /src/burner/resource/misc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/resource/misc.bmp -------------------------------------------------------------------------------- /src/burner/sdl/burner_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/burner_sdl.h -------------------------------------------------------------------------------- /src/burner/sdl/bzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/bzip.cpp -------------------------------------------------------------------------------- /src/burner/sdl/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/config.cpp -------------------------------------------------------------------------------- /src/burner/sdl/drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/drv.cpp -------------------------------------------------------------------------------- /src/burner/sdl/inpdipsw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/inpdipsw.cpp -------------------------------------------------------------------------------- /src/burner/sdl/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/input.cpp -------------------------------------------------------------------------------- /src/burner/sdl/input_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/input_sdl2.cpp -------------------------------------------------------------------------------- /src/burner/sdl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/main.cpp -------------------------------------------------------------------------------- /src/burner/sdl/media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/media.cpp -------------------------------------------------------------------------------- /src/burner/sdl/neocdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/neocdlist.cpp -------------------------------------------------------------------------------- /src/burner/sdl/replay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/replay.cpp -------------------------------------------------------------------------------- /src/burner/sdl/run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/run.cpp -------------------------------------------------------------------------------- /src/burner/sdl/scrn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/scrn.cpp -------------------------------------------------------------------------------- /src/burner/sdl/sdl2_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/sdl2_gui.cpp -------------------------------------------------------------------------------- /src/burner/sdl/sdl2_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/sdl2_gui.h -------------------------------------------------------------------------------- /src/burner/sdl/sdl2_inprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/sdl2_inprint.h -------------------------------------------------------------------------------- /src/burner/sdl/stated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/stated.cpp -------------------------------------------------------------------------------- /src/burner/sdl/stringset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/stringset.cpp -------------------------------------------------------------------------------- /src/burner/sdl/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sdl/tchar.h -------------------------------------------------------------------------------- /src/burner/sshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/sshot.cpp -------------------------------------------------------------------------------- /src/burner/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/state.cpp -------------------------------------------------------------------------------- /src/burner/statec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/statec.cpp -------------------------------------------------------------------------------- /src/burner/title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/title.h -------------------------------------------------------------------------------- /src/burner/un7z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/un7z.cpp -------------------------------------------------------------------------------- /src/burner/un7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/un7z.h -------------------------------------------------------------------------------- /src/burner/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/unzip.c -------------------------------------------------------------------------------- /src/burner/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/unzip.h -------------------------------------------------------------------------------- /src/burner/win32/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/about.cpp -------------------------------------------------------------------------------- /src/burner/win32/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/app.rc -------------------------------------------------------------------------------- /src/burner/win32/avi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/avi.cpp -------------------------------------------------------------------------------- /src/burner/win32/bzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/bzip.cpp -------------------------------------------------------------------------------- /src/burner/win32/cona.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/cona.cpp -------------------------------------------------------------------------------- /src/burner/win32/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/debugger.cpp -------------------------------------------------------------------------------- /src/burner/win32/drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/drv.cpp -------------------------------------------------------------------------------- /src/burner/win32/dynhuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/dynhuff.cpp -------------------------------------------------------------------------------- /src/burner/win32/dynhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/dynhuff.h -------------------------------------------------------------------------------- /src/burner/win32/fbn_ggpo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/fbn_ggpo.cpp -------------------------------------------------------------------------------- /src/burner/win32/gameinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/gameinfo.cpp -------------------------------------------------------------------------------- /src/burner/win32/inpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/inpc.cpp -------------------------------------------------------------------------------- /src/burner/win32/inpcheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/inpcheat.cpp -------------------------------------------------------------------------------- /src/burner/win32/inpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/inpd.cpp -------------------------------------------------------------------------------- /src/burner/win32/inpdipsw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/inpdipsw.cpp -------------------------------------------------------------------------------- /src/burner/win32/inps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/inps.cpp -------------------------------------------------------------------------------- /src/burner/win32/localise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/localise.cpp -------------------------------------------------------------------------------- /src/burner/win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/main.cpp -------------------------------------------------------------------------------- /src/burner/win32/media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/media.cpp -------------------------------------------------------------------------------- /src/burner/win32/memcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/memcard.cpp -------------------------------------------------------------------------------- /src/burner/win32/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/menu.cpp -------------------------------------------------------------------------------- /src/burner/win32/neocdsel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/neocdsel.cpp -------------------------------------------------------------------------------- /src/burner/win32/numdial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/numdial.cpp -------------------------------------------------------------------------------- /src/burner/win32/progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/progress.cpp -------------------------------------------------------------------------------- /src/burner/win32/replay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/replay.cpp -------------------------------------------------------------------------------- /src/burner/win32/res.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/res.cpp -------------------------------------------------------------------------------- /src/burner/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/resource.h -------------------------------------------------------------------------------- /src/burner/win32/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/resource.rc -------------------------------------------------------------------------------- /src/burner/win32/roms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/roms.cpp -------------------------------------------------------------------------------- /src/burner/win32/run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/run.cpp -------------------------------------------------------------------------------- /src/burner/win32/scrn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/scrn.cpp -------------------------------------------------------------------------------- /src/burner/win32/sel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/sel.cpp -------------------------------------------------------------------------------- /src/burner/win32/sfactd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/sfactd.cpp -------------------------------------------------------------------------------- /src/burner/win32/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/splash.cpp -------------------------------------------------------------------------------- /src/burner/win32/stated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/stated.cpp -------------------------------------------------------------------------------- /src/burner/win32/string.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/string.rc -------------------------------------------------------------------------------- /src/burner/win32/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/version.rc -------------------------------------------------------------------------------- /src/burner/win32/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/win32/wave.cpp -------------------------------------------------------------------------------- /src/burner/zipfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/burner/zipfn.cpp -------------------------------------------------------------------------------- /src/cpu/a68k/fba_make68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/a68k/fba_make68k.c -------------------------------------------------------------------------------- /src/cpu/a68k/mips/a68k.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/a68k/mips/a68k.s -------------------------------------------------------------------------------- /src/cpu/adsp2100/2100ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/adsp2100/2100ops.c -------------------------------------------------------------------------------- /src/cpu/adsp2100/adsp2100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/adsp2100/adsp2100.h -------------------------------------------------------------------------------- /src/cpu/adsp2100_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/adsp2100_intf.cpp -------------------------------------------------------------------------------- /src/cpu/adsp2100_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/adsp2100_intf.h -------------------------------------------------------------------------------- /src/cpu/arm/arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/arm/arm.cpp -------------------------------------------------------------------------------- /src/cpu/arm7/arm7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/arm7/arm7.cpp -------------------------------------------------------------------------------- /src/cpu/arm7/arm7core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/arm7/arm7core.c -------------------------------------------------------------------------------- /src/cpu/arm7/arm7core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/arm7/arm7core.h -------------------------------------------------------------------------------- /src/cpu/arm7/arm7exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/arm7/arm7exec.c -------------------------------------------------------------------------------- /src/cpu/arm7_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/arm7_intf.cpp -------------------------------------------------------------------------------- /src/cpu/arm7_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/arm7_intf.h -------------------------------------------------------------------------------- /src/cpu/arm_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/arm_intf.cpp -------------------------------------------------------------------------------- /src/cpu/arm_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/arm_intf.h -------------------------------------------------------------------------------- /src/cpu/e132xs/e132xs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/e132xs/e132xs.cpp -------------------------------------------------------------------------------- /src/cpu/e132xs/e132xs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/e132xs/e132xs.h -------------------------------------------------------------------------------- /src/cpu/e132xs/e132xsop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/e132xs/e132xsop.inc -------------------------------------------------------------------------------- /src/cpu/e132xs_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/e132xs_intf.h -------------------------------------------------------------------------------- /src/cpu/h6280/h6280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/h6280/h6280.cpp -------------------------------------------------------------------------------- /src/cpu/h6280/h6280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/h6280/h6280.h -------------------------------------------------------------------------------- /src/cpu/h6280/h6280ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/h6280/h6280ops.h -------------------------------------------------------------------------------- /src/cpu/h6280/tblh6280.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/h6280/tblh6280.c -------------------------------------------------------------------------------- /src/cpu/h6280_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/h6280_intf.cpp -------------------------------------------------------------------------------- /src/cpu/h6280_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/h6280_intf.h -------------------------------------------------------------------------------- /src/cpu/hd6309/6309ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/hd6309/6309ops.c -------------------------------------------------------------------------------- /src/cpu/hd6309/6309tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/hd6309/6309tbl.c -------------------------------------------------------------------------------- /src/cpu/hd6309/hd6309.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/hd6309/hd6309.cpp -------------------------------------------------------------------------------- /src/cpu/hd6309/hd6309.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/hd6309/hd6309.h -------------------------------------------------------------------------------- /src/cpu/hd6309_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/hd6309_intf.cpp -------------------------------------------------------------------------------- /src/cpu/hd6309_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/hd6309_intf.h -------------------------------------------------------------------------------- /src/cpu/i8039/i8039.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/i8039/i8039.cpp -------------------------------------------------------------------------------- /src/cpu/i8039/i8039.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/i8039/i8039.h -------------------------------------------------------------------------------- /src/cpu/i8051/mcs51.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/i8051/mcs51.cpp -------------------------------------------------------------------------------- /src/cpu/i8051/mcs51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/i8051/mcs51.h -------------------------------------------------------------------------------- /src/cpu/i8051/mcs51ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/i8051/mcs51ops.c -------------------------------------------------------------------------------- /src/cpu/i8x41/8x41dasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/i8x41/8x41dasm.c -------------------------------------------------------------------------------- /src/cpu/i8x41/i8x41.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/i8x41/i8x41.cpp -------------------------------------------------------------------------------- /src/cpu/i8x41/i8x41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/i8x41/i8x41.h -------------------------------------------------------------------------------- /src/cpu/konami/konami.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/konami/konami.cpp -------------------------------------------------------------------------------- /src/cpu/konami/konami.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/konami/konami.h -------------------------------------------------------------------------------- /src/cpu/konami/konamops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/konami/konamops.c -------------------------------------------------------------------------------- /src/cpu/konami/konamtbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/konami/konamtbl.c -------------------------------------------------------------------------------- /src/cpu/konami_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/konami_intf.cpp -------------------------------------------------------------------------------- /src/cpu/konami_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/konami_intf.h -------------------------------------------------------------------------------- /src/cpu/m6502/ill02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/ill02.h -------------------------------------------------------------------------------- /src/cpu/m6502/m6502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/m6502.cpp -------------------------------------------------------------------------------- /src/cpu/m6502/m6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/m6502.h -------------------------------------------------------------------------------- /src/cpu/m6502/ops02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/ops02.h -------------------------------------------------------------------------------- /src/cpu/m6502/opsc02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/opsc02.h -------------------------------------------------------------------------------- /src/cpu/m6502/opsn2a03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/opsn2a03.h -------------------------------------------------------------------------------- /src/cpu/m6502/t6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/t6502.c -------------------------------------------------------------------------------- /src/cpu/m6502/t65c02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/t65c02.c -------------------------------------------------------------------------------- /src/cpu/m6502/t65sc02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/t65sc02.c -------------------------------------------------------------------------------- /src/cpu/m6502/tdeco16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/tdeco16.c -------------------------------------------------------------------------------- /src/cpu/m6502/tn2a03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502/tn2a03.c -------------------------------------------------------------------------------- /src/cpu/m6502_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502_intf.cpp -------------------------------------------------------------------------------- /src/cpu/m6502_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6502_intf.h -------------------------------------------------------------------------------- /src/cpu/m6800/6800ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6800/6800ops.c -------------------------------------------------------------------------------- /src/cpu/m6800/6800tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6800/6800tbl.c -------------------------------------------------------------------------------- /src/cpu/m6800/m6800.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6800/m6800.cpp -------------------------------------------------------------------------------- /src/cpu/m6800/m6800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6800/m6800.h -------------------------------------------------------------------------------- /src/cpu/m68000_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68000_debug.h -------------------------------------------------------------------------------- /src/cpu/m68000_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68000_intf.cpp -------------------------------------------------------------------------------- /src/cpu/m68000_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68000_intf.h -------------------------------------------------------------------------------- /src/cpu/m6800_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6800_intf.cpp -------------------------------------------------------------------------------- /src/cpu/m6800_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6800_intf.h -------------------------------------------------------------------------------- /src/cpu/m6805/6805ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6805/6805ops.c -------------------------------------------------------------------------------- /src/cpu/m6805/m6805.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6805/m6805.cpp -------------------------------------------------------------------------------- /src/cpu/m6805/m6805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6805/m6805.h -------------------------------------------------------------------------------- /src/cpu/m6805_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6805_intf.cpp -------------------------------------------------------------------------------- /src/cpu/m6805_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6805_intf.h -------------------------------------------------------------------------------- /src/cpu/m6809/6809ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6809/6809ops.c -------------------------------------------------------------------------------- /src/cpu/m6809/6809tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6809/6809tbl.c -------------------------------------------------------------------------------- /src/cpu/m6809/m6809.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6809/m6809.cpp -------------------------------------------------------------------------------- /src/cpu/m6809/m6809.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6809/m6809.h -------------------------------------------------------------------------------- /src/cpu/m6809_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6809_intf.cpp -------------------------------------------------------------------------------- /src/cpu/m6809_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m6809_intf.h -------------------------------------------------------------------------------- /src/cpu/m68k/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68k/m68k.h -------------------------------------------------------------------------------- /src/cpu/m68k/m68k_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68k/m68k_in.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68k/m68kconf.h -------------------------------------------------------------------------------- /src/cpu/m68k/m68kcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68k/m68kcpu.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68k/m68kcpu.h -------------------------------------------------------------------------------- /src/cpu/m68k/m68kdasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68k/m68kdasm.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kfpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68k/m68kfpu.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kmake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/m68k/m68kmake.c -------------------------------------------------------------------------------- /src/cpu/mips3/cop0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/mips3/cop0.cpp -------------------------------------------------------------------------------- /src/cpu/mips3/cop1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/mips3/cop1.cpp -------------------------------------------------------------------------------- /src/cpu/mips3/mips3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/mips3/mips3.cpp -------------------------------------------------------------------------------- /src/cpu/mips3/mips3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/mips3/mips3.h -------------------------------------------------------------------------------- /src/cpu/mips3/mips3_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/mips3/mips3_misc.h -------------------------------------------------------------------------------- /src/cpu/mips3/mips3_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/mips3/mips3_rw.h -------------------------------------------------------------------------------- /src/cpu/mips3/mips3_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/mips3/mips3_shift.h -------------------------------------------------------------------------------- /src/cpu/mips3/mipsdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/mips3/mipsdef.h -------------------------------------------------------------------------------- /src/cpu/mips3_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/mips3_intf.cpp -------------------------------------------------------------------------------- /src/cpu/mips3_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/mips3_intf.h -------------------------------------------------------------------------------- /src/cpu/nec/nec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/nec.cpp -------------------------------------------------------------------------------- /src/cpu/nec/nec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/nec.h -------------------------------------------------------------------------------- /src/cpu/nec/necea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/necea.h -------------------------------------------------------------------------------- /src/cpu/nec/necinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/necinstr.c -------------------------------------------------------------------------------- /src/cpu/nec/necinstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/necinstr.h -------------------------------------------------------------------------------- /src/cpu/nec/necmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/necmacro.h -------------------------------------------------------------------------------- /src/cpu/nec/necmodrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/necmodrm.h -------------------------------------------------------------------------------- /src/cpu/nec/necpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/necpriv.h -------------------------------------------------------------------------------- /src/cpu/nec/v25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/v25.cpp -------------------------------------------------------------------------------- /src/cpu/nec/v25instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/v25instr.c -------------------------------------------------------------------------------- /src/cpu/nec/v25instr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/v25instr.h -------------------------------------------------------------------------------- /src/cpu/nec/v25priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/v25priv.h -------------------------------------------------------------------------------- /src/cpu/nec/v25sfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec/v25sfr.c -------------------------------------------------------------------------------- /src/cpu/nec_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec_intf.cpp -------------------------------------------------------------------------------- /src/cpu/nec_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/nec_intf.h -------------------------------------------------------------------------------- /src/cpu/pic16c5x/pic16c5x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/pic16c5x/pic16c5x.h -------------------------------------------------------------------------------- /src/cpu/pic16c5x_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/pic16c5x_intf.cpp -------------------------------------------------------------------------------- /src/cpu/pic16c5x_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/pic16c5x_intf.h -------------------------------------------------------------------------------- /src/cpu/s2650/s2650.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/s2650/s2650.cpp -------------------------------------------------------------------------------- /src/cpu/s2650/s2650.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/s2650/s2650.h -------------------------------------------------------------------------------- /src/cpu/s2650_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/s2650_intf.cpp -------------------------------------------------------------------------------- /src/cpu/s2650_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/s2650_intf.h -------------------------------------------------------------------------------- /src/cpu/sh2/sh2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/sh2/sh2.cpp -------------------------------------------------------------------------------- /src/cpu/sh2_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/sh2_intf.h -------------------------------------------------------------------------------- /src/cpu/tlcs90/tlcs90.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tlcs90/tlcs90.cpp -------------------------------------------------------------------------------- /src/cpu/tlcs90_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tlcs90_intf.cpp -------------------------------------------------------------------------------- /src/cpu/tlcs90_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tlcs90_intf.h -------------------------------------------------------------------------------- /src/cpu/tms32010/tms32010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms32010/tms32010.h -------------------------------------------------------------------------------- /src/cpu/tms34/34010fld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34/34010fld.c -------------------------------------------------------------------------------- /src/cpu/tms34/34010gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34/34010gfx.c -------------------------------------------------------------------------------- /src/cpu/tms34/34010ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34/34010ops.c -------------------------------------------------------------------------------- /src/cpu/tms34/34010ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34/34010ops.h -------------------------------------------------------------------------------- /src/cpu/tms34/34010tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34/34010tbl.c -------------------------------------------------------------------------------- /src/cpu/tms34/tms34010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34/tms34010.cpp -------------------------------------------------------------------------------- /src/cpu/tms34/tms34010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34/tms34010.h -------------------------------------------------------------------------------- /src/cpu/tms34010/tms34010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34010/tms34010.h -------------------------------------------------------------------------------- /src/cpu/tms34010_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34010_intf.cpp -------------------------------------------------------------------------------- /src/cpu/tms34010_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34010_intf.h -------------------------------------------------------------------------------- /src/cpu/tms34_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34_intf.cpp -------------------------------------------------------------------------------- /src/cpu/tms34_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/tms34_intf.h -------------------------------------------------------------------------------- /src/cpu/upd7725/upd7725.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/upd7725/upd7725.cpp -------------------------------------------------------------------------------- /src/cpu/upd7725/upd7725.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/upd7725/upd7725.h -------------------------------------------------------------------------------- /src/cpu/upd7810/7810dasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/upd7810/7810dasm.c -------------------------------------------------------------------------------- /src/cpu/upd7810/7810ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/upd7810/7810ops.c -------------------------------------------------------------------------------- /src/cpu/upd7810/7810tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/upd7810/7810tbl.c -------------------------------------------------------------------------------- /src/cpu/upd7810/upd7810.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/upd7810/upd7810.cpp -------------------------------------------------------------------------------- /src/cpu/upd7810/upd7810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/upd7810/upd7810.h -------------------------------------------------------------------------------- /src/cpu/upd7810_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/upd7810_intf.h -------------------------------------------------------------------------------- /src/cpu/v60/am.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/am.c -------------------------------------------------------------------------------- /src/cpu/v60/am1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/am1.c -------------------------------------------------------------------------------- /src/cpu/v60/am2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/am2.c -------------------------------------------------------------------------------- /src/cpu/v60/am3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/am3.c -------------------------------------------------------------------------------- /src/cpu/v60/op12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/op12.c -------------------------------------------------------------------------------- /src/cpu/v60/op2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/op2.c -------------------------------------------------------------------------------- /src/cpu/v60/op3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/op3.c -------------------------------------------------------------------------------- /src/cpu/v60/op4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/op4.c -------------------------------------------------------------------------------- /src/cpu/v60/op5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/op5.c -------------------------------------------------------------------------------- /src/cpu/v60/op6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/op6.c -------------------------------------------------------------------------------- /src/cpu/v60/op7a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/op7a.c -------------------------------------------------------------------------------- /src/cpu/v60/optable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/optable.c -------------------------------------------------------------------------------- /src/cpu/v60/v60.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/v60.cpp -------------------------------------------------------------------------------- /src/cpu/v60/v60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/v60.h -------------------------------------------------------------------------------- /src/cpu/v60/v60d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/v60d.c -------------------------------------------------------------------------------- /src/cpu/v60/v60mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60/v60mem.c -------------------------------------------------------------------------------- /src/cpu/v60_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/v60_intf.h -------------------------------------------------------------------------------- /src/cpu/z180/z180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180.cpp -------------------------------------------------------------------------------- /src/cpu/z180/z180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180.h -------------------------------------------------------------------------------- /src/cpu/z180/z180cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180cb.c -------------------------------------------------------------------------------- /src/cpu/z180/z180daa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180daa.h -------------------------------------------------------------------------------- /src/cpu/z180/z180dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180dd.c -------------------------------------------------------------------------------- /src/cpu/z180/z180ed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180ed.c -------------------------------------------------------------------------------- /src/cpu/z180/z180fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180fd.c -------------------------------------------------------------------------------- /src/cpu/z180/z180op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180op.c -------------------------------------------------------------------------------- /src/cpu/z180/z180ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180ops.h -------------------------------------------------------------------------------- /src/cpu/z180/z180tbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180tbl.h -------------------------------------------------------------------------------- /src/cpu/z180/z180xy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180/z180xy.c -------------------------------------------------------------------------------- /src/cpu/z180_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180_intf.cpp -------------------------------------------------------------------------------- /src/cpu/z180_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z180_intf.h -------------------------------------------------------------------------------- /src/cpu/z80/z80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z80/z80.cpp -------------------------------------------------------------------------------- /src/cpu/z80/z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z80/z80.h -------------------------------------------------------------------------------- /src/cpu/z80/z80ctc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z80/z80ctc.cpp -------------------------------------------------------------------------------- /src/cpu/z80/z80ctc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z80/z80ctc.h -------------------------------------------------------------------------------- /src/cpu/z80/z80daisy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z80/z80daisy.cpp -------------------------------------------------------------------------------- /src/cpu/z80/z80daisy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z80/z80daisy.h -------------------------------------------------------------------------------- /src/cpu/z80/z80pio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z80/z80pio.cpp -------------------------------------------------------------------------------- /src/cpu/z80/z80pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z80/z80pio.h -------------------------------------------------------------------------------- /src/cpu/z80_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z80_intf.cpp -------------------------------------------------------------------------------- /src/cpu/z80_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/cpu/z80_intf.h -------------------------------------------------------------------------------- /src/dep/generated/detector_buffers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dep/generated/detector_loaders.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/7z.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/7zBuf.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/7zBuf.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/7zBuf2.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/7zCrc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/7zCrc.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/7zDec.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/7zFile.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/7zFile.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Aes.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Aes.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/AesOpt.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Alloc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Alloc.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Bcj2.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Bcj2.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Bra.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Bra.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Bra86.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Delta.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Delta.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/LzFind.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/LzFind.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/LzHash.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Lzma86.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Ppmd.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Ppmd7.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Ppmd7.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Sha256.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Sha256.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Sort.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Sort.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Xz.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/Xz.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/XzDec.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/XzEnc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/XzEnc.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lib7z/XzIn.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/_fba_lzmasdk_v16.04.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dep/libs/libpng/_fba_libpng_v1635.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dep/libs/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/libpng/png.c -------------------------------------------------------------------------------- /src/dep/libs/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/libpng/png.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lapi.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lapi.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lauxlib.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lauxlib.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lbaselib.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lcode.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lcode.h -------------------------------------------------------------------------------- /src/dep/libs/lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ldblib.c -------------------------------------------------------------------------------- /src/dep/libs/lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ldebug.c -------------------------------------------------------------------------------- /src/dep/libs/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ldebug.h -------------------------------------------------------------------------------- /src/dep/libs/lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ldo.c -------------------------------------------------------------------------------- /src/dep/libs/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ldo.h -------------------------------------------------------------------------------- /src/dep/libs/lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ldump.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lfunc.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lfunc.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lgc.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lgc.h -------------------------------------------------------------------------------- /src/dep/libs/lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/linit.c -------------------------------------------------------------------------------- /src/dep/libs/lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/liolib.c -------------------------------------------------------------------------------- /src/dep/libs/lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/llex.c -------------------------------------------------------------------------------- /src/dep/libs/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/llex.h -------------------------------------------------------------------------------- /src/dep/libs/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/llimits.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lmathlib.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lmem.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lmem.h -------------------------------------------------------------------------------- /src/dep/libs/lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/loadlib.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lobject.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lobject.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lopcodes.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lopcodes.h -------------------------------------------------------------------------------- /src/dep/libs/lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/loslib.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lparser.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lparser.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lstate.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lstate.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lstring.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lstring.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lstrlib.c -------------------------------------------------------------------------------- /src/dep/libs/lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ltable.c -------------------------------------------------------------------------------- /src/dep/libs/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ltable.h -------------------------------------------------------------------------------- /src/dep/libs/lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ltablib.c -------------------------------------------------------------------------------- /src/dep/libs/lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ltm.c -------------------------------------------------------------------------------- /src/dep/libs/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/ltm.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lua.h -------------------------------------------------------------------------------- /src/dep/libs/lua/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/luac.c -------------------------------------------------------------------------------- /src/dep/libs/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/luaconf.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lualib.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lundump.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lundump.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lvm.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lvm.h -------------------------------------------------------------------------------- /src/dep/libs/lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lzio.c -------------------------------------------------------------------------------- /src/dep/libs/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/lzio.h -------------------------------------------------------------------------------- /src/dep/libs/lua/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/lua/print.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/_fba_zlib_v1211.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dep/libs/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/adler32.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/crc32.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/crc32.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/deflate.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/deflate.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/gzclose.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/gzguts.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/gzlib.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/gzread.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/gzwrite.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/infback.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/inffast.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/inffast.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/inflate.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/inflate.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/trees.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/trees.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/uncompr.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/zconf.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/zlib.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/zutil.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/libs/zlib/zutil.h -------------------------------------------------------------------------------- /src/dep/mingw/dxsdk.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/mingw/dxsdk.7z -------------------------------------------------------------------------------- /src/dep/pi/gles/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/pi/gles/matrix.c -------------------------------------------------------------------------------- /src/dep/pi/gles/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/pi/gles/matrix.h -------------------------------------------------------------------------------- /src/dep/pi/gles/pigl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/pi/gles/pigl.h -------------------------------------------------------------------------------- /src/dep/pi/gles/pigl_dmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/pi/gles/pigl_dmx.c -------------------------------------------------------------------------------- /src/dep/pi/gles/pigl_drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/pi/gles/pigl_drm.c -------------------------------------------------------------------------------- /src/dep/qtcreator/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/qtcreator/SDL.h -------------------------------------------------------------------------------- /src/dep/scripts/fixrc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/scripts/fixrc.pl -------------------------------------------------------------------------------- /src/dep/scripts/gamelist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/scripts/gamelist.pl -------------------------------------------------------------------------------- /src/dep/vc/include/afxres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/vc/include/afxres.h -------------------------------------------------------------------------------- /src/dep/vc/include/d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/vc/include/d3d.h -------------------------------------------------------------------------------- /src/dep/vs2010/pre.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/vs2010/pre.bat -------------------------------------------------------------------------------- /src/dep/vs2010/pre2010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/vs2010/pre2010.bat -------------------------------------------------------------------------------- /src/dep/vs2010/pre2015.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/vs2010/pre2015.bat -------------------------------------------------------------------------------- /src/dep/vs2010/pre2019.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/vs2010/pre2019.bat -------------------------------------------------------------------------------- /src/dep/vs2010/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/dep/vs2010/readme.txt -------------------------------------------------------------------------------- /src/intf/audio/aud_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/audio/aud_dsp.cpp -------------------------------------------------------------------------------- /src/intf/audio/aud_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/audio/aud_dsp.h -------------------------------------------------------------------------------- /src/intf/audio/lowpass2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/audio/lowpass2.cpp -------------------------------------------------------------------------------- /src/intf/audio/lowpass2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/audio/lowpass2.h -------------------------------------------------------------------------------- /src/intf/cd/cd_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/cd/cd_interface.h -------------------------------------------------------------------------------- /src/intf/cd/sdl/cd_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/cd/sdl/cd_sdl2.cpp -------------------------------------------------------------------------------- /src/intf/cd/sdl/cdsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/cd/sdl/cdsound.cpp -------------------------------------------------------------------------------- /src/intf/cd/sdl/cdsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/cd/sdl/cdsound.h -------------------------------------------------------------------------------- /src/intf/input/inp_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/input/inp_keys.h -------------------------------------------------------------------------------- /src/intf/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/interface.cpp -------------------------------------------------------------------------------- /src/intf/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/interface.h -------------------------------------------------------------------------------- /src/intf/video/vid_softfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/intf/video/vid_softfx.h -------------------------------------------------------------------------------- /src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/src/license.txt -------------------------------------------------------------------------------- /whatsnew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightcadeorg/fightcade-fbneo/HEAD/whatsnew.html --------------------------------------------------------------------------------