├── .gitignore ├── Dist ├── Beta │ ├── Key 20241101 │ │ ├── Assets │ │ │ ├── coinopkey │ │ │ │ └── common │ │ │ │ │ └── coinop.key.placeholder │ │ │ ├── mortalkombat │ │ │ │ ├── common │ │ │ │ │ └── ROM.placeholder │ │ │ │ └── pram0d.mortalkombat │ │ │ │ │ └── mortalkombat.json │ │ │ ├── narc │ │ │ │ ├── common │ │ │ │ │ └── ROM.placeholder │ │ │ │ └── pram0d.narc │ │ │ │ │ └── narc.json │ │ │ └── smashtv │ │ │ │ ├── common │ │ │ │ └── ROM.placeholder │ │ │ │ └── pram0d.smashtv │ │ │ │ └── smashtv.json │ │ ├── Cores │ │ │ ├── pram0d.mortalkombat │ │ │ │ ├── audio.json │ │ │ │ ├── core.json │ │ │ │ ├── data.json │ │ │ │ ├── icon.bin │ │ │ │ ├── input.json │ │ │ │ ├── interact.json │ │ │ │ ├── updaters.json │ │ │ │ ├── variants.json │ │ │ │ ├── video.json │ │ │ │ └── yunitad.rbf_r │ │ │ ├── pram0d.narc │ │ │ │ ├── audio.json │ │ │ │ ├── core.json │ │ │ │ ├── data.json │ │ │ │ ├── icon.bin │ │ │ │ ├── input.json │ │ │ │ ├── interact.json │ │ │ │ ├── narc.rbf_r │ │ │ │ ├── updaters.json │ │ │ │ ├── variants.json │ │ │ │ └── video.json │ │ │ └── pram0d.smashtv │ │ │ │ ├── audio.json │ │ │ │ ├── core.json │ │ │ │ ├── data.json │ │ │ │ ├── icon.bin │ │ │ │ ├── input.json │ │ │ │ ├── interact.json │ │ │ │ ├── updaters.json │ │ │ │ ├── variants.json │ │ │ │ ├── video.json │ │ │ │ └── yunitcv.rbf_r │ │ ├── Platforms │ │ │ ├── _images │ │ │ │ ├── mortalkombat.bin │ │ │ │ ├── narc.bin │ │ │ │ └── smashtv.bin │ │ │ ├── mortalkombat.json │ │ │ ├── narc.json │ │ │ └── smashtv.json │ │ └── Saves │ │ │ ├── mortalkombat │ │ │ └── common │ │ │ │ └── mortalkombat.sav │ │ │ ├── narc │ │ │ └── common │ │ │ │ └── narc.sav │ │ │ └── smashtv │ │ │ └── common │ │ │ └── smashtv.sav │ └── Key 20241102 │ │ ├── Assets │ │ ├── coinopkey │ │ │ └── common │ │ │ │ └── coinop.key.placeholder │ │ ├── hiimpact │ │ │ ├── common │ │ │ │ └── ROM.placeholder │ │ │ └── pram0d.hiimpact │ │ │ │ └── hiimpact.json │ │ ├── mortalkombat │ │ │ ├── common │ │ │ │ └── ROM.placeholder │ │ │ └── pram0d.mortalkombat │ │ │ │ └── mortalkombat.json │ │ ├── narc │ │ │ ├── common │ │ │ │ └── ROM.placeholder │ │ │ └── pram0d.narc │ │ │ │ └── narc.json │ │ ├── smashtv │ │ │ ├── common │ │ │ │ └── ROM.placeholder │ │ │ └── pram0d.smashtv │ │ │ │ └── smashtv.json │ │ ├── strikeforce │ │ │ ├── common │ │ │ │ └── rom.placeholder │ │ │ └── pram0d.strikeforce │ │ │ │ └── strikeforce.json │ │ ├── superhiimpact │ │ │ ├── common │ │ │ │ └── ROM.placeholder │ │ │ └── pram0d.superhiimpact │ │ │ │ └── superhiimpact.json │ │ ├── terminator2 │ │ │ ├── common │ │ │ │ └── rom.placeholder │ │ │ └── pram0d.terminator2 │ │ │ │ └── terminator2.json │ │ ├── totalcarnage │ │ │ ├── common │ │ │ │ └── ROM.placeholder │ │ │ └── pram0d.totalcarnage │ │ │ │ └── totalcarnage.json │ │ └── trog │ │ │ ├── common │ │ │ └── ROM.placeholder │ │ │ └── pram0d.trog │ │ │ └── trog.json │ │ ├── Cores │ │ ├── pram0d.hiimpact │ │ │ ├── audio.json │ │ │ ├── core.json │ │ │ ├── data.json │ │ │ ├── icon.bin │ │ │ ├── input.json │ │ │ ├── interact.json │ │ │ ├── updaters.json │ │ │ ├── variants.json │ │ │ ├── video.json │ │ │ └── yunitcv.rbf_r │ │ ├── pram0d.mortalkombat │ │ │ ├── audio.json │ │ │ ├── core.json │ │ │ ├── data.json │ │ │ ├── icon.bin │ │ │ ├── input.json │ │ │ ├── interact.json │ │ │ ├── updaters.json │ │ │ ├── variants.json │ │ │ ├── video.json │ │ │ └── yunitad.rbf_r │ │ ├── pram0d.narc │ │ │ ├── audio.json │ │ │ ├── core.json │ │ │ ├── data.json │ │ │ ├── icon.bin │ │ │ ├── input.json │ │ │ ├── interact.json │ │ │ ├── narc.rbf_r │ │ │ ├── updaters.json │ │ │ ├── variants.json │ │ │ └── video.json │ │ ├── pram0d.smashtv │ │ │ ├── audio.json │ │ │ ├── core.json │ │ │ ├── data.json │ │ │ ├── icon.bin │ │ │ ├── input.json │ │ │ ├── interact.json │ │ │ ├── updaters.json │ │ │ ├── variants.json │ │ │ ├── video.json │ │ │ └── yunitcv.rbf_r │ │ ├── pram0d.strikeforce │ │ │ ├── audio.json │ │ │ ├── core.json │ │ │ ├── data.json │ │ │ ├── icon.bin │ │ │ ├── input.json │ │ │ ├── interact.json │ │ │ ├── updaters.json │ │ │ ├── variants.json │ │ │ ├── video.json │ │ │ └── yunitcv.rbf_r │ │ ├── pram0d.superhiimpact │ │ │ ├── audio.json │ │ │ ├── core.json │ │ │ ├── data.json │ │ │ ├── icon.bin │ │ │ ├── input.json │ │ │ ├── interact.json │ │ │ ├── updaters.json │ │ │ ├── variants.json │ │ │ ├── video.json │ │ │ └── yunitcv.rbf_r │ │ ├── pram0d.terminator2 │ │ │ ├── audio.json │ │ │ ├── core.json │ │ │ ├── data.json │ │ │ ├── icon.bin │ │ │ ├── input.json │ │ │ ├── interact.json │ │ │ ├── updaters.json │ │ │ ├── variants.json │ │ │ ├── video.json │ │ │ └── yunitad.rbf_r │ │ ├── pram0d.totalcarnage │ │ │ ├── audio.json │ │ │ ├── core.json │ │ │ ├── data.json │ │ │ ├── icon.bin │ │ │ ├── input.json │ │ │ ├── interact.json │ │ │ ├── updaters.json │ │ │ ├── variants.json │ │ │ ├── video.json │ │ │ └── yunitad.rbf_r │ │ └── pram0d.trog │ │ │ ├── audio.json │ │ │ ├── core.json │ │ │ ├── data.json │ │ │ ├── icon.bin │ │ │ ├── input.json │ │ │ ├── interact.json │ │ │ ├── updaters.json │ │ │ ├── variants.json │ │ │ ├── video.json │ │ │ └── yunitcv.rbf_r │ │ ├── Platforms │ │ ├── _images │ │ │ ├── hiimpact.bin │ │ │ ├── mortalkombat.bin │ │ │ ├── narc.bin │ │ │ ├── smashtv.bin │ │ │ ├── strikeforce.bin │ │ │ ├── superhiimpact.bin │ │ │ ├── terminator2.bin │ │ │ ├── totalcarnage.bin │ │ │ └── trog.bin │ │ ├── hiimpact.json │ │ ├── mortalkombat.json │ │ ├── narc.json │ │ ├── smashtv.json │ │ ├── strikeforce.json │ │ ├── superhiimpact.json │ │ ├── terminator2.json │ │ ├── totalcarnage.json │ │ └── trog.json │ │ └── Saves │ │ ├── hiimpact │ │ └── common │ │ │ └── hiimpact.sav │ │ ├── mortalkombat │ │ └── common │ │ │ └── mortalkombat.sav │ │ ├── narc │ │ └── common │ │ │ └── narc.sav │ │ ├── smashtv │ │ └── common │ │ │ └── smashtv.sav │ │ ├── superhiimpact │ │ └── common │ │ │ └── superhiimpact.sav │ │ ├── terminator2 │ │ └── common │ │ │ └── terminator2.sav │ │ ├── totalcarnage │ │ └── common │ │ │ └── totalcarnage.sav │ │ └── trog │ │ └── common │ │ └── trog.sav └── Public │ ├── Assets │ ├── bakraid │ │ ├── common │ │ │ └── ROM.placeholder │ │ └── pram0d.bakraid │ │ │ └── bbakraid.json │ ├── batrider │ │ ├── common │ │ │ └── ROM.placeholder │ │ └── pram0d.batrider │ │ │ └── batrider.json │ ├── combatribes │ │ ├── atrac17.combatribes │ │ │ └── combatribes.json │ │ └── common │ │ │ └── ROM.placeholder │ ├── demonwld │ │ ├── coc.demonwld │ │ │ ├── Demon's World - Horror Story (Set 3).json │ │ │ └── _alternatives │ │ │ │ ├── Demon's World - Horror Story (Set 1).json │ │ │ │ ├── Demon's World - Horror Story (Set 2).json │ │ │ │ ├── Demon's World - Horror Story (Set 4).json │ │ │ │ ├── Demon's World - Horror Story (Set 5).json │ │ │ │ └── Demon's World - Horror Story (Set 6).json │ │ └── common │ │ │ └── ROM.placeholder │ ├── doubledragoniii │ │ ├── common │ │ │ └── ROM.placeholder │ │ └── pram0d.doubledragoniii │ │ │ └── doubledragoniii.json │ ├── garegga │ │ ├── common │ │ │ └── ROM.placeholder │ │ └── pram0d.garegga │ │ │ └── garegga.json │ ├── kingdmgp │ │ ├── common │ │ │ └── ROM.placeholder │ │ └── pram0d.kingdmgp │ │ │ └── kingdmgp.json │ ├── pipibibs │ │ ├── atrac17.pipibibs │ │ │ └── pipibibs.json │ │ └── common │ │ │ └── ROM.placeholder │ ├── snowbros2 │ │ ├── common │ │ │ └── ROM.placeholder │ │ └── pram0d.snowbros2 │ │ │ └── snowbros2.json │ ├── sstriker │ │ ├── common │ │ │ └── ROM.placeholder │ │ └── pram0d.sstriker │ │ │ └── sstriker.json │ ├── tekipaki │ │ ├── atrac17.tekipaki │ │ │ └── tekipaki.json │ │ └── common │ │ │ └── ROM.placeholder │ ├── tmnt2 │ │ ├── common │ │ │ └── ROM.placeholder │ │ └── pram0d.tmnt2 │ │ │ ├── Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver UAA).json │ │ │ └── _alternatives │ │ │ ├── Teenage Mutant Hero Turtles - Turtles in Time (2 Players ver EBA).json │ │ │ ├── Teenage Mutant Hero Turtles - Turtles in Time (4 Players ver EAA).json │ │ │ ├── Teenage Mutant Ninja Turtles - Turtles in Time (2 Players ver UDA).json │ │ │ ├── Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver ADA).json │ │ │ ├── Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver OAA).json │ │ │ └── Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver UEA).json │ ├── truxton2 │ │ ├── atrac17.truxton2 │ │ │ └── truxton2.json │ │ └── common │ │ │ └── ROM.placeholder │ ├── wrestlefest │ │ ├── common │ │ │ └── ROM.placeholder │ │ └── pram0d.wrestlefest │ │ │ └── wrestlefest.json │ └── zerowing │ │ ├── coc.zerowing │ │ ├── Zero Wing (2P Set).json │ │ └── _alternatives │ │ │ ├── Zero Wing (1P Set).json │ │ │ └── Zero Wing (2P Set, Williams License).json │ │ └── common │ │ └── ROM.placeholder │ ├── Cores │ ├── atrac17.combatribes │ │ ├── audio.json │ │ ├── combat.rbf_r │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ └── video.json │ ├── atrac17.pipibibs │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── pipibibs.rbf_r │ │ ├── variants.json │ │ └── video.json │ ├── atrac17.tekipaki │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── tekipaki.rbf_r │ │ ├── variants.json │ │ └── video.json │ ├── atrac17.truxton2 │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── truxton2.rbf_r │ │ ├── variants.json │ │ └── video.json │ ├── coc.demonwld │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── demonwld.br │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ └── video.json │ ├── coc.zerowing │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ ├── video.json │ │ └── zerowing.br │ ├── pram0d.bakraid │ │ ├── BAKRAID.rbf_r │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ └── video.json │ ├── pram0d.batrider │ │ ├── BATRIDER.rbf_r │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ └── video.json │ ├── pram0d.doubledragoniii │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── dd3.rbf_r │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ └── video.json │ ├── pram0d.garegga │ │ ├── GAREGGA.rbf_r │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ └── video.json │ ├── pram0d.kingdmgp │ │ ├── GAREGGA.rbf_r │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ └── video.json │ ├── pram0d.snowbros2 │ │ ├── SNOWBROS2.rbf_r │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ └── video.json │ ├── pram0d.sstriker │ │ ├── GAREGGA.rbf_r │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ └── video.json │ ├── pram0d.tmnt2 │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── tmnt2.rbf_r │ │ ├── variants.json │ │ └── video.json │ └── pram0d.wrestlefest │ │ ├── audio.json │ │ ├── core.json │ │ ├── data.json │ │ ├── icon.bin │ │ ├── input.json │ │ ├── interact.json │ │ ├── variants.json │ │ ├── video.json │ │ └── wf.rbf_r │ ├── Platforms │ ├── _images │ │ ├── bakraid.bin │ │ ├── batrider.bin │ │ ├── combatribes.bin │ │ ├── demonwld.bin │ │ ├── doubledragoniii.bin │ │ ├── garegga.bin │ │ ├── kingdmgp.bin │ │ ├── pipibibs.bin │ │ ├── snowbros2.bin │ │ ├── sstriker.bin │ │ ├── tekipaki.bin │ │ ├── tmnt2.bin │ │ ├── truxton2.bin │ │ ├── wrestlefest.bin │ │ └── zerowing.bin │ ├── bakraid.json │ ├── batrider.json │ ├── combatribes.json │ ├── demonwld.json │ ├── doubledragoniii.json │ ├── garegga.json │ ├── kingdmgp.json │ ├── pipibibs.json │ ├── snowbros2.json │ ├── sstriker.json │ ├── tekipaki.json │ ├── tmnt2.json │ ├── truxton2.json │ ├── wrestlefest.json │ └── zerowing.json │ └── Saves │ ├── demonwld │ └── common │ │ └── demonwld.sav │ └── tmnt2 │ └── common │ ├── tmht22pe_ap.sav │ ├── tmht24pe_ap.sav │ ├── tmnt22pu_ap.sav │ ├── tmnt24pu_ap.sav │ ├── tmnt2_ap.sav │ ├── tmnt2a_ap.sav │ └── tmnt2o_ap.sav ├── LICENSE ├── MRA ├── Konami │ ├── Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. UAA).mra │ └── _alternatives │ │ └── _Teenage Mutant Ninja Turtles - Turtles In Time │ │ ├── Teenage Mutant Hero Turtles - Turtles in Time (2 Players Ver. EBA).mra │ │ ├── Teenage Mutant Hero Turtles - Turtles in Time (4 Players Ver. EAA).mra │ │ ├── Teenage Mutant Ninja Turtles - Turtles in Time (2 Players Ver. UDA).mra │ │ ├── Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. ADA).mra │ │ ├── Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. OAA).mra │ │ └── Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. UEA).mra ├── Raizing │ ├── Armed Police Batrider (USA) (Fri Feb 13 1998).mra │ ├── Battle Bakraid - Unlimited Version (USA) (Tue Jun 8 1999).mra │ ├── Battle Garegga (Europe - USA - Japan - Asia) (Sat Feb 3 1996).mra │ ├── Kingdom Grandprix.mra │ └── Sorcer Striker.mra ├── Technos │ └── Technos16 │ │ ├── Double Dragon 3 The Rosetta Stone (US).mra │ │ ├── The Combatribes (US, Rev 2, Set 1).mra │ │ └── WWF Wrestlefest (World).mra ├── Toaplan │ ├── Toaplan1 │ │ ├── Demon's World - Horror Story (Set 3).mra │ │ └── _alternatives │ │ │ ├── Demon's World - Horror Story (Set 1).mra │ │ │ ├── Demon's World - Horror Story (Set 2).mra │ │ │ ├── Demon's World - Horror Story (Set 4).mra │ │ │ ├── Demon's World - Horror Story (Set 5).mra │ │ │ └── Demon's World - Horror Story (Set 6).mra │ └── Toaplan2 │ │ ├── Pipi & Bibis - Whoopee!! (Z80 Based, Set 1).mra │ │ ├── Snow Bros. 2 - With New Elves - Otenki Paradise (Hanafram).mra │ │ ├── Teki Paki.mra │ │ └── Truxton II - Tatsujin Oh.mra └── Williams-Midway │ ├── Y-Unit │ ├── High Impact Football (Rev LA5 02-15-91).mra │ ├── Mortal Kombat (Rev 4.0 09-28-92).mra │ ├── Smash T.V. (Rev 8.00).mra │ ├── Strike Force (Rev 1 02-25-91).mra │ ├── Super High Impact (Rev LA1 09-30-91).mra │ ├── Terminator 2 - Judgment Day (Rev LA4 08-03-92).mra │ ├── Total Carnage (Rev LA1 03-10-92).mra │ └── Trog (Rev LA5 3-29-91).mra │ └── Z-Unit │ └── NARC (Rev 7.00).mra ├── README.md ├── Releases ├── atrac17.combatribes.zip ├── atrac17.pipibibs.zip ├── atrac17.tekipaki.zip ├── atrac17.truxton2.zip ├── coc.demonwld.zip ├── coc.zerowing.zip ├── pram0d.bakraid.zip ├── pram0d.batrider.zip ├── pram0d.doubledragoniii.zip ├── pram0d.garegga.zip ├── pram0d.snowbros2.zip ├── pram0d.tmnt2.zip ├── pram0d.wrestlefest.zip ├── pram0d.yunit.zip └── pram0d.zunit.zip └── Tools ├── Gun4IR FW └── T2_2.00 │ ├── JayBee_GUN4IR_T2_2.00.ino.g4irmi1.hex │ ├── JayBee_GUN4IR_T2_2.00.ino.g4irmi2.hex │ ├── JayBee_GUN4IR_T2_2.00.ino.g4irmi3.hex │ ├── JayBee_GUN4IR_T2_2.00.ino.g4irmi4.hex │ ├── JayBee_GUN4IR_T2_2.00.ino.g4irpm1.hex │ ├── JayBee_GUN4IR_T2_2.00.ino.g4irpm2.hex │ ├── JayBee_GUN4IR_T2_2.00.ino.g4irpm3.hex │ └── JayBee_GUN4IR_T2_2.00.ino.g4irpm4.hex ├── mra.exe ├── reverserbf.bat ├── reverserbf.exe └── technos_gfx_repack.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.rom 2 | -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Assets/coinopkey/common/coinop.key.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Assets/mortalkombat/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Assets/mortalkombat/pram0d.mortalkombat/mortalkombat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Assets/mortalkombat/pram0d.mortalkombat/mortalkombat.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Assets/narc/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Assets/narc/pram0d.narc/narc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Assets/narc/pram0d.narc/narc.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Assets/smashtv/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Assets/smashtv/pram0d.smashtv/smashtv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Assets/smashtv/pram0d.smashtv/smashtv.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/yunitad.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.mortalkombat/yunitad.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.narc/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.narc/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.narc/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.narc/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.narc/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.narc/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.narc/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.narc/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.narc/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.narc/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.narc/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.narc/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.narc/narc.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.narc/narc.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.narc/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.narc/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.narc/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.narc/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.narc/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.narc/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.smashtv/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.smashtv/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.smashtv/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.smashtv/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.smashtv/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.smashtv/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.smashtv/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.smashtv/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.smashtv/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.smashtv/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.smashtv/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.smashtv/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.smashtv/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.smashtv/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.smashtv/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.smashtv/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.smashtv/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.smashtv/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Cores/pram0d.smashtv/yunitcv.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Cores/pram0d.smashtv/yunitcv.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Platforms/_images/mortalkombat.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Platforms/_images/mortalkombat.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Platforms/_images/narc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Platforms/_images/narc.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Platforms/_images/smashtv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Platforms/_images/smashtv.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Platforms/mortalkombat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Platforms/mortalkombat.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Platforms/narc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Platforms/narc.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Platforms/smashtv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Platforms/smashtv.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Saves/mortalkombat/common/mortalkombat.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Saves/mortalkombat/common/mortalkombat.sav -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Saves/narc/common/narc.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Saves/narc/common/narc.sav -------------------------------------------------------------------------------- /Dist/Beta/Key 20241101/Saves/smashtv/common/smashtv.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241101/Saves/smashtv/common/smashtv.sav -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/coinopkey/common/coinop.key.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/hiimpact/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/hiimpact/pram0d.hiimpact/hiimpact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Assets/hiimpact/pram0d.hiimpact/hiimpact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/mortalkombat/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/mortalkombat/pram0d.mortalkombat/mortalkombat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Assets/mortalkombat/pram0d.mortalkombat/mortalkombat.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/narc/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/narc/pram0d.narc/narc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Assets/narc/pram0d.narc/narc.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/smashtv/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/smashtv/pram0d.smashtv/smashtv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Assets/smashtv/pram0d.smashtv/smashtv.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/strikeforce/common/rom.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/strikeforce/pram0d.strikeforce/strikeforce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Assets/strikeforce/pram0d.strikeforce/strikeforce.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/superhiimpact/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/superhiimpact/pram0d.superhiimpact/superhiimpact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Assets/superhiimpact/pram0d.superhiimpact/superhiimpact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/terminator2/common/rom.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/terminator2/pram0d.terminator2/terminator2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Assets/terminator2/pram0d.terminator2/terminator2.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/totalcarnage/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/totalcarnage/pram0d.totalcarnage/totalcarnage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Assets/totalcarnage/pram0d.totalcarnage/totalcarnage.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/trog/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Assets/trog/pram0d.trog/trog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Assets/trog/pram0d.trog/trog.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/yunitcv.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.hiimpact/yunitcv.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/yunitad.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.mortalkombat/yunitad.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.narc/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.narc/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.narc/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.narc/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.narc/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.narc/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.narc/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.narc/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.narc/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.narc/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.narc/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.narc/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.narc/narc.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.narc/narc.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.narc/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.narc/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.narc/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.narc/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.narc/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.narc/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.smashtv/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.smashtv/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.smashtv/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.smashtv/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.smashtv/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.smashtv/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.smashtv/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.smashtv/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.smashtv/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.smashtv/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.smashtv/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.smashtv/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.smashtv/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.smashtv/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.smashtv/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.smashtv/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.smashtv/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.smashtv/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.smashtv/yunitcv.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.smashtv/yunitcv.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/yunitcv.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.strikeforce/yunitcv.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/yunitcv.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.superhiimpact/yunitcv.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.terminator2/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.terminator2/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.terminator2/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.terminator2/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.terminator2/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.terminator2/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.terminator2/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.terminator2/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.terminator2/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.terminator2/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.terminator2/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.terminator2/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.terminator2/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.terminator2/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.terminator2/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.terminator2/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.terminator2/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.terminator2/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.terminator2/yunitad.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.terminator2/yunitad.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/yunitad.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.totalcarnage/yunitad.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.trog/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.trog/audio.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.trog/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.trog/core.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.trog/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.trog/data.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.trog/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.trog/icon.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.trog/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.trog/input.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.trog/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.trog/interact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.trog/updaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.trog/updaters.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.trog/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.trog/variants.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.trog/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.trog/video.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Cores/pram0d.trog/yunitcv.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Cores/pram0d.trog/yunitcv.rbf_r -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/_images/hiimpact.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/_images/hiimpact.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/_images/mortalkombat.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/_images/mortalkombat.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/_images/narc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/_images/narc.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/_images/smashtv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/_images/smashtv.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/_images/strikeforce.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/_images/strikeforce.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/_images/superhiimpact.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/_images/superhiimpact.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/_images/terminator2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/_images/terminator2.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/_images/totalcarnage.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/_images/totalcarnage.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/_images/trog.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/_images/trog.bin -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/hiimpact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/hiimpact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/mortalkombat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/mortalkombat.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/narc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/narc.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/smashtv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/smashtv.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/strikeforce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/strikeforce.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/superhiimpact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/superhiimpact.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/terminator2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/terminator2.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/totalcarnage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/totalcarnage.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Platforms/trog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Platforms/trog.json -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Saves/hiimpact/common/hiimpact.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Saves/hiimpact/common/hiimpact.sav -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Saves/mortalkombat/common/mortalkombat.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Saves/mortalkombat/common/mortalkombat.sav -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Saves/narc/common/narc.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Saves/narc/common/narc.sav -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Saves/smashtv/common/smashtv.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Saves/smashtv/common/smashtv.sav -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Saves/superhiimpact/common/superhiimpact.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Saves/superhiimpact/common/superhiimpact.sav -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Saves/terminator2/common/terminator2.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Saves/terminator2/common/terminator2.sav -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Saves/totalcarnage/common/totalcarnage.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Saves/totalcarnage/common/totalcarnage.sav -------------------------------------------------------------------------------- /Dist/Beta/Key 20241102/Saves/trog/common/trog.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Beta/Key 20241102/Saves/trog/common/trog.sav -------------------------------------------------------------------------------- /Dist/Public/Assets/bakraid/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/bakraid/pram0d.bakraid/bbakraid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/bakraid/pram0d.bakraid/bbakraid.json -------------------------------------------------------------------------------- /Dist/Public/Assets/batrider/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/batrider/pram0d.batrider/batrider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/batrider/pram0d.batrider/batrider.json -------------------------------------------------------------------------------- /Dist/Public/Assets/combatribes/atrac17.combatribes/combatribes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/combatribes/atrac17.combatribes/combatribes.json -------------------------------------------------------------------------------- /Dist/Public/Assets/combatribes/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/demonwld/coc.demonwld/Demon's World - Horror Story (Set 3).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/demonwld/coc.demonwld/Demon's World - Horror Story (Set 3).json -------------------------------------------------------------------------------- /Dist/Public/Assets/demonwld/coc.demonwld/_alternatives/Demon's World - Horror Story (Set 1).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/demonwld/coc.demonwld/_alternatives/Demon's World - Horror Story (Set 1).json -------------------------------------------------------------------------------- /Dist/Public/Assets/demonwld/coc.demonwld/_alternatives/Demon's World - Horror Story (Set 2).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/demonwld/coc.demonwld/_alternatives/Demon's World - Horror Story (Set 2).json -------------------------------------------------------------------------------- /Dist/Public/Assets/demonwld/coc.demonwld/_alternatives/Demon's World - Horror Story (Set 4).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/demonwld/coc.demonwld/_alternatives/Demon's World - Horror Story (Set 4).json -------------------------------------------------------------------------------- /Dist/Public/Assets/demonwld/coc.demonwld/_alternatives/Demon's World - Horror Story (Set 5).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/demonwld/coc.demonwld/_alternatives/Demon's World - Horror Story (Set 5).json -------------------------------------------------------------------------------- /Dist/Public/Assets/demonwld/coc.demonwld/_alternatives/Demon's World - Horror Story (Set 6).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/demonwld/coc.demonwld/_alternatives/Demon's World - Horror Story (Set 6).json -------------------------------------------------------------------------------- /Dist/Public/Assets/demonwld/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dist/Public/Assets/doubledragoniii/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/doubledragoniii/pram0d.doubledragoniii/doubledragoniii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/doubledragoniii/pram0d.doubledragoniii/doubledragoniii.json -------------------------------------------------------------------------------- /Dist/Public/Assets/garegga/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/garegga/pram0d.garegga/garegga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/garegga/pram0d.garegga/garegga.json -------------------------------------------------------------------------------- /Dist/Public/Assets/kingdmgp/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/kingdmgp/pram0d.kingdmgp/kingdmgp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/kingdmgp/pram0d.kingdmgp/kingdmgp.json -------------------------------------------------------------------------------- /Dist/Public/Assets/pipibibs/atrac17.pipibibs/pipibibs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/pipibibs/atrac17.pipibibs/pipibibs.json -------------------------------------------------------------------------------- /Dist/Public/Assets/pipibibs/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/snowbros2/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/snowbros2/pram0d.snowbros2/snowbros2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/snowbros2/pram0d.snowbros2/snowbros2.json -------------------------------------------------------------------------------- /Dist/Public/Assets/sstriker/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/sstriker/pram0d.sstriker/sstriker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/sstriker/pram0d.sstriker/sstriker.json -------------------------------------------------------------------------------- /Dist/Public/Assets/tekipaki/atrac17.tekipaki/tekipaki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/tekipaki/atrac17.tekipaki/tekipaki.json -------------------------------------------------------------------------------- /Dist/Public/Assets/tekipaki/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/tmnt2/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/tmnt2/pram0d.tmnt2/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver UAA).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/tmnt2/pram0d.tmnt2/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver UAA).json -------------------------------------------------------------------------------- /Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Hero Turtles - Turtles in Time (2 Players ver EBA).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Hero Turtles - Turtles in Time (2 Players ver EBA).json -------------------------------------------------------------------------------- /Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Hero Turtles - Turtles in Time (4 Players ver EAA).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Hero Turtles - Turtles in Time (4 Players ver EAA).json -------------------------------------------------------------------------------- /Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Ninja Turtles - Turtles in Time (2 Players ver UDA).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Ninja Turtles - Turtles in Time (2 Players ver UDA).json -------------------------------------------------------------------------------- /Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver ADA).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver ADA).json -------------------------------------------------------------------------------- /Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver OAA).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver OAA).json -------------------------------------------------------------------------------- /Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver UEA).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/tmnt2/pram0d.tmnt2/_alternatives/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver UEA).json -------------------------------------------------------------------------------- /Dist/Public/Assets/truxton2/atrac17.truxton2/truxton2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/truxton2/atrac17.truxton2/truxton2.json -------------------------------------------------------------------------------- /Dist/Public/Assets/truxton2/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/wrestlefest/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /Dist/Public/Assets/wrestlefest/pram0d.wrestlefest/wrestlefest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/wrestlefest/pram0d.wrestlefest/wrestlefest.json -------------------------------------------------------------------------------- /Dist/Public/Assets/zerowing/coc.zerowing/Zero Wing (2P Set).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/zerowing/coc.zerowing/Zero Wing (2P Set).json -------------------------------------------------------------------------------- /Dist/Public/Assets/zerowing/coc.zerowing/_alternatives/Zero Wing (1P Set).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/zerowing/coc.zerowing/_alternatives/Zero Wing (1P Set).json -------------------------------------------------------------------------------- /Dist/Public/Assets/zerowing/coc.zerowing/_alternatives/Zero Wing (2P Set, Williams License).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Assets/zerowing/coc.zerowing/_alternatives/Zero Wing (2P Set, Williams License).json -------------------------------------------------------------------------------- /Dist/Public/Assets/zerowing/common/ROM.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.combatribes/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.combatribes/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.combatribes/combat.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.combatribes/combat.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.combatribes/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.combatribes/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.combatribes/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.combatribes/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.combatribes/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.combatribes/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.combatribes/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.combatribes/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.combatribes/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.combatribes/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.combatribes/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.combatribes/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.combatribes/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.combatribes/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.pipibibs/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.pipibibs/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.pipibibs/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.pipibibs/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.pipibibs/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.pipibibs/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.pipibibs/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.pipibibs/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.pipibibs/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.pipibibs/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.pipibibs/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.pipibibs/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.pipibibs/pipibibs.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.pipibibs/pipibibs.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.pipibibs/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.pipibibs/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.pipibibs/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.pipibibs/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.tekipaki/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.tekipaki/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.tekipaki/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.tekipaki/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.tekipaki/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.tekipaki/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.tekipaki/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.tekipaki/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.tekipaki/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.tekipaki/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.tekipaki/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.tekipaki/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.tekipaki/tekipaki.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.tekipaki/tekipaki.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.tekipaki/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.tekipaki/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.tekipaki/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.tekipaki/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.truxton2/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.truxton2/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.truxton2/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.truxton2/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.truxton2/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.truxton2/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.truxton2/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.truxton2/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.truxton2/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.truxton2/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.truxton2/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.truxton2/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.truxton2/truxton2.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.truxton2/truxton2.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.truxton2/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.truxton2/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/atrac17.truxton2/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/atrac17.truxton2/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.demonwld/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.demonwld/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.demonwld/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.demonwld/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.demonwld/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.demonwld/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.demonwld/demonwld.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.demonwld/demonwld.br -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.demonwld/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.demonwld/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.demonwld/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.demonwld/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.demonwld/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.demonwld/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.demonwld/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.demonwld/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.demonwld/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.demonwld/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.zerowing/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.zerowing/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.zerowing/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.zerowing/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.zerowing/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.zerowing/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.zerowing/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.zerowing/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.zerowing/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.zerowing/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.zerowing/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.zerowing/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.zerowing/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.zerowing/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.zerowing/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.zerowing/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/coc.zerowing/zerowing.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/coc.zerowing/zerowing.br -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.bakraid/BAKRAID.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.bakraid/BAKRAID.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.bakraid/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.bakraid/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.bakraid/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.bakraid/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.bakraid/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.bakraid/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.bakraid/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.bakraid/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.bakraid/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.bakraid/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.bakraid/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.bakraid/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.bakraid/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.bakraid/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.bakraid/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.bakraid/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.batrider/BATRIDER.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.batrider/BATRIDER.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.batrider/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.batrider/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.batrider/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.batrider/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.batrider/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.batrider/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.batrider/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.batrider/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.batrider/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.batrider/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.batrider/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.batrider/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.batrider/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.batrider/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.batrider/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.batrider/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.doubledragoniii/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.doubledragoniii/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.doubledragoniii/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.doubledragoniii/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.doubledragoniii/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.doubledragoniii/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.doubledragoniii/dd3.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.doubledragoniii/dd3.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.doubledragoniii/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.doubledragoniii/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.doubledragoniii/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.doubledragoniii/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.doubledragoniii/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.doubledragoniii/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.doubledragoniii/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.doubledragoniii/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.doubledragoniii/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.doubledragoniii/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.garegga/GAREGGA.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.garegga/GAREGGA.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.garegga/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.garegga/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.garegga/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.garegga/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.garegga/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.garegga/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.garegga/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.garegga/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.garegga/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.garegga/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.garegga/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.garegga/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.garegga/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.garegga/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.garegga/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.garegga/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.kingdmgp/GAREGGA.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.kingdmgp/GAREGGA.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.kingdmgp/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.kingdmgp/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.kingdmgp/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.kingdmgp/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.kingdmgp/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.kingdmgp/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.kingdmgp/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.kingdmgp/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.kingdmgp/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.kingdmgp/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.kingdmgp/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.kingdmgp/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.kingdmgp/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.kingdmgp/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.kingdmgp/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.kingdmgp/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.snowbros2/SNOWBROS2.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.snowbros2/SNOWBROS2.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.snowbros2/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.snowbros2/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.snowbros2/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.snowbros2/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.snowbros2/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.snowbros2/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.snowbros2/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.snowbros2/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.snowbros2/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.snowbros2/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.snowbros2/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.snowbros2/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.snowbros2/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.snowbros2/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.snowbros2/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.snowbros2/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.sstriker/GAREGGA.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.sstriker/GAREGGA.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.sstriker/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.sstriker/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.sstriker/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.sstriker/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.sstriker/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.sstriker/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.sstriker/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.sstriker/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.sstriker/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.sstriker/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.sstriker/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.sstriker/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.sstriker/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.sstriker/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.sstriker/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.sstriker/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.tmnt2/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.tmnt2/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.tmnt2/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.tmnt2/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.tmnt2/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.tmnt2/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.tmnt2/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.tmnt2/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.tmnt2/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.tmnt2/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.tmnt2/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.tmnt2/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.tmnt2/tmnt2.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.tmnt2/tmnt2.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.tmnt2/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.tmnt2/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.tmnt2/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.tmnt2/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.wrestlefest/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.wrestlefest/audio.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.wrestlefest/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.wrestlefest/core.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.wrestlefest/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.wrestlefest/data.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.wrestlefest/icon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.wrestlefest/icon.bin -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.wrestlefest/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.wrestlefest/input.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.wrestlefest/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.wrestlefest/interact.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.wrestlefest/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.wrestlefest/variants.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.wrestlefest/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.wrestlefest/video.json -------------------------------------------------------------------------------- /Dist/Public/Cores/pram0d.wrestlefest/wf.rbf_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Cores/pram0d.wrestlefest/wf.rbf_r -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/bakraid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/bakraid.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/batrider.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/batrider.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/combatribes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/combatribes.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/demonwld.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/demonwld.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/doubledragoniii.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/doubledragoniii.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/garegga.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/garegga.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/kingdmgp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/kingdmgp.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/pipibibs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/pipibibs.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/snowbros2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/snowbros2.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/sstriker.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/sstriker.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/tekipaki.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/tekipaki.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/tmnt2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/tmnt2.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/truxton2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/truxton2.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/wrestlefest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/wrestlefest.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/_images/zerowing.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/_images/zerowing.bin -------------------------------------------------------------------------------- /Dist/Public/Platforms/bakraid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/bakraid.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/batrider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/batrider.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/combatribes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/combatribes.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/demonwld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/demonwld.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/doubledragoniii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/doubledragoniii.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/garegga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/garegga.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/kingdmgp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/kingdmgp.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/pipibibs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/pipibibs.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/snowbros2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/snowbros2.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/sstriker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/sstriker.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/tekipaki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/tekipaki.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/tmnt2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/tmnt2.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/truxton2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/truxton2.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/wrestlefest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/wrestlefest.json -------------------------------------------------------------------------------- /Dist/Public/Platforms/zerowing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Platforms/zerowing.json -------------------------------------------------------------------------------- /Dist/Public/Saves/demonwld/common/demonwld.sav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dist/Public/Saves/tmnt2/common/tmht22pe_ap.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Saves/tmnt2/common/tmht22pe_ap.sav -------------------------------------------------------------------------------- /Dist/Public/Saves/tmnt2/common/tmht24pe_ap.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Saves/tmnt2/common/tmht24pe_ap.sav -------------------------------------------------------------------------------- /Dist/Public/Saves/tmnt2/common/tmnt22pu_ap.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Saves/tmnt2/common/tmnt22pu_ap.sav -------------------------------------------------------------------------------- /Dist/Public/Saves/tmnt2/common/tmnt24pu_ap.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Saves/tmnt2/common/tmnt24pu_ap.sav -------------------------------------------------------------------------------- /Dist/Public/Saves/tmnt2/common/tmnt2_ap.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Saves/tmnt2/common/tmnt2_ap.sav -------------------------------------------------------------------------------- /Dist/Public/Saves/tmnt2/common/tmnt2a_ap.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Saves/tmnt2/common/tmnt2a_ap.sav -------------------------------------------------------------------------------- /Dist/Public/Saves/tmnt2/common/tmnt2o_ap.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Dist/Public/Saves/tmnt2/common/tmnt2o_ap.sav -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/LICENSE -------------------------------------------------------------------------------- /MRA/Konami/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. UAA).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Konami/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. UAA).mra -------------------------------------------------------------------------------- /MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Hero Turtles - Turtles in Time (2 Players Ver. EBA).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Hero Turtles - Turtles in Time (2 Players Ver. EBA).mra -------------------------------------------------------------------------------- /MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Hero Turtles - Turtles in Time (4 Players Ver. EAA).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Hero Turtles - Turtles in Time (4 Players Ver. EAA).mra -------------------------------------------------------------------------------- /MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Ninja Turtles - Turtles in Time (2 Players Ver. UDA).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Ninja Turtles - Turtles in Time (2 Players Ver. UDA).mra -------------------------------------------------------------------------------- /MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. ADA).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. ADA).mra -------------------------------------------------------------------------------- /MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. OAA).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. OAA).mra -------------------------------------------------------------------------------- /MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. UEA).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Konami/_alternatives/_Teenage Mutant Ninja Turtles - Turtles In Time/Teenage Mutant Ninja Turtles - Turtles in Time (4 Players Ver. UEA).mra -------------------------------------------------------------------------------- /MRA/Raizing/Armed Police Batrider (USA) (Fri Feb 13 1998).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Raizing/Armed Police Batrider (USA) (Fri Feb 13 1998).mra -------------------------------------------------------------------------------- /MRA/Raizing/Battle Bakraid - Unlimited Version (USA) (Tue Jun 8 1999).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Raizing/Battle Bakraid - Unlimited Version (USA) (Tue Jun 8 1999).mra -------------------------------------------------------------------------------- /MRA/Raizing/Battle Garegga (Europe - USA - Japan - Asia) (Sat Feb 3 1996).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Raizing/Battle Garegga (Europe - USA - Japan - Asia) (Sat Feb 3 1996).mra -------------------------------------------------------------------------------- /MRA/Raizing/Kingdom Grandprix.mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Raizing/Kingdom Grandprix.mra -------------------------------------------------------------------------------- /MRA/Raizing/Sorcer Striker.mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Raizing/Sorcer Striker.mra -------------------------------------------------------------------------------- /MRA/Technos/Technos16/Double Dragon 3 The Rosetta Stone (US).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Technos/Technos16/Double Dragon 3 The Rosetta Stone (US).mra -------------------------------------------------------------------------------- /MRA/Technos/Technos16/The Combatribes (US, Rev 2, Set 1).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Technos/Technos16/The Combatribes (US, Rev 2, Set 1).mra -------------------------------------------------------------------------------- /MRA/Technos/Technos16/WWF Wrestlefest (World).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Technos/Technos16/WWF Wrestlefest (World).mra -------------------------------------------------------------------------------- /MRA/Toaplan/Toaplan1/Demon's World - Horror Story (Set 3).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Toaplan/Toaplan1/Demon's World - Horror Story (Set 3).mra -------------------------------------------------------------------------------- /MRA/Toaplan/Toaplan1/_alternatives/Demon's World - Horror Story (Set 1).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Toaplan/Toaplan1/_alternatives/Demon's World - Horror Story (Set 1).mra -------------------------------------------------------------------------------- /MRA/Toaplan/Toaplan1/_alternatives/Demon's World - Horror Story (Set 2).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Toaplan/Toaplan1/_alternatives/Demon's World - Horror Story (Set 2).mra -------------------------------------------------------------------------------- /MRA/Toaplan/Toaplan1/_alternatives/Demon's World - Horror Story (Set 4).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Toaplan/Toaplan1/_alternatives/Demon's World - Horror Story (Set 4).mra -------------------------------------------------------------------------------- /MRA/Toaplan/Toaplan1/_alternatives/Demon's World - Horror Story (Set 5).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Toaplan/Toaplan1/_alternatives/Demon's World - Horror Story (Set 5).mra -------------------------------------------------------------------------------- /MRA/Toaplan/Toaplan1/_alternatives/Demon's World - Horror Story (Set 6).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Toaplan/Toaplan1/_alternatives/Demon's World - Horror Story (Set 6).mra -------------------------------------------------------------------------------- /MRA/Toaplan/Toaplan2/Pipi & Bibis - Whoopee!! (Z80 Based, Set 1).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Toaplan/Toaplan2/Pipi & Bibis - Whoopee!! (Z80 Based, Set 1).mra -------------------------------------------------------------------------------- /MRA/Toaplan/Toaplan2/Snow Bros. 2 - With New Elves - Otenki Paradise (Hanafram).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Toaplan/Toaplan2/Snow Bros. 2 - With New Elves - Otenki Paradise (Hanafram).mra -------------------------------------------------------------------------------- /MRA/Toaplan/Toaplan2/Teki Paki.mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Toaplan/Toaplan2/Teki Paki.mra -------------------------------------------------------------------------------- /MRA/Toaplan/Toaplan2/Truxton II - Tatsujin Oh.mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Toaplan/Toaplan2/Truxton II - Tatsujin Oh.mra -------------------------------------------------------------------------------- /MRA/Williams-Midway/Y-Unit/High Impact Football (Rev LA5 02-15-91).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Williams-Midway/Y-Unit/High Impact Football (Rev LA5 02-15-91).mra -------------------------------------------------------------------------------- /MRA/Williams-Midway/Y-Unit/Mortal Kombat (Rev 4.0 09-28-92).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Williams-Midway/Y-Unit/Mortal Kombat (Rev 4.0 09-28-92).mra -------------------------------------------------------------------------------- /MRA/Williams-Midway/Y-Unit/Smash T.V. (Rev 8.00).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Williams-Midway/Y-Unit/Smash T.V. (Rev 8.00).mra -------------------------------------------------------------------------------- /MRA/Williams-Midway/Y-Unit/Strike Force (Rev 1 02-25-91).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Williams-Midway/Y-Unit/Strike Force (Rev 1 02-25-91).mra -------------------------------------------------------------------------------- /MRA/Williams-Midway/Y-Unit/Super High Impact (Rev LA1 09-30-91).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Williams-Midway/Y-Unit/Super High Impact (Rev LA1 09-30-91).mra -------------------------------------------------------------------------------- /MRA/Williams-Midway/Y-Unit/Terminator 2 - Judgment Day (Rev LA4 08-03-92).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Williams-Midway/Y-Unit/Terminator 2 - Judgment Day (Rev LA4 08-03-92).mra -------------------------------------------------------------------------------- /MRA/Williams-Midway/Y-Unit/Total Carnage (Rev LA1 03-10-92).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Williams-Midway/Y-Unit/Total Carnage (Rev LA1 03-10-92).mra -------------------------------------------------------------------------------- /MRA/Williams-Midway/Y-Unit/Trog (Rev LA5 3-29-91).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Williams-Midway/Y-Unit/Trog (Rev LA5 3-29-91).mra -------------------------------------------------------------------------------- /MRA/Williams-Midway/Z-Unit/NARC (Rev 7.00).mra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/MRA/Williams-Midway/Z-Unit/NARC (Rev 7.00).mra -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/README.md -------------------------------------------------------------------------------- /Releases/atrac17.combatribes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/atrac17.combatribes.zip -------------------------------------------------------------------------------- /Releases/atrac17.pipibibs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/atrac17.pipibibs.zip -------------------------------------------------------------------------------- /Releases/atrac17.tekipaki.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/atrac17.tekipaki.zip -------------------------------------------------------------------------------- /Releases/atrac17.truxton2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/atrac17.truxton2.zip -------------------------------------------------------------------------------- /Releases/coc.demonwld.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/coc.demonwld.zip -------------------------------------------------------------------------------- /Releases/coc.zerowing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/coc.zerowing.zip -------------------------------------------------------------------------------- /Releases/pram0d.bakraid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/pram0d.bakraid.zip -------------------------------------------------------------------------------- /Releases/pram0d.batrider.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/pram0d.batrider.zip -------------------------------------------------------------------------------- /Releases/pram0d.doubledragoniii.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/pram0d.doubledragoniii.zip -------------------------------------------------------------------------------- /Releases/pram0d.garegga.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/pram0d.garegga.zip -------------------------------------------------------------------------------- /Releases/pram0d.snowbros2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/pram0d.snowbros2.zip -------------------------------------------------------------------------------- /Releases/pram0d.tmnt2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/pram0d.tmnt2.zip -------------------------------------------------------------------------------- /Releases/pram0d.wrestlefest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/pram0d.wrestlefest.zip -------------------------------------------------------------------------------- /Releases/pram0d.yunit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/pram0d.yunit.zip -------------------------------------------------------------------------------- /Releases/pram0d.zunit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Releases/pram0d.zunit.zip -------------------------------------------------------------------------------- /Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irmi1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irmi1.hex -------------------------------------------------------------------------------- /Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irmi2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irmi2.hex -------------------------------------------------------------------------------- /Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irmi3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irmi3.hex -------------------------------------------------------------------------------- /Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irmi4.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irmi4.hex -------------------------------------------------------------------------------- /Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irpm1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irpm1.hex -------------------------------------------------------------------------------- /Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irpm2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irpm2.hex -------------------------------------------------------------------------------- /Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irpm3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irpm3.hex -------------------------------------------------------------------------------- /Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irpm4.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/Gun4IR FW/T2_2.00/JayBee_GUN4IR_T2_2.00.ino.g4irpm4.hex -------------------------------------------------------------------------------- /Tools/mra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/mra.exe -------------------------------------------------------------------------------- /Tools/reverserbf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/reverserbf.bat -------------------------------------------------------------------------------- /Tools/reverserbf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/reverserbf.exe -------------------------------------------------------------------------------- /Tools/technos_gfx_repack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coin-OpCollection/Distribution-OpenFPGA/HEAD/Tools/technos_gfx_repack.py --------------------------------------------------------------------------------