From 99a986f8019191af0da0a4a7b9f2e31f8287b0ae Mon Sep 17 00:00:00 2001 From: sin365 <353374337@qq.com> Date: Thu, 20 Feb 2025 18:29:10 +0800 Subject: [PATCH] =?UTF-8?q?Essgss.Unity=E8=BF=9B=E4=B8=80=E6=AD=A5?= =?UTF-8?q?=E6=8E=A5=E5=85=A5=EF=BC=8C=E5=88=97=E8=A1=A8=EF=BC=8C=E6=B8=B2?= =?UTF-8?q?=E6=9F=93=EF=BC=8C=E3=80=82=E5=85=A8=E5=B1=80=E6=A0=B8=E5=BF=83?= =?UTF-8?q?=E5=BD=95=E9=9F=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Essgee.Unity/Emulation/EmulatorHandler.cs | 5 + .../Resources/EssgeeUnity/EssgeeUnity.prefab | 21 +- .../Assets/Resources/EssgeeUnity/emu.meta | 8 + .../Assets/Resources/EssgeeUnity/emu/Dat.meta | 8 + .../emu/Dat/Coleco - ColecoVision.dat.bytes | 788 ++ .../Dat/Coleco - ColecoVision.dat.bytes.meta | 7 + .../Dat/Nintendo - Game Boy Color.dat.bytes | 5912 +++++++++++++++ .../Nintendo - Game Boy Color.dat.bytes.meta | 7 + .../emu/Dat/Nintendo - Game Boy.dat.bytes | 6628 +++++++++++++++++ .../Dat/Nintendo - Game Boy.dat.bytes.meta | 7 + .../emu/Dat/Sega - Game Gear.dat.bytes | 2060 +++++ .../emu/Dat/Sega - Game Gear.dat.bytes.meta | 7 + .../Sega - Master System - Mark III.dat.bytes | 2332 ++++++ ... - Master System - Mark III.dat.bytes.meta | 7 + .../emu/Dat/Sega - SG-1000.dat.bytes | 844 +++ .../emu/Dat/Sega - SG-1000.dat.bytes.meta | 7 + .../emu/MetadataDatabase.json.bytes | 294 + .../emu/MetadataDatabase.json.bytes.meta | 7 + .../Assets/Resources/IMPORTENT.prefab | 112 + .../Resources/UIPrefabs/LaunchUI.prefab | 245 + .../Game_MasterSystem_Template.prefab | 1129 +++ .../Game_MasterSystem_Template.prefab.meta | 7 + .../Assets/Script/AppMain/App.cs | 2 + .../Emulator/EssgeeEmulator/UEssgee.cs | 28 +- .../UEssgeeInterface/UEGKeyboard.cs | 4 +- .../UEssgeeInterface/UEGResources.cs | 2 +- .../UEssgeeInterface/UEGSoundPlayer.cs | 82 +- .../UEssgeeInterface/UEGVideoPlayer.cs | 5 +- .../AppMain/Emulator/MameEmulator/UMAME.cs | 8 + .../UniInterface/UniSoundPlayer.cs | 14 +- .../Emulator/NesEmulator/AudioProvider.cs | 6 + .../Emulator/NesEmulator/NesEmulator.cs | 5 + .../Assets/Script/AppMain/IEmuCore.cs | 3 +- .../Assets/Script/AppMain/Manager/AppEmu.cs | 9 + .../Manager/AppSettings/ScreenScaler.cs | 8 + .../Script/AppMain/Manager/RomLib/RomFile.cs | 41 +- .../Assets/Script/AppMain/MonoCom/AudioMgr.cs | 273 + .../Script/AppMain/MonoCom/AudioMgr.cs.meta | 2 + .../Assets/Script/AppMain/MonoCom/TickLoop.cs | 5 + 39 files changed, 20865 insertions(+), 74 deletions(-) create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Coleco - ColecoVision.dat.bytes create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Coleco - ColecoVision.dat.bytes.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy Color.dat.bytes create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy Color.dat.bytes.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy.dat.bytes create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy.dat.bytes.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Game Gear.dat.bytes create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Game Gear.dat.bytes.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Master System - Mark III.dat.bytes create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Master System - Mark III.dat.bytes.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - SG-1000.dat.bytes create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - SG-1000.dat.bytes.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/MetadataDatabase.json.bytes create mode 100644 AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/MetadataDatabase.json.bytes.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/SubMenuItemTemplates/Game_MasterSystem_Template.prefab create mode 100644 AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/SubMenuItemTemplates/Game_MasterSystem_Template.prefab.meta create mode 100644 AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/AudioMgr.cs create mode 100644 AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/AudioMgr.cs.meta diff --git a/AxibugEmuOnline.Client/Assets/Plugins/Essgee.Unity/Emulation/EmulatorHandler.cs b/AxibugEmuOnline.Client/Assets/Plugins/Essgee.Unity/Emulation/EmulatorHandler.cs index 2f061bc8..74df43e4 100644 --- a/AxibugEmuOnline.Client/Assets/Plugins/Essgee.Unity/Emulation/EmulatorHandler.cs +++ b/AxibugEmuOnline.Client/Assets/Plugins/Essgee.Unity/Emulation/EmulatorHandler.cs @@ -87,6 +87,7 @@ namespace Essgee.Emulation public event EventHandler PauseChanged; GameMetadata currentGameMetadata; + public int AxiEmuRunFrame { get; private set; } public bool IsCartridgeLoaded { get; private set; } @@ -187,6 +188,8 @@ namespace Essgee.Emulation emulator.Load(romData, ramData, currentGameMetadata.MapperType); IsCartridgeLoaded = true; + + AxiEmuRunFrame = 0; } public void SaveCartridge() @@ -244,6 +247,7 @@ namespace Essgee.Emulation } emulator.RunFrame(); + AxiEmuRunFrame++; if (configChangeRequested) @@ -396,6 +400,7 @@ namespace Essgee.Emulation public void SetStateData(byte[] data) { emulator.LoadAxiStatus(data.ToAxiEssgssStatusData()); + AxiEmuRunFrame = 0; } } } diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/EssgeeUnity.prefab b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/EssgeeUnity.prefab index 4e39a45d..6390a1c3 100644 --- a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/EssgeeUnity.prefab +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/EssgeeUnity.prefab @@ -10,8 +10,8 @@ GameObject: m_Component: - component: {fileID: 1697793132499616605} - component: {fileID: 736821097941426334} - - component: {fileID: 1479243231233559559} - - component: {fileID: 7015183808095004452} + - component: {fileID: 8271949118339714180} + - component: {fileID: 3772519294605500755} - component: {fileID: 6011412303868462633} m_Layer: 0 m_Name: EssgeeUnity @@ -48,7 +48,8 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: ee8551c24327cd04a81ffb5de0146f9c, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!114 &1479243231233559559 + graphicsHandler: {fileID: 0} +--- !u!114 &8271949118339714180 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -57,16 +58,16 @@ MonoBehaviour: m_GameObject: {fileID: 70883439141109485} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f675565b1f4ed7744a8ea9788c92429d, type: 3} + m_Script: {fileID: 11500000, guid: ac6bf3b2881889b418e5926193ca59f4, type: 3} m_Name: m_EditorClassIdentifier: - mWidth: 160 - mHeight: 144 + mWidth: 0 + mHeight: 0 mDataLenght: 0 m_rawBufferWarper: {fileID: 0} m_drawCanvas: {fileID: 1415903496979242101} m_drawCanvasrect: {fileID: 4829774629647575852} ---- !u!114 &7015183808095004452 +--- !u!114 &3772519294605500755 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -75,10 +76,12 @@ MonoBehaviour: m_GameObject: {fileID: 70883439141109485} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 89abab1d3b1020340a147d74e60751ce, type: 3} + m_Script: {fileID: 11500000, guid: a6b878f13700e454ebfa9b7eb26ad804, type: 3} m_Name: m_EditorClassIdentifier: m_as: {fileID: 6011412303868462633} + sampleRate: 44100 + channle: 2 --- !u!82 &6011412303868462633 AudioSource: m_ObjectHideFlags: 0 @@ -296,7 +299,7 @@ Canvas: m_GameObject: {fileID: 5558964681998005947} m_Enabled: 1 serializedVersion: 3 - m_RenderMode: 0 + m_RenderMode: 1 m_Camera: {fileID: 0} m_PlaneDistance: 100 m_PixelPerfect: 0 diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu.meta b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu.meta new file mode 100644 index 00000000..c4288a8e --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ca63a78de14dd594698d4ce73bd19778 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat.meta b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat.meta new file mode 100644 index 00000000..a923e24d --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 149fd707428889a42bd2361a5699a5b4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Coleco - ColecoVision.dat.bytes b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Coleco - ColecoVision.dat.bytes new file mode 100644 index 00000000..675356bd --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Coleco - ColecoVision.dat.bytes @@ -0,0 +1,788 @@ + + + +
+ Coleco - ColecoVision + Coleco - ColecoVision + 20190425-195043 + C. V. Reynolds, kazumi213, omonim2007, xuom2 + No-Intro + http://www.no-intro.org +
+ + [BIOS] ColecoVision (USA, Europe) + + + + 2010 - The Graphic Action Game (USA) + + + + 2010 - The Graphic Action Game (USA) (Beta) + + + + A.E. (USA) (Proto) + + + + Activision Decathlon, The (USA) + + + + Adam's Musicbox Demo (USA) (Demo) + + + + Alcazar - The Forgotten Fortress (USA) + + + + Alphabet Zoo (USA) + + + + Amazing Bumpman (USA) + + + + Antarctic Adventure (USA, Europe) + + + + Antarctic Adventure (USA, Europe) (Beta) + + + + Aquattack (USA) + + + + Artillery Duel (USA) + + + + BC's Quest for Tires (USA) + + + + BC's Quest for Tires (Canada) + + + + BC's Quest for Tires II - Grog's Revenge (Canada) + + + + BC's Quest for Tires II - Grog's Revenge (USA) + + + + Beamrider (USA) + + + + Berenstain Bears, The (USA) (Demo) + + + + Blockade Runner (USA) + + + + Boulder Dash (USA) + + + + Boulder Dash (USA) (Beta) + + + + Brain Strainers (USA) + + + + Buck Rogers - Planet of Zoom (USA, Europe) + + + + Bump 'n' Jump (USA, Europe) (Beta) + + + + Bump 'n' Jump (USA, Europe) + + + + BurgerTime (USA, Europe) (Beta) + + + + BurgerTime (USA, Europe) + + + + Cabbage Patch Kids - Adventures in the Park (USA, Europe) + + + + Cabbage Patch Kids - Adventures in the Park (USA, Europe) (Beta 1) + + + + Cabbage Patch Kids - Adventures in the Park (USA, Europe) (Beta 2) + + + + Cabbage Patch Kids - Picture Show (USA) + + + + Campaign '84 (USA) + + + + Carnival (USA, Europe) + + + + Castelo (Brazil) (Unl) + + + + CAT S.O.S. Game, The (USA) (Promo) + + + + Centipede (USA) + + + + Choplifter! (USA) + + + + Chuck Norris - Superkicks (USA) + + + + ColecoVision Monitor Test (USA, Europe) + + + + Congo Bongo (USA) + + + + Cosmic Avenger (USA, Europe) + + + + Cosmic Crisis (Europe) + + + + Dam Busters, The (Canada) + + + + Dam Busters, The (USA) + + + + Dance Fantasy (USA) + + + + Defender (USA) + + + + Destructor (USA, Europe) + + + + Dig Dug (USA) (Proto) + + + + Donkey Kong (USA, Europe) (v1.1) + + + + Donkey Kong (USA) + + + + Donkey Kong Junior (USA, Europe) + + + + Dr. Seuss - Fix-Up the Mix-Up Puzzler (USA) + + + + Dragon's Lair (USA) (Proto) + + + + Dragonfire (USA) + + + + Dukes of Hazzard, The (USA) + + + + Escape from the Mindmaster (USA) (Proto) + + + + Evolution (Canada) + + + + Evolution (USA) (Unl) + + + + Facemaker (USA) + + + + Fall Guy (Europe) (Proto) + + + + Fathom (USA) + + + + Final Test Cartridge (USA) + + + + Fireman (Europe) + + + + Flipper Slipper (USA) (Unl) + + + + Flipper Slipper (USA, Europe) + + + + Fortune Builder (USA) + + + + Fraction Fever (USA) + + + + Frantic Freddy (USA) + + + + Frenzy (USA, Europe) + + + + Frogger (USA) + + + + Frogger II - ThreeeDeep! (USA) + + + + Front Line (USA, Europe) + + + + Front Line (USA, Europe) (Green Version) + + + + Galaxian (USA) + + + + Gateway to Apshai (USA, Europe) + + + + Gorf (USA, Europe) + + + + Gust Buster (USA) + + + + Gyruss (USA) + + + + Gyruss (USA) (Beta) + + + + H.E.R.O. - Helicopter Emergency Rescue Operation (USA) + + + + Heist, The (USA) + + + + Illusions (USA) + + + + It's Only Rock 'N' Roll (USA) + + + + James Bond 007 (USA) + + + + Joust (USA) (Proto) + + + + Jukebox (USA) + + + + Julius Erving and Larry Bird Go - One-on-One (USA) + + + + Jumpman Junior (USA, Europe) + + + + Jungle Hunt (USA) + + + + Ken Uston Blackjack-Poker (USA, Europe) + + + + Keystone Kapers (USA) + + + + Lady Bug (USA, Europe) + + + + Learning with Leeper (USA) + + + + Linking Logic (USA) + + + + Logic Levels (USA) + + + + Looping (USA, Europe) + + + + Lord of the Dungeon (USA) (Beta) + + + + M.A.S.H (Europe) (Proto) + + + + Matt Patrol (USA) (Proto) + + + + Matt Patrol (USA) (Proto) (Alt 1) + + + + Memory Manor (USA) + + + + Meteoric Shower (Europe) + + + + Miner 2049er Starring Bounty Bob (USA, Europe) + + + + Miner 2049er Starring Bounty Bob (USA, Europe) (v1.1) + + + + Monkey Academy (USA) + + + + Monkey Academy (USA) (Beta) + + + + Montezuma's Revenge (USA) + + + + Moonsweeper (USA, Europe) + + + + Motocross Racer (USA) + + + + Mountain King (USA) + + + + Mouse Trap (USA, Europe) + + + + Mr. Do! (USA, Europe) + + + + Mr. Do!'s Castle (USA) + + + + Nova Blast (USA, Europe) + + + + Number Bumper (USA) (Beta) + + + + Oil's Well (USA) + + + + Omega Race (USA, Europe) + + + + Orbit (USA) (Proto) + + + + Pac-Man (USA) (Proto) + + + + Pepper II (USA, Europe) + + + + Pitfall II - Lost Caverns (USA) + + + + Pitfall! (USA) + + + + Pitstop (USA) + + + + Pitstop (USA, Europe) + + + + Popeye (USA) + + + + Porky's (USA) (Proto) + + + + Power Lords - Quest for Volcan (USA) (Proto) + + + + Q-bert (USA) + + + + Q-bert's Qubes (USA) + + + + Quest for Quintana Roo (USA) + + + + River Raid (USA) + + + + Robin Hood (USA) + + + + Roc 'N Rope (USA, Europe) + + + + Rock n' Bolt (USA) + + + + Rocky - Super Action Boxing (USA, Europe) + + + + Rolloverture (USA) + + + + Root Beer Tapper (USA) + + + + Sammy Lightfoot (USA) + + + + Sector Alpha (USA) + + + + Sewer Sam (USA) + + + + Sir Lancelot (USA) + + + + Skiing (USA) + + + + Slither (USA, Europe) + + + + Slurpy (USA) + + + + Smurf - Paint 'n' Play WORKSHOP (USA, Europe) + + + + Smurf - Rescue in Gargamel's Castle (USA, Europe) + + + + Smurfs Save the Day (USA) (Demo) + + + + Space Fury (USA, Europe) + + + + Space Panic (USA, Europe) + + + + Spectron (USA) + + + + Spy Hunter (USA) + + + + Spy Hunter (USA) (Beta) + + + + Squish'em Featuring Sam (USA) + + + + Star Trek - Strategic Operations Simulator (USA) + + + + Star Wars - The Arcade Game (USA) + + + + Steamroller (USA) (Proto) + + + + Strike It! (Europe) + + + + Subroc (USA, Europe) + + + + Super Action Baseball (USA) + + + + Super Action Football (USA) + + + + Super Action Football (Europe) + + + + Super Cobra (USA) + + + + Super Controller Tester (USA) + + + + Super Cross Force (USA, Europe) + + + + Super DK! (USA) (Proto) + + + + Super DK! Junior (USA) (Proto) + + + + Super Sketch - Sketch Master (USA) (Program) + + + + Sword and the Sorcerer, The (USA) (Demo) + + + + Tank Wars (Europe) + + + + Tarzan (USA, Europe) + + + + Telly Turtle (USA) + + + + Threshold (USA) + + + + Time Pilot (USA, Europe) + + + + TOMARC the Barbarian (USA) + + + + Tournament Tennis (USA) + + + + Tunnels & Trolls (USA) (Demo) + + + + Turbo (USA, Europe) + + + + Tutankham (USA) + + + + Up 'n Down (USA) + + + + Venture (USA, Europe) + + + + Victory (USA) + + + + Victory (Europe) + + + + Video Hustler (Europe) (Proto 2) + + + + Video Hustler (Europe) (Proto 1) + + + + War Room (USA) + + + + WarGames (USA, Europe) + + + + Wing War (USA) + + + + Wizard of Id's - WizMath (USA) + + + + Word Feud (USA) + + + + Yolk's on You, The (Europe) (Proto) + + + + Zaxxon (USA, Europe) + + + + Zaxxon (Taiwan) (En) (Unl) + + + + Zenji (USA) + + +
diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Coleco - ColecoVision.dat.bytes.meta b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Coleco - ColecoVision.dat.bytes.meta new file mode 100644 index 00000000..72319bd0 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Coleco - ColecoVision.dat.bytes.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4d87a6b4df8b98d438c82482bb6a4064 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy Color.dat.bytes b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy Color.dat.bytes new file mode 100644 index 00000000..00fab1b2 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy Color.dat.bytes @@ -0,0 +1,5912 @@ + + + +
+ Nintendo - Game Boy Color + Nintendo - Game Boy Color + 20200531-084422 + akubi, Bent, BigFred, BitLooter, C. V. Reynolds, chillerecke, coraz, darthcloud, DeadSkullzJr, Densetsu, DeriLoko3, foxe, fuzzball, Hiccup, hking0036, kazumi213, Money_114, NGEfreak, omonim2007, PPLToast, relax, Rifu, SonGoku, Tauwasser, Whovian9369, xuom2, zg + No-Intro + http://www.no-intro.org +
+ + [BIOS] Nintendo Game Boy Color Boot ROM (World) (Rev 1) + + + + [BIOS] Nintendo Game Boy Color Boot ROM (Japan) (En) + + + + 007 - The World Is Not Enough (USA, Europe) + + + + 10-Pin Bowling (USA) (Rumble Version) + + + + 10-Pin Bowling (Europe) + + + + 102 Dalmatas - Cachorros Al Rescate (Spain) + + + + 102 Dalmatians - Puppies to the Rescue (USA, Europe) + + + + 102 Dalmatiens a la Rescousse, Les (France) + + + + 102 Dalmatiner (Germany) + + + + 1942 (USA, Europe) + + + + 3-D Ultra Pinball - Thrillride (USA) (Rumble Version) + + + + 31 in 1 (Taiwan) (31B-001, Sachen) (Unl) + + + + 31-in-1 Mighty Mix (Australia) (31B-001, Sachen) (Unl) + + + + 3D Pocket Pool (Europe) (En,Fr,De,Es,It,Nl) + + + + 4 in 1 + 8 in 1 (World) (4B-001, 4B-009, 8B-001, Sachen) (Unl) + + + + 4 in 1 + 8 in 1 (World) (4B-002, 4B-004, 8B-002, Sachen) (Unl) + + + + 4 in 1 + 8 in 1 (World) (4B-005, 4B-006, 8B-003, Sachen) (Unl) + + + + 4 in 1 + 8 in 1 (World) (4B-007, 4B-008, 8B-004, Sachen) (Unl) + + + + 4x4 World Trophy (Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + 720 Degrees (USA, Europe) (GB Compatible) + + + + Action Man - Search for Base X (USA, Europe) + + + + Action Replay Online (Europe) (Unl) + + + + Adventures of the Smurfs, The (Europe) (En,Fr,De,Es,It,Nl) + + + + AirForce Delta (Japan) + + + + AirForce Delta (USA) + + + + Aladdin (Europe) (En,Fr,De,Es,It,Nl) + + + + Aladdin (USA) + + + + Alfred's Adventure (Europe) (En,Fr,De,Es,It) + + + + Alice in Wonderland (Europe) (En,Fr,De,Es) + + + + Alice in Wonderland (USA) + + + + Aliens - Thanatos Encounter (USA, Europe) + + + + All Star Tennis 2000 (Europe) (GB Compatible) + + + + All-Star Baseball 2000 (USA, Europe) + + + + All-Star Baseball 2001 (USA) + + + + Alone in the Dark - The New Nightmare (Europe) (En,Fr,De,Es,It,Nl) + + + + Alone in the Dark - The New Nightmare (USA) (En,Fr,Es) + + + + Animal Breeder 3 (Japan) (SGB Enhanced) (GB Compatible) + + + + Animal Breeder 4 (Japan) + + + + Animastar GB (Japan) + + + + Animorphs (Europe) (En,Fr,De,Es,It) + + + + Animorphs (USA) + + + + Anpfiff - Der RTL Fussball-Manager (Germany) + + + + Antz (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible) + + + + Antz (USA) (En,Fr,Es) (GB Compatible) + + + + Antz Racing (Europe) (En,Fr,De,Es,It,Nl) + + + + Antz Racing (USA) (En,Fr,De,Es,It,Nl) + + + + Antz World Sportz (Europe) (En,Fr,De,Es,It,Nl) + + + + Aqualife (Japan) (SGB Enhanced) (GB Compatible) + + + + Arle no Bouken - Mahou no Jewel (Japan) (SGB Enhanced) (GB Compatible) + + + + Armada - FX Racers (USA) + + + + Armorines - Project S.W.A.R.M. (USA, Europe) (En,De) + + + + Army Men (USA, Europe) (En,Fr,De) + + + + Army Men - Air Combat (USA, Europe) (En,Fr,De) + + + + Army Men - Sarge's Heroes 2 (USA, Europe) (En,Fr,De) + + + + Army Men 2 (USA, Europe) (En,Fr,De) + + + + Arthur's Absolutely Fun Day! (USA) + + + + Asterix & Obelix (Europe) (En,Fr,De,Es) + + + + Asterix & Obelix Contre Cesar (Europe) (En,Fr,De,Es,Nl) (GB Compatible) + + + + Asterix - Sur la Trace D'Idefix (Europe) (En,Fr,De,Es,It,Nl) + + + + Asteroids (USA, Europe) (GB Compatible) + + + + Atlantis - The Lost Empire (Europe) (En,Es,It) + + + + Atlantis - The Lost Empire (Europe) (Fr,De,Nl) + + + + Atlantis - The Lost Empire (USA, Europe) + + + + Atsumete Asobu Kuma no Pooh-san - Mori no Takaramono (Japan) + + + + ATV Racing (Europe) (Unl) + + + + ATV Racing & Karate Joe (Europe) (Unl) + + + + ATV Racing & Karate Joe (Europe) (Alt) (Unl) + + + + Austin Powers - Oh, Behave! (Europe) (En,Fr,De,Es,It) + + + + Austin Powers - Oh, Behave! (USA) + + + + Austin Powers - Welcome to my Underground Lair! (Europe) (En,Fr,De,Es,It) + + + + Austin Powers - Welcome to my Underground Lair! (USA) + + + + Aventures de Buzz l'Eclair, Les (France) + + + + Azarashi Sentai Inazuma - Dokidoki Daisakusen! (Japan) + + + + Azure Dreams (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible) + + + + Azure Dreams (USA) (SGB Enhanced) (GB Compatible) + + + + B-Daman Bakugaiden - Victory e no Michi (Japan) (SGB Enhanced) (GB Compatible) + + + + B-Daman Bakugaiden V - Final Mega Tune (Japan) + + + + Babe and Friends (Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + Babe and Friends (USA) (GB Compatible) + + + + Baby Felix - Halloween (Europe) (En,Fr,De,Es,It,Nl) + + + + Back to Earth 3D (Europe) (Demo) + + + + Backgammon (Europe) (En,Fr,De,Es) (GB Compatible) + + + + Backgammon (Japan) (GB Compatible) + + + + Bad Badtz-Maru Robo Battle (Japan) + + + + Bakukyuu Renpatsu!! Super B-Daman - Gekitan! Rising Valkyrie!! (Japan) (SGB Enhanced) (GB Compatible) + + + + Bakusou Dekotora Densetsu GB Special - Otoko Dokyou no Tenka Touitsu (Japan) + + + + Bakusou Senki Metal Walker GB - Koutetsu no Yuujou (Japan) (GB Compatible) + + + + Bakuten Shoot Beyblade (Japan) + + + + Ballistic (USA) (GB Compatible) + + + + Balloon Fight GB (Japan) (SGB Enhanced, GB Compatible) (NP) + + + + Barbie - Aventura Submarina (Spain) (GB Compatible) + + + + Barbie - Avventure nell'Oceano (Italy) (GB Compatible) + + + + Barbie - Chasse au Tresor Sous-Marine (France) (GB Compatible) + + + + Barbie - Diepzee Avontuur (Netherlands) (GB Compatible) + + + + Barbie - Fashion Pack Games (USA, Europe) (GB Compatible) + + + + Barbie - Magic Genie Adventure (USA) + + + + Barbie - Meeres Abenteuer (Germany) (GB Compatible) + + + + Barbie - Ocean Discovery (Europe) (GB Compatible) + + + + Barbie - Ocean Discovery (USA) (GB Compatible) + + + + Barbie - Pet Rescue (Europe) (En,Fr,De,Es,It) + + + + Barbie - Pet Rescue (USA) + + + + Barca Total 2000 (Europe) (En,Fr,De,Es,It,Nl,Ca) + + + + Barcode Taisen Bardigun (Japan) (SGB Enhanced) (GB Compatible) + + + + Barcode Taisen Bardigun (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Bass Masters Classic (USA, Europe) (GB Compatible) + + + + Batman - Chaos in Gotham (Europe) (En,Fr,De,Es,It,Nl) + + + + Batman - Chaos in Gotham (USA) + + + + Batman Beyond - Return of the Joker (Japan) (NP) + + + + Batman Beyond - Return of the Joker (USA) + + + + Batman of the Future - Return of the Joker (Europe) (En,Fr,De) + + + + Battle Fishers (Japan) + + + + Battleship (USA, Europe) (GB Compatible) + + + + BattleTanx (Europe) (En,Fr,De) + + + + BattleTanx (USA) + + + + Beach'n Ball (Europe) (En,Fr,De,Es,It) + + + + Beast Fighter (Taiwan) (En) (Sachen) (Unl) + + + + Beatmania GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Beatmania GB - Gotcha Mix 2 (Japan) + + + + Beatmania GB 2 - Gotcha Mix (Japan) (SGB Enhanced) (GB Compatible) + + + + Beauty and the Beast - A Board Game Adventure (Europe) (En,Fr,De,Es,It) (SGB Enhanced) (GB Compatible) + + + + Beauty and the Beast - A Board Game Adventure (USA, Australia) (SGB Enhanced) (GB Compatible) + + + + Benjamin Bluemchen - Ein verrueckter Tag im Zoo (Germany) + + + + Beyblade - Fighting Tournament (Japan) + + + + Bibi Blocksberg - Im Bann der Hexenkugel (Germany) + + + + Bibi und Tina - Fohlen Felix in Gefahr (Germany) + + + + Bikkuriman 2000 - Charging Card GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Billy Bob's Huntin' 'n' Fishin' (USA, Europe) + + + + Biohazard Gaiden (Japan) + + + + Bionic Commando - Elite Forces (USA, Australia) + + + + Black Bass - Lure Fishing (USA, Europe) (GB Compatible) + + + + Black Onyx, The (Japan) + + + + Blade (USA, Europe) + + + + Blaster Master - Enemy Below (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Blue's Clues - Blue's Alphabet Book (USA) + + + + Boarder Zone (USA) + + + + Bob the Builder - Fix it Fun! (Europe) (En,Fr,De,Es,Nl) + + + + Bob the Builder - Fix it Fun! (Europe) (En,Fr,It) + + + + Bob the Builder - Fix it Fun! (Europe) (En,Sv,No,Da,Fi) + + + + Bob the Builder - Fix it Fun! (USA) + + + + Boku no Camp-jou (Japan) + + + + Bokujou Monogatari 2 GB (Japan) (GB Compatible) + + + + Bokujou Monogatari 3 GB - Boy Meets Girl (Japan) + + + + Bokujou Monogatari 3 GB - Boy Meets Girl (Japan) (Rev 1) + + + + Bomber Man Max - Ain Version (Japan) + + + + Bomber Man Max - Hikari no Yuusha (Japan) + + + + Bomber Man Max - Yami no Senshi (Japan) + + + + Bomber Man Quest (Japan) (SGB Enhanced) (GB Compatible) + + + + Bomberman Max - Blue Champion (USA) + + + + Bomberman Max - Red Challenger (USA) + + + + Bomberman Quest (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible) + + + + Bomberman Quest (USA) (SGB Enhanced) (GB Compatible) + + + + Bomberman Selection (Korea) + + + + Bouken! Dondoko-tou (Japan) + + + + Brave Saga - Shinshou Astaria (Japan) + + + + Buffy the Vampire Slayer (USA, Europe) + + + + Bug's Life, A (Europe) (SGB Enhanced) (GB Compatible) + + + + Bug's Life, A (USA) (SGB Enhanced) (GB Compatible) + + + + Bugs Bunny & Lola Bunny - Operation Carrot Patch (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible) + + + + Bugs Bunny - Crazy Castle 3 (Japan) (GB Compatible) + + + + Bugs Bunny - Crazy Castle 3 (USA, Europe) (GB Compatible) + + + + Bugs Bunny - Crazy Castle 4 (Japan) + + + + Bugs Bunny et le Chateau des Catastrophes (France) + + + + Bugs Bunny in - Crazy Castle 4 (Europe) + + + + Bugs Bunny in - Crazy Castle 4 (USA) + + + + Bundesliga Stars 2001 (Germany) + + + + Burai Senshi Color (Japan) + + + + Burger Burger Pocket - Hamburger Simulation (Japan) (SGB Enhanced) (GB Compatible) + + + + Burger Paradise International (Japan) + + + + Bust-A-Move 4 (USA, Europe) (GB Compatible) + + + + Bust-A-Move Millennium (USA, Europe) + + + + Buzz Lightyear of Star Command (USA, Europe) + + + + Caesars Palace II (USA, Europe) + + + + Cannon Fodder (Europe) (En,Fr,De,Es,It) + + + + Cannon Fodder (USA) (En,Fr,De,Es,It) + + + + Cannon Fodder (Europe) (En,Fr,De,Es,It) (Beta) + + + + Captain Buzz Lightyear - Star Command (Germany) + + + + Card Sharks (USA) (Proto) + + + + Cardcaptor Sakura - Itsumo Sakura-chan to Issho (Japan) (GB Compatible) + + + + Cardcaptor Sakura - Itsumo Sakura-chan to Issho (Japan) (Rev 1) (GB Compatible) + + + + Cardcaptor Sakura - Itsumo Sakura-chan to Issho (Japan) (Rev 2) (GB Compatible) + + + + Cardcaptor Sakura - Tomoeda Shougakkou Daiundoukai (Japan) + + + + Carl Lewis Athletics 2000 (Europe) (En,Fr,De,Es,It,Nl) + + + + Carl Lewis Athletics 2000 (Europe) (En,Fr,De,Es,It,Nl) (Beta) + + + + Carmageddon - Carpocalypse Now (Germany) + + + + Carmageddon - Carpocalypse Now (USA, Europe) (En,Fr,Es,It) + + + + Casper (Europe) (En,Es,It) + + + + Casper (Europe) (En,Fr,De) + + + + Casper (USA) + + + + Caterpillar Construction Zone (USA, Europe) (GB Compatible) + + + + Catwoman (Europe) + + + + Catwoman (USA) + + + + Catz (Europe) + + + + Catz (USA) + + + + Centipede (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible) + + + + Centipede (USA) (GB Compatible) + + + + Championship Motocross 2001 featuring Ricky Carmichael (USA, Europe) + + + + Chase H.Q. - Secret Police (Europe) (SGB Enhanced) (GB Compatible) + + + + Chase H.Q. - Secret Police (USA) (SGB Enhanced) (GB Compatible) + + + + Checkmate (Japan) (En,Ja) (GB Compatible) + + + + Chee-Chai Alien (Japan) (Rumble Version) + + + + Chessmaster (USA, Europe) (GB Compatible) + + + + Chi to Ase to Namida no Koukou Yakyuu (Japan) + + + + Chibi Maruko-chan - Go Chounai Minna de Game Da yo! (Japan) + + + + Chicken Run (USA, Europe) (En,Fr,De,Es,It) + + + + Chiki Chiki Machine Mou Race (Japan) + + + + Choro Q - Hyper Customable GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Classic Bubble Bobble (Europe) (SGB Enhanced) (GB Compatible) + + + + Classic Bubble Bobble (USA) (SGB Enhanced) (GB Compatible) + + + + Colin McRae Rally (Europe) + + + + Columns GB - Tezuka Osamu Characters (Japan) (SGB Enhanced) (GB Compatible) + + + + Command Master (Japan) + + + + Commander Keen (USA, Europe) + + + + Conker's Pocket Tales (USA, Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible) + + + + Cool Bricks (Europe) (En,Fr,De,Es,It) + + + + Cool Hand (Europe) (En,Fr,De) (GB Compatible) + + + + Crazy Bikers (Europe) + + + + Crazy Climber (USA) (Proto 2) (2000-11-21) + + + + Crazy Climber (USA) (Proto 1) (2000-09-22) + + + + Croc (USA, Europe) + + + + Croc 2 (USA, Europe) + + + + Cross Country Racing (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible) + + + + Cross Hunter - Monster Hunter Version (Japan) + + + + Cross Hunter - Treasure Hunter Version (Japan) + + + + Cross Hunter - X Hunter Version (Japan) + + + + Cruis'n Exotica (USA) + + + + Crystalis (USA) + + + + Cubix - Robots for Everyone - Race 'n Robots (USA) (En,Fr,De,Es,It) + + + + CyberTiger (USA, Europe) + + + + Cyborg Kuro-chan - Devil Fukkatsu (Japan) + + + + Cyborg Kuro-chan 2 - White Woods no Gyakushuu (Japan) + + + + Daa! Daa! Daa! - Totsuzen Card de Battle de Uranai de! (Japan) + + + + Daffy Duck - Fowl Play (USA, Europe) (GB Compatible) + + + + Daffy Duck - Subette Koron de Oogane Mochi (Japan) (GB Compatible) + + + + Daikaijuu Monogatari - Poyon no Dungeon Room (Japan) (SGB Enhanced) (GB Compatible) + + + + Daikaijuu Monogatari - Poyon no Dungeon Room 2 (Japan) + + + + Daikaijuu Monogatari - The Miracle of the Zone II (Japan) (SGB Enhanced) (GB Compatible) + + + + Daikatana (USA) (Proto) (2000-04-19) + + + + Daikatana GB (Japan) (NP) + + + + Daiku no Gen-san - Kachikachi no Tonkachi ga Kachi (Japan) (SGB Enhanced) (GB Compatible) + + + + Dance Dance Revolution GB (Japan) + + + + Dance Dance Revolution GB - Disney Mix (Japan) + + + + Dance Dance Revolution GB 2 (Japan) + + + + Dance Dance Revolution GB 3 (Japan) + + + + Dancing Furby (Japan) (GB Compatible) + + + + Data-Navi Pro Yakyuu (Japan) + + + + Data-Navi Pro Yakyuu 2 (Japan) + + + + Dave Mirra Freestyle BMX (USA, Europe) + + + + David Beckham Soccer (Europe) (En,Fr,De,Es,It) + + + + David O'Leary's Total Soccer 2000 (Europe) (En,Fr,De,Es,It,Nl) + + + + Deadly Skies (Europe) (En,Fr,De) + + + + Dear Daniel no Sweet Adventure - Kitty-chan o Sagashite (Japan) (SGB Enhanced) (GB Compatible) + + + + Deer Hunter (USA) + + + + Deja Vu I & II (Japan) + + + + Deja Vu I & II - The Casebooks of Ace Harding (Europe) (En,Fr) + + + + Deja Vu I & II - The Casebooks of Ace Harding (Europe) (Fr,De) + + + + Deja Vu I & II - The Casebooks of Ace Harding (USA) + + + + Dejiko no Mahjong Party (Japan) + + + + Denki Blocks! (Europe) (En,Fr,De,Es,It) + + + + Densha de Go! (Japan) + + + + Densha de Go! 2 (Japan) + + + + Dexter's Laboratory - Robot Rampage (USA, Europe) + + + + Dino Breeder 3 - Gaia Fukkatsu (Japan) (SGB Enhanced) (GB Compatible) + + + + Dino Breeder 4 (Japan) (SGB Enhanced) (GB Compatible) + + + + Dinosaur (Europe) (En,Fr,De,Es,It) + + + + Dinosaur (USA) + + + + Dinosaur (USA) (Beta) + + + + Dinosaur'us (Europe) (En,Fr,De,Es,It,Nl) + + + + Diva Starz (Europe) + + + + Diva Starz (France) + + + + Diva Starz (Germany) + + + + Diva Starz - Mall Mania (USA) + + + + Dogz (Europe) + + + + Dogz (USA) + + + + Dokapon! - Millennium Quest (Japan) (SGB Enhanced) (GB Compatible) + + + + Doki x Doki Sasete!! (Japan) + + + + Dokidoki Densetsu - Mahoujin Guruguru (Japan) + + + + Donald Duck - Daisy o Sukue! (Japan) + + + + Donald Duck - Goin' Quackers (USA) (En,Fr,De,Es,It) + + + + Donald Duck - Quack Attack (Europe) (En,Fr,De,Es,It) + + + + Donkey Kong 2001 (Japan) + + + + Donkey Kong Country (USA, Europe) (En,Fr,De,Es,It) + + + + Donkey Kong Country (USA, Europe) (En,Fr,De,Es,It) (Sample) + + + + Donkey Kong GB - Dinky Kong & Dixie Kong (Japan) + + + + Doraemon - Aruke Aruke Labyrinth (Japan) (GB Compatible) + + + + Doraemon - Kimi to Pet no Monogatari (Japan) (GB Compatible) + + + + Doraemon Kart 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Doraemon Memories - Nobita no Omoide Daibouken (Japan) (GB Compatible) + + + + Doraemon no Quiz Boy (Japan) + + + + Doraemon no Quiz Boy (Japan) (Rev 1) + + + + Doraemon no Quiz Boy 2 (Japan) + + + + Doraemon no Study Boy - Gakushuu Kanji Game (Japan) + + + + Doraemon no Study Boy - Kanji Yomikaki Master (Japan) + + + + Doraemon no Study Boy - Kuku Game (Japan) + + + + Doug - La Grande Aventure (France) + + + + Doug's Big Game (Germany) + + + + Doug's Big Game (USA) + + + + Doug's Big Game (Europe) + + + + Dr. Rin ni Kiitemite! - Koi no Rin Fuusui (Japan) + + + + Dracula - Crazy Vampire (Europe) (En,Fr,De,Es,It) + + + + Dracula - Crazy Vampire (USA) + + + + Dragon Ball Z - Densetsu no Chou Senshi-tachi (Japan) + + + + Dragon Ball Z - Guerreros de Leyenda (Spain) + + + + Dragon Ball Z - I Leggendari Super Guerrieri (Italy) + + + + Dragon Ball Z - Legendaere Superkaempfer (Germany) + + + + Dragon Ball Z - Legendary Super Warriors (Europe) + + + + Dragon Ball Z - Legendary Super Warriors (USA) + + + + Dragon Ball Z - Les Guerriers Legendaires (France) + + + + Dragon Dance (USA) (SGB Enhanced) (GB Compatible) + + + + Dragon Quest I & II (Japan) (SGB Enhanced) (GB Compatible) + + + + Dragon Quest III - Soshite Densetsu e... (Japan) + + + + Dragon Quest Monsters (Germany) (SGB Enhanced) (GB Compatible) + + + + Dragon Quest Monsters - Terry no Wonderland (Japan) (SGB Enhanced) (GB Compatible) + + + + Dragon Quest Monsters - Terry no Wonderland (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Dragon Quest Monsters 2 - Maruta no Fushigi na Kagi - Iru no Bouken (Japan) (SGB Enhanced) (GB Compatible) + + + + Dragon Quest Monsters 2 - Maruta no Fushigi na Kagi - Ruka no Tabidachi (Japan) (SGB Enhanced) (GB Compatible) + + + + Dragon Quest Monsters 2 - Maruta no Fushigi na Kagi - Ruka no Tabidachi (Japan) (Rev 1) + + + + Dragon Tales - Dragon Adventures (USA) + + + + Dragon Tales - Dragon Wings (Europe) + + + + Dragon Tales - Dragon Wings (USA) + + + + Dragon Warrior I & II (USA) (SGB Enhanced) (GB Compatible) + + + + Dragon Warrior III (USA) + + + + Dragon Warrior Monsters (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Dragon Warrior Monsters 2 - Cobi's Journey (USA) (SGB Enhanced) (GB Compatible) + + + + Dragon Warrior Monsters 2 - Tara's Adventure (USA) (SGB Enhanced) (GB Compatible) + + + + Dragon's Lair (USA, Europe) (En,Ja,Fr,De,Es,Zh) + + + + Driver (Europe) (En,Fr,De,Es,It) + + + + Driver - You are the Wheelman (USA) (En,Fr,De,Es,It) + + + + Dropzone (Europe) (GB Compatible) + + + + DT - Lords of Genomes (Japan) (SGB Enhanced) (GB Compatible) + + + + Duke Nukem (Europe) (En,Fr,De,Es,It) + + + + Duke Nukem (USA) (En,Fr,De,Es,It) + + + + Dukes of Hazzard, The - Racing for Home (Europe) (En,Fr,De) + + + + Dukes of Hazzard, The - Racing for Home (USA) + + + + Dungeon Savior (Japan) (SGB Enhanced) (GB Compatible) + + + + DX Jinsei Game (Japan) + + + + DX Monopoly GB (Japan) (SGB Enhanced) (GB Compatible) + + + + DynaMike (Europe) (Proto) + + + + E.T. - The Extra-Terrestrial - Digital Companion (USA) + + + + E.T. - The Extra-Terrestrial - Escape from Planet Earth (Europe) (En,Fr,De,Es,It,Nl) + + + + E.T. - The Extra-Terrestrial - Escape from Planet Earth (USA) + + + + E.T. - The Extra-Terrestrial and the Cosmic Garden (Europe) (En,Fr,De,Es,It,Nl) + + + + E.T. - The Extra-Terrestrial and the Cosmic Garden (USA) + + + + Earthworm Jim - Menace 2 the Galaxy (USA, Europe) (GB Compatible) + + + + ECW Hardcore Revolution (USA, Europe) + + + + Elemental Fighter (USA) (Proto) + + + + Elevator Action EX (Europe) (En,Fr,De,Es,It) + + + + Elevator Action EX (Japan) + + + + Elie no Atelier GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Emperor's New Groove, The (Europe) (En,Fr,De,Es,It) + + + + Emperor's New Groove, The (USA) + + + + ESPN International Track & Field (USA) + + + + ESPN National Hockey Night (USA) + + + + Estpolis Denki - Yomigaeru Densetsu (Japan) + + + + European Super League (Europe) (En,Fr,De,Es,It) + + + + Evel Knievel (Europe) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible) + + + + Evel Knievel (USA) (GB Compatible) + + + + Extreme Ghostbusters (Europe) (En,Fr,De,Es,It,Pt) + + + + Extreme Sports with the Berenstain Bears (USA, Europe) (En,Fr,De,Es,It) + + + + F-1 World Grand Prix (Europe) (En,Fr,De,Es) + + + + F-1 World Grand Prix (Europe) (Beta) + + + + F-18 Thunder Strike (USA, Europe) + + + + F.A. Premier League Stars 2001, The (Europe) + + + + F1 Championship Season 2000 (Europe) (En,Fr,De,Es,It) + + + + F1 Championship Season 2000 (Brazil) (En,Fr,De,Es,It) + + + + F1 Racing Championship (Europe) (En,Fr,De,Es,It) (Beta) (February, 2000) + + + + F1 Racing Championship (Europe) (En,Fr,De,Es,It) + + + + F1 World Grand Prix II for Game Boy Color (Europe) (En,Fr,De,Es) + + + + F1 World Grand Prix II for Game Boy Color (Japan) (En,Ja) + + + + F1 World Grand Prix II for Game Boy Color (USA) (En,Fr,De,Es) + + + + Fairy Kitty no Kaiun Jiten - Yousei no Kuni no Uranai Shugyou (Japan) (SGB Enhanced) (GB Compatible) + + + + Fairy Kitty no Kaiun Jiten - Yousei no Kuni no Uranai Shugyou (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Ferret Monogatari (Japan) + + + + FGB (USA) (Proto) + + + + FIFA 2000 (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Fish Files, The (Europe) (En,Fr,De,Es,It) + + + + Fix & Foxi - Episode 1 - Lupo (Europe) (En,Fr,De) + + + + Flintstones, The - Burgertime in Bedrock (Europe) (En,Fr,De,Es,It) (Beta) + + + + Flintstones, The - Burgertime in Bedrock (USA) + + + + Flintstones, The - Burgertime in Bedrock (Europe) (En,Fr,De,Es,It) + + + + Flipper & Lopaka (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da) + + + + Floracy (Europe) (Proto) (2000-10-10) + + + + Force 21 (USA) (En,Fr,De) + + + + Formula One 2000 (USA) + + + + Fort Boyard (Europe) (En,Fr,De,Es,It,Nl,Pt) + + + + Freestyle Scooter (Europe) + + + + Frogger (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible) + + + + Frogger (USA) (GB Compatible) + + + + Frogger (USA) (Rev 2) (GB Compatible) + + + + Frogger (USA) (Rev 1) (GB Compatible) + + + + Frogger 2 (USA) + + + + Frogger 2 (USA) (Rev 1) + + + + From TV Animation One Piece - Maboroshi no Grand Line Boukenki! (Japan) (SGB Enhanced) (GB Compatible) + + + + From TV Animation One Piece - Yume no Luffy Kaizokudan Tanjou! (Japan) (SGB Enhanced) (GB Compatible) + + + + From TV Animation One Piece - Yume no Luffy Kaizokudan Tanjou! (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Front Line - The Next Mission (Japan) + + + + Front Row (Japan) + + + + Full Time Soccer (Europe) (Unl) + + + + Full Time Soccer & Hang Time Basketball (Europe) (Unl) + + + + Fushigi no Dungeon - Fuurai no Shiren GB 2 - Sabaku no Majou (Japan) + + + + Gaiamaster Duel - Card Attackers (Japan) + + + + Gakkyuu Ou Yamazaki (Japan) (Rev 1) (GB Compatible) + + + + Galaga - Destination Earth (USA) + + + + Gambler Densetsu Tetsuya - Shinjuku Tenun Hen (Japan) + + + + Gambler Densetsu Tetsuya - Shinjuku Tenun Hen (Japan) (Rev 1) + + + + Game & Watch Gallery 2 (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Game & Watch Gallery 3 (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Game Boy Color (World) (Demo) (Kiosk) + + + + Game Boy Gallery 3 (Australia) (SGB Enhanced) (GB Compatible) + + + + Game Boy Gallery 3 (Japan) (SGB Enhanced) (GB Compatible) + + + + Game Boy Gallery 4 (Australia) (SGB Enhanced) (GB Compatible) + + + + Game Boy Wars 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Game Boy Wars 3 (Japan) + + + + Game Conveni 21 (Japan) (GB Compatible) + + + + Games Frenzy (Europe) (En,Fr,De) + + + + GameShark Online (USA) (Unl) + + + + Ganbare Goemon - Mononoke Douchuu Tobidase Nabebugyou! (Japan) (SGB Enhanced) (GB Compatible) + + + + Ganbare Goemon - Seikuushi Dynamites Arawaru!! (Japan) + + + + Ganbare Goemon - Tengutou no Gyakushuu (Japan) (GB Compatible) + + + + Ganbare! Nippon! Olympic 2000 (Japan) + + + + GB Harobots (Japan) + + + + GB Karan Koron Gakuen - Hanafuda Mahjong (Japan) + + + + GB Memory Multi Menu (Japan) (SGB Enhanced, GB Compatible) (NP) + + + + Geheimnis der Happy Hippo-Insel, Das (Germany) + + + + Gekido (Europe) (Proto) + + + + Gekisou Dangun Racer - Onsoku Buster Dangun Dan (Japan) + + + + Gem Gem Monster (Japan) (SGB Enhanced) (GB Compatible) + + + + Gensou Maden Saiyuuki - Sabaku no Shijin (Japan) + + + + Get Chuu Club - Minna no Konchuu Daizukan (Japan) (Rumble Version) (SGB Enhanced) (GB Compatible) + + + + Gex - Enter the Gecko (USA, Europe) (GB Compatible) + + + + Gex 3 - Deep Cover Gecko (Europe) (En,Fr,De,Es,It) + + + + Gex 3 - Deep Pocket Gecko (USA) + + + + Ghosts'n Goblins (USA, Europe) (GB Compatible) + + + + Gift (Europe) + + + + Gift (Europe) (Sample) + + + + Gifty (Germany) (En) + + + + Glocal Hexcite (Japan) (SGB Enhanced) (GB Compatible) + + + + Gobs of Games (USA) (En,Fr,De) + + + + Godzilla - The Series (Europe) (En,Fr,De) (GB Compatible) + + + + Godzilla - The Series (USA) (En,Fr,De) (GB Compatible) + + + + Godzilla - The Series - Monster Wars (Europe) (En,Fr,De) + + + + Godzilla - The Series - Monster Wars (USA) (En,Fr,De) + + + + Gold and Glory - The Road to El Dorado (Europe) (En,Fr,De,Es,It,Nl) + + + + Gold and Glory - The Road to El Dorado (USA) + + + + Golden Goal (Europe) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible) + + + + Golden Goal (Germany) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible) + + + + Golf Daisuki! (Japan) (SGB Enhanced) (GB Compatible) + + + + Golf de Ohasuta (Japan) (GB Compatible) + + + + Golf Ou - The King of Golf (Japan) (SGB Enhanced) (GB Compatible) + + + + Gonta no Okiraku Daibouken (Japan) + + + + Goraku Ou Tango! (Japan) (GB Compatible) + + + + Grand Theft Auto (Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + Grand Theft Auto (USA) (GB Compatible) + + + + Grand Theft Auto 2 (Europe) (En,Fr,De,Es,It) + + + + Grand Theft Auto 2 (USA) + + + + Grandia - Parallel Trippers (Japan) + + + + Granduel - Shinki Dungeon no Hihou (Japan) + + + + Granduel - Shinki Dungeon no Hihou (Japan) (Sample) + + + + Great Battle Pocket, The (Japan) (SGB Enhanced) (GB Compatible) + + + + Gremlins - Unleashed (Europe) (En,Fr,De,Es,It,Pt) + + + + Gremlins - Unleashed (Europe) (En,Fr,De,Es,It,Pt) (Beta) + + + + Grinch (Japan) + + + + Grinch, The (Europe) (En,Fr,De) + + + + Grinch, The (USA) + + + + Guruguru Garakutas (Japan) (SGB Enhanced) (GB Compatible) + + + + Guruguru Town Hanamaru-kun (Japan) + + + + Gute Zeiten Schlechte Zeiten Quiz (Germany) (GB Compatible) + + + + Gyouten Ningen Batseelor - Doctor Guy no Yabou (Japan) + + + + Halloween Racer (Europe) (En,Fr,De,Es,It,Pt) + + + + Hamster Club (Japan) (GB Compatible) + + + + Hamster Club - Awasete Chuu (Japan) + + + + Hamster Club - Oshiema Chuu (Japan) + + + + Hamster Club 2 (Japan) (GB Compatible) + + + + Hamster Monogatari GB + Magi Ham no Mahou Shoujo (Japan) + + + + Hamster Paradise (Japan) (SGB Enhanced) (GB Compatible) + + + + Hamster Paradise 2 (Japan) + + + + Hamster Paradise 2 (Japan) (Rev 1) + + + + Hamster Paradise 3 (Japan) + + + + Hamster Paradise 4 (Japan) + + + + Hamtaro - Ham-Hams Unite! (Europe) (En,Fr,De,Es,It) + + + + Hamtaro - Ham-Hams Unite! (USA) + + + + Hamunaptra - Ushinawareta Sabaku no Miyako (Japan) + + + + Hana Yori Dango - Another Love Story (Japan) + + + + Hanasaka Tenshi Tenten-kun no Beat Breaker (Japan) (SGB Enhanced) (GB Compatible) + + + + Hands of Time (USA, Europe) (En,Fr,De,Es,It,Nl) + + + + Hang Time Basketball (Europe) (Unl) + + + + Harley-Davidson Motor Cycles - Race Across America (USA) + + + + Harry Potter and the Chamber of Secrets (USA, Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,Da) + + + + Harry Potter and the Sorcerer's Stone (USA, Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da,Fi) + + + + Harry Potter to Kenja no Ishi (Japan) + + + + Harvest Moon 2 GBC (Europe) (SGB Enhanced) (GB Compatible) + + + + Harvest Moon 2 GBC (Germany) (SGB Enhanced) (GB Compatible) + + + + Harvest Moon 2 GBC (USA) (SGB Enhanced) (GB Compatible) + + + + Harvest Moon 3 GBC (USA) + + + + Harvest Moon GB (Europe) (SGB Enhanced) (GB Compatible) + + + + Harvest Moon GB (Germany) (SGB Enhanced) (GB Compatible) + + + + Harvest Moon GBC (USA) (SGB Enhanced) (GB Compatible) + + + + Hello Kitty no Beads Factory (Japan) (SGB Enhanced) (GB Compatible) + + + + Hello Kitty no Happy House (Japan) + + + + Hello Kitty no Magical Museum (Japan) (SGB Enhanced) (GB Compatible) + + + + Hello Kitty no Sweet Adventure - Daniel-kun ni Aitai (Japan) (SGB Enhanced) (GB Compatible) + + + + Hello Kitty to Dear Daniel no Dream Adventure (Japan) + + + + Hello Kitty's Cube Frenzy (USA) (GB Compatible) + + + + Hercules - The Legendary Journeys (Europe) (En,Fr,De,Es,It,Nl) + + + + Hero Hero-kun (Japan) + + + + Heroes of Might and Magic (USA) (En,Fr,De) + + + + Heroes of Might and Magic (Europe) (En,Fr,De) + + + + Heroes of Might and Magic II (USA) (En,Fr,De) + + + + Hexcite - The Shapes of Victory (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Hiryuu no Ken - Retsuden GB (Japan) + + + + Hissatsu Pachinko Boy - CR Monster House (Japan) + + + + Hole in One Golf (USA) (Rumble Version) (SGB Enhanced) (GB Compatible) + + + + Hollywood Pinball (Europe) (En,Fr,De,It) (GB Compatible) + + + + Hollywood Pinball (Japan) (GB Compatible) + + + + Holy Magic Century (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible) + + + + Honkaku Hanafuda GB (Japan) + + + + Honkaku Shougi - Shougi Ou (Japan) (SGB Enhanced) (GB Compatible) + + + + Honkaku Taisen Shougi Ayumu (Japan) (GB Compatible) + + + + Honkaku Yonin Uchi Mahjong - Mahjong Ou (Japan) (SGB Enhanced) (GB Compatible) + + + + Hot Wheels - Stunt Track Driver (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Hoyle Card Games (USA) + + + + Hoyle Casino (USA) + + + + Hugo - Black Diamond Fever (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da,Fi) + + + + Hugo - The Evil Mirror (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da,Fi) + + + + Hugo 2 1-2 (Germany) (GB Compatible) + + + + Hunter x Hunter - Hunter no Keifu (Japan) + + + + Hunter x Hunter - Kindan no Hihou (Japan) + + + + Hype - The Time Quest (Europe) (En,Fr,De,Es,It,Nl,Sv,Da) + + + + Hype - The Time Quest (Brazil) + + + + Hyper Olympic - Winter 2000 (Japan) + + + + Hyper Olympic Series - Track & Field GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Ide Yousuke no Mahjong Kyoushitsu GB (Japan) + + + + Indiana Jones and the Infernal Machine (USA, Europe) (En,Fr,De) + + + + Infinity (USA) (Proto) (2001-03-22) + + + + Inspector Gadget - Operation Madkactus (Europe) (En,Fr,De,Es,It,Nl) + + + + Inspector Gadget - Operation Madkactus (USA) + + + + International Karate 2000 (Europe) + + + + International Rally (USA) (SGB Enhanced) (GB Compatible) + + + + International Superstar Soccer 2000 (Europe) + + + + International Superstar Soccer 2000 (USA) + + + + International Superstar Soccer 99 (Europe) (SGB Enhanced) (GB Compatible) + + + + International Superstar Soccer 99 (USA) (SGB Enhanced) (GB Compatible) + + + + International Track & Field (Europe) (En,Fr,De,It) (SGB Enhanced) (GB Compatible) + + + + International Track & Field (USA) (SGB Enhanced) (GB Compatible) + + + + International Track & Field - Summer Games (Europe) + + + + It's a World Rally (Japan) (SGB Enhanced) (GB Compatible) + + + + Itsudemo Pachinko GB - CR Monster House (Japan) + + + + J.League Excite Stage GB (Japan) + + + + J.League Excite Stage Tactics (Japan) + + + + Jack no Daibouken - Daimaou no Gyakushuu (Japan) (SGB Enhanced) (GB Compatible) + + + + Jagainu-kun (Japan) (GB Compatible) + + + + Jankyuusei - Cosplay Paradise (Japan) + + + + Janosch - Das grosse Panama-Spiel (Germany) + + + + Jay und die Spielzeugdiebe (Germany) + + + + Jeff Gordon XS Racing (USA) (GB Compatible) + + + + Jeremy McGrath Supercross 2000 (USA, Europe) + + + + Jet de Go! - Let's Go by Airliner (Japan) + + + + Jim Henson's Bear in the Big Blue House (Europe) (En,Fr,De,Es,It,Nl) + + + + Jim Henson's Bear in the Big Blue House (USA) (En,Fr,De,Es,It,Nl) + + + + Jim Henson's Muppets (Europe) (En,Fr,De,Es,It,Nl,Sv) + + + + Jim Henson's Muppets (USA) + + + + Jim Henson's Muppets (Europe) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible) + + + + Jimmy White's Cueball (Europe) + + + + Jinsei Game - Tomodachi Takusan Tsukurou yo! (Japan) (SGB Enhanced) (GB Compatible) + + + + Jisedai Begoma Battle Beyblade (Japan) + + + + Jissen ni Yakudatsu Tsumego (Japan) (Rev 1) + + + + John Romero's Daikatana (Europe) (En,Fr,It) + + + + John Romero's Daikatana (Europe) (Fr,De,Es) + + + + Joryuu Janshi ni Chousen GB - Watashi-tachi ni Chousen Shitene! (Japan) (SGB Enhanced) (GB Compatible) + + + + JumpStart Dino Adventure - Field Trip (USA) + + + + Jungle Book, The - Mowgli's Wild Adventure (Europe) (En,Fr,De,Es,It) + + + + Jungle Book, The - Mowgli's Wild Adventure (USA) (En,Fr,De,Es,It) + + + + Jurassic Boy 2 (World) (Rev 1) (Sachen) (Unl) + + + + Jurassic Boy 2 + Thunder Blast Man (World) (1B-002, 1B-003, Sachen) (Unl) + + + + Juukou Senki Bullet Battlers (Japan) (SGB Enhanced) (GB Compatible) + + + + K.O. - The Pro Boxing (Japan) + + + + Kaept'n Blaubaer - Die verrueckte Schatzsuche (Germany) + + + + Kaitei Densetsu!! Treasure World (Japan) (GB Compatible) + + + + Kakurenbo Battle - Monster Tactics (Japan) + + + + Kakutou Ryouri Densetsu Bistro Recipe - Gekitou Foodon Battle Hen (Japan) (SGB Enhanced) (GB Compatible) + + + + Kakutou Ryouri Densetsu Bistro Recipe - Kettou Bistgarm Hen (Japan) (SGB Enhanced) (GB Compatible) + + + + Kanji Boy (Japan) (SGB Enhanced) (GB Compatible) + + + + Kanji Boy 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Kanji Boy 3 (Japan) + + + + Kanji de Puzzle (Japan) (GB Compatible) + + + + Kanzume Monsters Parfait (Japan) (SGB Enhanced) (GB Compatible) + + + + Karamuchou wa Oosawagi! - Okawari! (Japan) (SGB Enhanced, GB Compatible) (NP) + + + + Karamuchou wa Oosawagi! - Polinkies to Okashina Nakama-tachi (Japan) (SGB Enhanced) (GB Compatible) + + + + Karate Joe (Europe) (Unl) + + + + Kaseki Sousei Reborn II - Monster Digger (Japan) (SGB Enhanced) (GB Compatible) + + + + Katou Hifumi Kudan - Shougi Kyoushitsu (Japan) (SGB Enhanced) (GB Compatible) + + + + Kawa no Nushi Tsuri 4 (Japan) (Rumble Version) (SGB Enhanced) (GB Compatible) + + + + Kawaii Pet Shop Monogatari (Japan) (SGB Enhanced) (GB Compatible) + + + + Kawaii Pet Shop Monogatari 2 (Japan) (GB Compatible) + + + + Kawaii Pet Shop Monogatari 2 (Japan) (Rev 1) (GB Compatible) + + + + Keep the Balance (Europe) (En,Fr,De,Es,It) + + + + Keibajou e Ikou! Wide (Japan) (GB Compatible) + + + + Keitai Denjuu Telefang - Power Version (Japan) (GB Compatible) + + + + Keitai Denjuu Telefang - Speed Version (Japan) (GB Compatible) + + + + Kelly Club (USA) + + + + Ken Griffey Jr.'s Slugfest (USA) + + + + Kettou Transformers Beast Wars - Beast Senshi Saikyou Ketteisen (Japan) (SGB Enhanced) (GB Compatible) + + + + Kidou Senkan Nadesico - Ruri Ruri Mahjong (Japan) + + + + Kikansha Thomas - Sodor-tou no Nakama-tachi (Japan) + + + + Kindaichi Shounen no Jikenbo - 10 Nenme no Shoutaijou (Japan) (SGB Enhanced) (GB Compatible) + + + + Kinniku Banzuke GB - Chousensha wa Kimida! (Japan) (SGB Enhanced) (GB Compatible) + + + + Kinniku Banzuke GB 2 - Mezase! Muscle Champion (Japan) (SGB Enhanced) (GB Compatible) + + + + Kinniku Banzuke GB 3 - Shinseiki Survival Retsuden! (Japan) + + + + Kirby - Tilt 'n' Tumble (USA) + + + + Kirikou (Europe) (En,Fr,De,Es,It,Pt) + + + + Kisekae Series 2 - Oshare Nikki (Japan) + + + + Kisekae Series 2 - Oshare Nikki (Japan) (Rev 1) + + + + Kisekae Series 3 - Kisekae Hamster (Japan) + + + + Klax (USA, Europe) + + + + Klustar (Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + Klustar (USA) (GB Compatible) + + + + Knockout Kings (USA, Europe) + + + + Koenig der Loewen, Der - Simbas grosses Abenteuer (Germany) + + + + Koguru Guruguru - Guruguru to Nakayoshi (Japan) (SGB Enhanced, GB Compatible) (NP) + + + + Konami GB Collection Vol.1 (Europe) (GB Compatible) + + + + Konami GB Collection Vol.2 (Europe) (GB Compatible) + + + + Konami GB Collection Vol.3 (Europe) (GB Compatible) + + + + Konami GB Collection Vol.4 (Europe) (GB Compatible) + + + + Konami Winter Games (Europe) + + + + Konchuu Fighters (Japan) + + + + Konchuu Hakase 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Konchuu Hakase 3 (Japan) + + + + Korokoro Kirby (Japan) + + + + Koto Battle - Tengai no Moribito (Japan) + + + + Koushien Pocket (Japan) (SGB Enhanced) (GB Compatible) + + + + Land Before Time, The (Europe) (En,Fr,De,Es,It) + + + + Land Before Time, The (USA) + + + + Las Vegas Cool Hand (USA) (GB Compatible) + + + + Laura (Europe) (En,Fr,De,Es,It,Nl,Sv,Da) + + + + Laura (USA) + + + + Le Mans 24 Hours (Europe) (En,Fr,De,Es,It) + + + + Legend of the River King 2 (Europe) (SGB Enhanced) (GB Compatible) + + + + Legend of the River King 2 (USA) (SGB Enhanced) (GB Compatible) + + + + Legend of the River King GB (Europe) (SGB Enhanced) (GB Compatible) + + + + Legend of the River King GB (Germany) (SGB Enhanced) (GB Compatible) + + + + Legend of the River King GBC (USA) (SGB Enhanced) (GB Compatible) + + + + Legend of Zelda, The - Link's Awakening DX (France) (SGB Enhanced) (GB Compatible) + + + + Legend of Zelda, The - Link's Awakening DX (France) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Legend of Zelda, The - Link's Awakening DX (Germany) (SGB Enhanced) (GB Compatible) + + + + Legend of Zelda, The - Link's Awakening DX (Germany) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Legend of Zelda, The - Link's Awakening DX (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 2) (SGB Enhanced) (GB Compatible) + + + + Legend of Zelda, The - Oracle of Ages (Europe) (En,Fr,De,Es,It) + + + + Legend of Zelda, The - Oracle of Ages (USA, Australia) + + + + Legend of Zelda, The - Oracle of Seasons (Europe) (En,Fr,De,Es,It) + + + + Legend of Zelda, The - Oracle of Seasons (USA, Australia) + + + + LEGO Alpha Team (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da) + + + + LEGO Alpha Team (USA) + + + + LEGO Island 2 - The Brickster's Revenge (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da) + + + + LEGO Island 2 - The Brickster's Revenge (USA) (En,Fr,Es) + + + + LEGO Racers (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da) + + + + LEGO Racers (USA) (En,Fr,Es) + + + + LEGO Stunt Rally (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da) + + + + LEGO Stunt Rally (USA) + + + + Lemmings & Oh No! More Lemmings (USA) + + + + Lemmings VS (Japan) + + + + Lil' Monster (USA) (SGB Enhanced) (GB Compatible) + + + + Lion King, The - Simba's Mighty Adventure (USA, Europe) + + + + Little Magic (Japan) + + + + Little Mermaid II, The - Pinball Frenzy (Europe) (En,Fr,De,Es,It) + + + + Little Mermaid II, The - Pinball Frenzy (USA) (En,Fr,De,Es,It) (Rumble Version) + + + + Little Nicky (USA) + + + + LNF Stars 2001 (France) + + + + Lode Runner - Domudomu Dan no Yabou (Japan) (GB Compatible) + + + + Lodoss-tou Senki - Eiyuu Kishiden GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Logical (Europe) + + + + Logical (USA) + + + + Looney Tunes (Europe) (GB Compatible) + + + + Looney Tunes (USA) (GB Compatible) + + + + Looney Tunes - Carrot Crazy (USA) (En,Fr,Es) (GB Compatible) + + + + Looney Tunes - Twouble! (USA) (En,Fr,Es) (GB Compatible) + + + + Looney Tunes Collector - Alert! (USA) (En,Fr,Es) + + + + Looney Tunes Collector - Martian Alert! (Europe) (En,Fr,De,Es,It,Nl) + + + + Looney Tunes Collector - Martian Quest! (Japan) + + + + Looney Tunes Collector - Martian Revenge! (Europe) (En,Fr,De,Es,It,Nl) + + + + Looney Tunes Racing (Europe) (En,Fr,De,Es,It,Nl) + + + + Looney Tunes Racing (USA) (En,Fr,De,Es,It,Nl) + + + + Loppi Puzzle Magazine - Hirameku Puzzle Dai-2-gou (Japan) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Hirameku Puzzle Dai-2-gou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Hirameku Puzzle Dai-3-gou (Japan) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Hirameku Puzzle Dai-3-gou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Hirameku Puzzle Soukangou (Japan) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Hirameku Puzzle Soukangou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Kangaeru Puzzle Dai-2-gou (Japan) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Kangaeru Puzzle Dai-2-gou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Kangaeru Puzzle Dai-3-gou (Japan) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Kangaeru Puzzle Dai-3-gou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Kangaeru Puzzle Soukangou (Japan) (SGB Enhanced, GB Compatible) (NP) + + + + Loppi Puzzle Magazine - Kangaeru Puzzle Soukangou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP) + + + + Love Hina Party (Japan) + + + + Love Hina Pocket (Japan) + + + + Love Hina Pocket (Japan) (Rev 1) + + + + Luca no Puzzle de Daibouken! (Japan) (SGB Enhanced) (GB Compatible) + + + + Lucky Luke (Europe) (En,Fr,De,Es) + + + + Lucky Luke (USA) (En,Fr,De,Es) + + + + Lucky Luke - Desperado Train (Europe) (En,Fr,De,Es,It,Nl) + + + + Lufia - The Legend Returns (Europe) (En,De) + + + + Lufia - The Legend Returns (USA) + + + + M&M's Minis Madness (Europe) + + + + M&M's Minis Madness (Germany) + + + + M&M's Minis Madness (USA) + + + + M&M's Minis Madness (USA) (Sample) + + + + Macross 7 - Ginga no Heart o Furuwasero!! (Japan) + + + + Madden NFL 2000 (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Madden NFL 2001 (USA) + + + + Madden NFL 2002 (USA) + + + + Magi Nation (USA) + + + + Magical Chase GB - Minarai Mahoutsukai Kenja no Tani e (Japan) + + + + Magical Drop (Europe) (En,Fr,De) + + + + Magical Drop (USA) + + + + Magical Tetris Challenge (Europe) (En,Fr,De,Es,It,Nl,Sv) + + + + Magical Tetris Challenge (Europe) (En,Fr,De,Es,It,Nl,Sv) (Rev 1) + + + + Magical Tetris Challenge (USA) + + + + Mahjong Joou (Japan) (SGB Enhanced) (GB Compatible) + + + + Mahjong Quest (Japan) (SGB Enhanced) (GB Compatible) + + + + Majokko Mari-chan no Kisekae Monogatari (Japan) (SGB Enhanced) (GB Compatible) + + + + Majokko Mari-chan no Kisekae Monogatari (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Marble Madness (USA, Europe) + + + + Marie no Atelier GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Mario Family (Japan) + + + + Mario Golf (Europe) + + + + Mario Golf (USA) + + + + Mario Golf GB (Japan) + + + + Mario Tennis (Europe) + + + + Mario Tennis (USA) + + + + Mario Tennis GB (Japan) + + + + Marvin Strikes Back! (USA) (En,Fr,Es) + + + + Mary-Kate & Ashley - Get a Clue! (USA, Europe) (GB Compatible) + + + + Mary-Kate and Ashley - Crush Course (USA, Europe) + + + + Mary-Kate and Ashley - Pocket Planner (USA, Europe) (GB Compatible) + + + + Mary-Kate and Ashley - Winners Circle (USA, Europe) + + + + Mask of Zorro, The (Europe) + + + + Mask of Zorro, The (USA) + + + + Mat Hoffman's Pro BMX (USA, Europe) + + + + Matchbox Emergency Patrol (USA, Europe) + + + + Maus, Die (Europe) (En,Fr,De,Es) + + + + Maus, Die - Verrueckte Olympiade (Germany) + + + + Maya the Bee & Her Friends (Europe) (En,Fr,De) (GB Compatible) + + + + Maya the Bee - Garden Adventures (Europe) (En,Fr,De,Es) + + + + McDonald's Monogatari - Honobono Tenchou Ikusei Game (Japan) + + + + Medarot 2 - Kabuto Version (Japan) (SGB Enhanced) (GB Compatible) + + + + Medarot 2 - Kuwagata Version (Japan) (SGB Enhanced) (GB Compatible) + + + + Medarot 2 - Parts Collection (Japan) (SGB Enhanced) (GB Compatible) + + + + Medarot 3 - Kabuto Version (Japan) + + + + Medarot 3 - Kuwagata Version (Japan) + + + + Medarot 3 - Parts Collection - Z kara no Chousenjou (Japan) + + + + Medarot 4 - Kabuto Version (Japan) + + + + Medarot 4 - Kuwagata Version (Japan) + + + + Medarot 5 - Susutake Mura no Tenkousei - Kabuto (Japan) + + + + Medarot 5 - Susutake Mura no Tenkousei - Kuwagata (Japan) + + + + Medarot Cardrobottle - Kabuto Version (Japan) (SGB Enhanced) (GB Compatible) + + + + Medarot Cardrobottle - Kuwagata Version (Japan) (SGB Enhanced) (GB Compatible) + + + + Mega Man Xtreme (USA, Europe) (GB Compatible) + + + + Mega Man Xtreme 2 (USA, Europe) + + + + Megami Tensei Gaiden - Last Bible (Japan) (SGB Enhanced) (GB Compatible) + + + + Megami Tensei Gaiden - Last Bible II (Japan) (SGB Enhanced) (GB Compatible) + + + + Meitantei Conan - Karakuri Jiin Satsujin Jiken (Japan) (SGB Enhanced) (GB Compatible) + + + + Meitantei Conan - Kigantou Hihou Densetsu (Japan) (SGB Enhanced) (GB Compatible) + + + + Meitantei Conan - Norowareta Kouro (Japan) (SGB Enhanced) (GB Compatible) + + + + Men in Black - The Series (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Men in Black 2 - The Series (Europe) (En,Fr,De) + + + + Men in Black 2 - The Series (USA) (En,Fr,De) + + + + Merlin (Europe) (En,Fr,De,Es,It,Nl) + + + + MetaFight EX (Japan) + + + + Metal Gear - Ghost Babel (Japan) + + + + Metal Gear Solid (Europe) (En,Fr,De,Es,It) + + + + Metal Gear Solid (USA) + + + + Metal Walker (USA) (GB Compatible) + + + + Metamode (Japan) + + + + Mia Hamm Soccer Shootout (USA) + + + + Mickey's Racing Adventure (USA, Europe) (En,Fr,De,Es,It) + + + + Mickey's Speedway USA (USA, Europe) (En,Fr,De,Es) + + + + Micro Machines 1 and 2 - Twin Turbo (USA, Europe) + + + + Micro Machines V3 (USA, Europe) + + + + Micro Maniacs (Europe) + + + + Microsoft - The 6 in 1 Puzzle Collection Entertainment Pack (Europe) (En,Fr,De,Es,It) + + + + Microsoft - The 6 in 1 Puzzle Collection Entertainment Pack (USA) + + + + Microsoft - The Best of Entertainment Pack (Europe) + + + + Microsoft - The Best of Entertainment Pack (USA) + + + + Microsoft Pinball Arcade (USA) + + + + Microsoft Pinball Arcade (Europe) + + + + Midway presents Arcade Hits - Joust & Defender (USA, Europe) (GB Compatible) + + + + Midway presents Arcade Hits - Moon Patrol & Spy Hunter (USA, Europe) (GB Compatible) + + + + Millennium Winter Sports (USA) + + + + Minna no Shougi - Shokyuu Hen (Japan) (GB Compatible) + + + + Minna no Shougi - Shokyuu Hen (Japan) (Rev 1) + + + + Minnie & Friends - Yume no Kuni o Sagashite (Japan) + + + + Missile Command (Europe) + + + + Missile Command (USA) (Rumble Version) + + + + Mission - Impossible (Europe) (En,Fr,De,Es,It) + + + + Mission - Impossible (USA) (En,Fr,Es) + + + + Mizuki Shigeru no Shin Youkaiden (Japan) + + + + Mobile Golf (Japan) + + + + Mobile Trainer (Japan) + + + + Momotarou Densetsu 1-2 (Japan) + + + + Monkey Puncher (Europe) (SGB Enhanced) (GB Compatible) + + + + Monopoly (Japan) (SGB Enhanced) (GB Compatible) + + + + Monopoly (USA) (GB Compatible) + + + + Monster AG, Die (Germany) + + + + Monster Farm Battle Card GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Monster Race 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Monster Rancher Battle Card GB (USA) (SGB Enhanced) (GB Compatible) + + + + Monster Rancher Explorer (USA) + + + + Monster Traveler (Japan) (Rev 1) + + + + Monsters, Inc. (Europe) (En,Es,Nl) + + + + Monsters, Inc. (Europe) (En,Fr,It) + + + + Monsters, Inc. (USA, Europe) + + + + Monsters, Inc. (Europe) (Rev 1) + + + + Montezuma's Return! (Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + Montezuma's Return! (USA) (En,Es) (GB Compatible) + + + + Moomin no Daibouken (Japan) + + + + Moomin's Tale (Europe) (En,Fr,De) + + + + Moorhuhn 2 - Die Jagd geht weiter (Germany) + + + + Moorhuhn 3 - ...Es Gibt Huhn! (Europe) (En,Fr,De,Es,It) + + + + Mortal Kombat 4 (Germany) (En) (SGB Enhanced) (GB Compatible) + + + + Mortal Kombat 4 (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Motocross Maniacs 2 (USA) + + + + Mr. Driller (Japan) + + + + Mr. Driller (USA) + + + + Mr. Driller (Europe) + + + + Mr. Driller (Japan) (NP) + + + + Mr. Nutz (Europe) (En,Fr,De,Es,It,Nl) + + + + Mr. Nutz (USA) (En,Fr,Es) + + + + Ms. Pac-Man - Special Color Edition (USA) (SGB Enhanced) (GB Compatible) + + + + Ms. Pac-Man - Special Colour Edition (Europe) (GB Compatible) + + + + MTV Sports - Pure Ride (USA, Europe) + + + + MTV Sports - Skateboarding featuring Andy MacDonald (USA, Europe) + + + + MTV Sports - T.J. Lavin's Ultimate BMX (USA, Europe) + + + + Mummy Returns, The (Europe) (En,Fr,De,Es,It) + + + + Mummy Returns, The (USA) + + + + Mummy, The (Europe) (En,Fr,De) + + + + Mummy, The (USA) + + + + Muteki Ou Tri-Zenon (Japan) + + + + Mythri (USA) (Proto) + + + + Nakayoshi Cooking Series 1 - Oishii Cake-ya-san (Japan) + + + + Nakayoshi Cooking Series 2 - Oishii Panya-san (Japan) + + + + Nakayoshi Cooking Series 3 - Tanoshii Obentou (Japan) + + + + Nakayoshi Cooking Series 4 - Tanoshii Dessert (Japan) + + + + Nakayoshi Cooking Series 5 - Cake o Tsukurou (Japan) + + + + Nakayoshi Pet Series 1 - Kawaii Hamster (Japan) (GB Compatible) + + + + Nakayoshi Pet Series 2 - Kawaii Usagi (Japan) (GB Compatible) + + + + Nakayoshi Pet Series 3 - Kawaii Koinu (Japan) + + + + Nakayoshi Pet Series 4 - Kawaii Koneko (Japan) + + + + Nakayoshi Pet Series 5 - Kawaii Hamster 2 (Japan) + + + + Naminori Yarou! (Japan) (NP) + + + + NASCAR 2000 (USA, Europe) + + + + NASCAR Challenge (USA) (Rumble Version) + + + + NASCAR Heat (USA) + + + + NASCAR Racers (USA) + + + + Nations, The - Land of Legends (Europe) (En,De) + + + + NBA 3 on 3 featuring Kobe Bryant (USA) (SGB Enhanced) (GB Compatible) + + + + NBA Hoopz (USA) + + + + NBA in the Zone (USA) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + NBA in the Zone 2000 (Europe) + + + + NBA in the Zone 2000 (USA) + + + + NBA Jam 2001 (USA, Europe) + + + + NBA Jam 99 (USA, Europe) (GB Compatible) + + + + NBA Pro 99 (Europe) (SGB Enhanced) (GB Compatible) + + + + NBA Show Time - NBA on NBC (USA) + + + + Net de Get - Minigame @ 100 (Japan) + + + + Network Boukenki Bugsite - Alpha Version (Japan) + + + + Network Boukenki Bugsite - Beta Version (Japan) + + + + New Addams Family Series, The (Europe) (En,Fr,De,Es,It,Pt) + + + + New Adventures of Mary-Kate & Ashley, The (USA, Europe) (GB Compatible) + + + + NFL Blitz (USA, Europe) (GB Compatible) + + + + NFL Blitz (USA, Europe) (Rev 1) (GB Compatible) + + + + NFL Blitz 2000 (USA) + + + + NFL Blitz 2001 (USA) + + + + NHL 2000 (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + NHL Blades of Steel (USA) + + + + NHL Blades of Steel 2000 (USA) + + + + Nicktoons Racing (USA) + + + + Nintama Rantarou - Ninjutsu Gakuen ni Nyuugaku Shiyou no Dan (Japan) + + + + Nisemon Puzzle da Mon! - Feromon Kyuushutsu Daisakusen! (Japan) + + + + No Fear - Downhill Mountain Biking (Europe) + + + + Nobunaga no Yabou - Game Boy Ban 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Noddy and the Birthday Party (Europe) (En,Fr,De,Es) + + + + NSYNC - Get to the Show (USA) + + + + Nushi Tsuri Adventure - Kite no Bouken (Japan) (Rumble Version) + + + + NYR - New York Race (Europe) (En,Fr,De,Es,It,Pt) + + + + O'Leary Manager 2000 (Europe) (En,Fr,De,Es,It,Nl,Ca) + + + + Oddworld Adventures 2 (USA) (En,Fr,De,Es,It) (GB Compatible) + + + + Oddworld Adventures 2 (Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + Ohasuta Dance Dance Revolution GB (Japan) + + + + Ohasuta Yama-chan & Raymond (Japan) (SGB Enhanced) (GB Compatible) + + + + Oide Rascal (Japan) + + + + Ojarumaru - Mangan Jinja no Ennichi de Ojaru! (Japan) (GB Compatible) + + + + Ojarumaru - Tsukiyo ga Ike no Takaramono (Japan) (GB Compatible) + + + + Original Moorhuhn Jagd, Die (Germany) + + + + Othello Millennium (Japan) (GB Compatible) + + + + Other Life - Azure Dreams GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Ottifanten - Kommando Stoertebeker (Germany) + + + + Ou Dorobou Jing - Angel Version (Japan) (SGB Enhanced) (GB Compatible) + + + + Ou Dorobou Jing - Devil Version (Japan) (SGB Enhanced) (GB Compatible) + + + + Owarai Yoiko no Geemumichi - Oyaji Sagashite 3 Choume (Japan) (SGB Enhanced) (GB Compatible) + + + + Pac-Man - Special Color Edition (USA) (SGB Enhanced) (GB Compatible) + + + + Pac-Man - Special Colour Edition (Europe) (GB Compatible) + + + + Pachinko CR Mouretsu Genshijin T (Japan) (GB Compatible) + + + + Pachinko Hisshou Guide - Data no Ousama (Japan) (GB Compatible) + + + + Pachipachi Pachisurou - New Pulsar Hen (Japan) (SGB Enhanced) (GB Compatible) + + + + Painter (Europe) (Unl) + + + + Paperboy (USA, Europe) + + + + Papyrus (Europe) (En,Fr,De,Es,It,Nl) + + + + PaZeek (USA) (Proto) + + + + Perfect Choro Q (Japan) + + + + Perfect Dark (USA, Europe) (En,Fr,De,Es,It) (Rumble Version) + + + + Phantom Zona (Japan) (SGB Enhanced) (GB Compatible) + + + + Pia Carrot e Youkoso!! 2.2 (Japan) + + + + Pitfall - Beyond the Jungle (USA, Europe) (GB Compatible) + + + + Pitfall GB (Japan) (GB Compatible) + + + + Planet of the Apes (Europe) (En,Fr,De,Es,It,Nl) + + + + Planet of the Apes (USA) (En,Fr,De,Es,It,Nl) + + + + Player Manager 2001 (Europe) (En,Fr) + + + + Pocket Billiards - Funk the 9 Ball (Japan) + + + + Pocket Bomberman (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Pocket Bowling (Japan) (GB Compatible) + + + + Pocket Bowling (USA) (GB Compatible) + + + + Pocket Color Billiards (Japan) + + + + Pocket Color Block (Japan) (SGB Enhanced) (GB Compatible) + + + + Pocket Color Mahjong (Japan) (GB Compatible) + + + + Pocket Color Trump (Japan) (GB Compatible) + + + + Pocket Cooking (Japan) + + + + Pocket Densha 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Pocket Family GB 2 (Japan) + + + + Pocket GI Stable (Japan) (SGB Enhanced) (GB Compatible) + + + + Pocket GT (Japan) + + + + Pocket Hanafuda (Japan) + + + + Pocket King (Japan) (SGB Enhanced) (GB Compatible) + + + + Pocket Lure Boy (Japan) + + + + Pocket Monsters - Crystal Version (Japan) + + + + Pocket Monsters Eun (Korea) + + + + Pocket Monsters Geum (Korea) + + + + Pocket Monsters Gin (Japan) (SGB Enhanced) (GB Compatible) + + + + Pocket Monsters Gin (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Pocket Monsters Kin (Japan) (SGB Enhanced) (GB Compatible) + + + + Pocket Monsters Kin (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Pocket Music (Europe) (En,Fr,De,Es,It) + + + + Pocket no Naka no Oukoku (Japan) (Proto) + + + + Pocket Pro Wrestling - Perfect Wrestler (Japan) + + + + Pocket Pro Yakyuu (Japan) + + + + Pocket Puyo Puyo Sun (Japan) (SGB Enhanced) (GB Compatible) + + + + Pocket Puyo Puyo-n (Japan) + + + + Pocket Puyo Puyo-n (Japan) (Rev 1) + + + + Pocket Puyo Puyo-n (Japan) (Rev 2) + + + + Pocket Racing (Europe) + + + + Pocket Smash Out (Europe) (Unl) + + + + Pocket Smash Out & Race Time (Europe) (Unl) + + + + Pocket Soccer (Europe) (En,Fr,De,Es,It,Pt) + + + + Pokemon - Crystal Version (USA, Europe) + + + + Pokemon - Crystal Version (USA, Europe) (Rev 1) + + + + Pokemon - Crystal Version (Australia) + + + + Pokemon - Edicion Cristal (Spain) + + + + Pokemon - Edicion Oro (Spain) (SGB Enhanced) (GB Compatible) + + + + Pokemon - Edicion Plata (Spain) (SGB Enhanced) (GB Compatible) + + + + Pokemon - Gold Version (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Pokemon - Goldene Edition (Germany) (SGB Enhanced) (GB Compatible) + + + + Pokemon - Kristall-Edition (Germany) + + + + Pokemon - Silberne Edition (Germany) (SGB Enhanced) (GB Compatible) + + + + Pokemon - Silberne Edition (Germany) (Beta) (SGB Enhanced) (GB Compatible) + + + + Pokemon - Silver Version (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Pokemon - Version Argent (France) (SGB Enhanced) (GB Compatible) + + + + Pokemon - Version Cristal (France) + + + + Pokemon - Version Or (France) (SGB Enhanced) (GB Compatible) + + + + Pokemon - Versione Argento (Italy) (SGB Enhanced) (GB Compatible) + + + + Pokemon - Versione Cristallo (Italy) + + + + Pokemon - Versione Oro (Italy) (SGB Enhanced) (GB Compatible) + + + + Pokemon Card GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Pokemon Card GB 2 - GR Dan Sanjou! (Japan) + + + + Pokemon de Panepon (Japan) + + + + Pokemon Pinball (Europe) (En,Fr,De,Es,It) (Rumble Version) (SGB Enhanced) (GB Compatible) + + + + Pokemon Pinball (Japan) (Rumble Version) (SGB Enhanced) (GB Compatible) + + + + Pokemon Pinball (USA, Australia) (Rumble Version) (SGB Enhanced) (GB Compatible) + + + + Pokemon Puzzle Challenge (Europe) (En,Fr,De,Es,It) + + + + Pokemon Puzzle Challenge (USA, Australia) + + + + Pokemon Trading Card Game (Europe) (En,Es,It) (SGB Enhanced) (GB Compatible) + + + + Pokemon Trading Card Game (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible) + + + + Pokemon Trading Card Game (USA, Australia) (SGB Enhanced) (GB Compatible) + + + + Pokemon Trading Card Game (Europe) (En,Fr,De) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Pokemon Trading Card Game (Europe) (En,Es,It) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Polaris SnoCross (USA) (Rumble Version) + + + + Pong - The Next Level (USA, Europe) + + + + Pooh and Tigger's Hunny Safari (Europe) (En,Fr,De,Es,It,Nl) + + + + Pooh and Tigger's Hunny Safari (USA) + + + + Pop'n Music GB (Japan) + + + + Pop'n Music GB - Animation Melody (Japan) + + + + Pop'n Music GB - Disney Tunes (Japan) + + + + Pop'n Pop (Europe) + + + + Pop'n Pop (Japan) + + + + Portal Runner (USA) + + + + Power Pro Kun Pocket (Japan) (SGB Enhanced) (GB Compatible) + + + + Power Pro Kun Pocket (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Power Pro Kun Pocket 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Power Quest (Europe) (En,Fr,De,Es,It) (SGB Enhanced) (GB Compatible) + + + + Power Quest (USA) (En,Fr,De,Es,It) (SGB Enhanced) (GB Compatible) + + + + Power Spike - Pro Beach Volleyball (USA) + + + + Powerpuff Girls, The - Bad Mojo Jojo (USA) + + + + Powerpuff Girls, The - Bad Mojo Jojo (USA) (Rev 1) + + + + Powerpuff Girls, The - Bad Mojo Jojo (USA) (Rev 2) + + + + Powerpuff Girls, The - Bad Mojo Jojo (Europe) + + + + Powerpuff Girls, The - Battle Him (USA) + + + + Powerpuff Girls, The - Battle Him (USA) (Rev 1) + + + + Powerpuff Girls, The - Battle Him (Europe) + + + + Powerpuff Girls, The - Bulle Contre Lui (France) + + + + Powerpuff Girls, The - L'Affreux Mojo Jojo (France) + + + + Powerpuff Girls, The - Paint the Townsville Green (USA) + + + + Powerpuff Girls, The - Paint the Townsville Green (USA) (Rev 2) + + + + Powerpuff Girls, The - Paint the Townsville Green (USA) (Rev 1) + + + + Powerpuff Girls, The - Paint the Townsville Green (Europe) + + + + Powerpuff Girls, The - Panique a Townsville (France) + + + + Prince Naseem Boxing (Europe) (En,Fr,De) + + + + Prince of Persia (USA, Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + Pro Darts (USA) + + + + Pro Foot (France) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible) + + + + Pro Mahjong Kiwame II GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Pro Mahjong Tsuwamono GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Pro Mahjong Tsuwamono GB 2 (Japan) + + + + Pro Pool (USA) (En,Fr,De) + + + + Pro Pool (Europe) (En,Fr,De) + + + + Project S-11 (USA) + + + + Puchi Carat (Europe) (SGB Enhanced) (GB Compatible) + + + + Puchi Carat (Japan) (SGB Enhanced) (GB Compatible) + + + + Pumuckls Abenteuer bei den Piraten (Germany) + + + + Pumuckls Abenteuer im Geisterschloss (Germany) + + + + Puyo Puyo Gaiden - Puyo Wars (Japan) (SGB Enhanced) (GB Compatible) + + + + Puzz Loop (Japan) (GB Compatible) + + + + Puzzle Bobble 4 (Japan) (GB Compatible) + + + + Puzzle Bobble Millennium (Japan) + + + + Puzzle de Shoubuyo! - Wootama-chan (Japan) (GB Compatible) + + + + Puzzle Master (USA) (GB Compatible) + + + + Puzzled (Europe) (En,Fr,De) + + + + Puzzled (USA) + + + + Q-bert (USA) + + + + Qix Adventure (Europe) + + + + Qix Adventure (Japan) + + + + Quest - Brian's Journey (USA) (GB Compatible) + + + + Quest - Fantasy Challenge (USA) (SGB Enhanced) (GB Compatible) + + + + Quest for Camelot (Europe) (En,Fr,De,Es,It,Nl) (SGB Enhanced) (GB Compatible) + + + + Quest for Camelot (USA) (En,Fr,Es) (SGB Enhanced) (GB Compatible) + + + + Qui Qui (Japan) (GB Compatible) + + + + R-Type DX (Japan) (En) (GB Compatible) + + + + R-Type DX (USA, Europe) (GB Compatible) + + + + Race Time (Europe) (Unl) + + + + Racin' Ratz (USA) + + + + Radikal Bikers (Europe) (En,Fr,De,Es) (Proto) + + + + Rainbow Islands (Europe) (En,Fr,De,Es,It) + + + + Raku x Raku - Cut Shuu (Japan) + + + + Raku x Raku - Mishin (Japan) (GB Compatible) + + + + Raku x Raku - Moji (Japan) + + + + Rampage - World Tour (USA, Europe) (GB Compatible) + + + + Rampage 2 - Universal Tour (USA, Europe) + + + + Rampart (USA) + + + + Rats! (USA) (En,Es) (GB Compatible) + + + + Rayman (Europe) (En,Fr,De,Es,It,Nl) + + + + Rayman (USA) (En,Fr,De,Es,It,Nl) + + + + Rayman - Mister Dark no Wana (Japan) + + + + Rayman 2 (USA) (En,Fr,De,Es,It) + + + + Rayman 2 Forever (Europe) (En,Fr,De,Es,It) + + + + Razmoket a Paris, Les - Le Film (France) + + + + Razmoket, Les - 100% Angelica (France) + + + + Razmoket, Les - Voyage dans le Temps (France) + + + + Razor Freestyle Scooter (USA) + + + + Ready 2 Rumble Boxing (Europe) + + + + Ready 2 Rumble Boxing (USA) (Rumble Version) + + + + Real Pro Yakyuu! - Central League Hen (Japan) (SGB Enhanced) (GB Compatible) + + + + Real Pro Yakyuu! - Pacific League Hen (Japan) (SGB Enhanced) (GB Compatible) + + + + Rescue Heroes - Fire Frenzy (USA) + + + + Reservoir Rat (Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + Resident Evil (World) (Proto 1) + + + + Resident Evil (World) (Proto 2) + + + + Resident Evil (Unknown) (Demo) (Climax Entertainment) + + + + Resident Evil Gaiden (Europe) (En,Fr,De,Es,It) + + + + Resident Evil Gaiden (USA) + + + + Return of the Ninja (Europe) + + + + Return of the Ninja (USA) + + + + Revelations - The Demon Slayer (USA) (SGB Enhanced) (GB Compatible) + + + + Rhino Rumble (USA, Europe) + + + + Rip-Tide Racer (Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + Road Champs - BXS Stunt Biking (USA, Europe) + + + + Road Rash (USA, Europe) + + + + Roadsters (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible) + + + + Roadsters (USA) (En,Fr,De,Es,It,Nl) (GB Compatible) + + + + Roadsters '98 (USA) (Proto) (SGB Enhanced) (GB Compatible) + + + + Robin Hood (Europe) (En,Fr,De,Es,It,Nl) + + + + RoboCop (Europe) (En,Fr,De,Es,It,Nl) + + + + Robopon - Sun Version (USA) (SGB Enhanced) (GB Compatible) + + + + Robopon - Sun Version (USA) (Beta) (SGB Enhanced) (GB Compatible) + + + + Robot Poncots - Comic Bom Bom Special Version (Japan) (SGB Enhanced) (GB Compatible) + + + + Robot Poncots - Moon Version (Japan) (SGB Enhanced) (GB Compatible) + + + + Robot Poncots - Star Version (Japan) (SGB Enhanced) (GB Compatible) + + + + Robot Poncots - Sun Version (Japan) (SGB Enhanced) (GB Compatible) + + + + Robot Wars - Metal Mayhem (Europe) (En,Fr,De,It,Nl,Sv) + + + + Rocket Power - Gettin' Air (USA, Europe) + + + + Rocket Power - La Glisse de l'Extreme (France) + + + + Rockman X - Cyber Mission (Japan) (GB Compatible) + + + + Rockman X2 - Soul Eraser (Japan) + + + + Rocky Mountain Trophy Hunter (USA) + + + + Rocman X Gold + 4 in 1 (Taiwan) (1B-002, 4B-003, Sachen) (Unl) + + + + Roi Lion, Le - La Formidable Aventure de Simba (France) + + + + Roi Lion, Le - La Formidable Aventure de Simba (France) (Rev 1) + + + + Rokumon Tengai Mon-Colle-Knight GB (Japan) + + + + Roland Garros French Open (Europe) (En,Fr,De,Es,It,Nl) + + + + Ronaldo V-Football (Europe) (En,Fr,De,Es,It,Nl,Pt) (GB Compatible) + + + + Ronaldo V-Soccer (USA) (En,Fr,Es,Pt) (GB Compatible) + + + + Roswell Conspiracies - Aliens, Myths & Legends (Europe) (En,Fr,De) + + + + Roswell Conspiracies - Aliens, Myths & Legends (USA) (En,Fr,De) + + + + Rox (Japan) (En) (GB Compatible) + + + + Rox (USA, Europe) (GB Compatible) + + + + RPG Tsukuru GB (Japan) + + + + Rugrats - Time Travelers (USA, Europe) (GB Compatible) + + + + Rugrats - Totally Angelica (USA, Europe) + + + + Rugrats - Typisch Angelica (Germany) + + + + Rugrats en Paris - La pelicula (Spain) (En,Es) + + + + Rugrats in Paris - The Movie (USA, Europe) + + + + Rugrats Movie, The (Europe) (SGB Enhanced) (GB Compatible) + + + + Rugrats Movie, The (USA) (SGB Enhanced) (GB Compatible) + + + + Rumble & Tumble (USA) (Demo) (E3 2001) + + + + Saban's Power Rangers - Lightspeed Rescue (USA, Europe) + + + + Saban's Power Rangers - Time Force (USA, Europe) + + + + Sabrina - The Animated Series - Spooked! (USA, Europe) + + + + Sabrina - The Animated Series - Zapped! (Europe) (En,Fr,De) + + + + Sabrina - The Animated Series - Zapped! (USA, Europe) + + + + Sakata Gorou Kudan no Renju Kyoushitsu (Japan) (SGB Enhanced) (GB Compatible) + + + + Sakura Taisen GB - Geki Hana Gumi Nyuutai! (Japan) + + + + Sakura Taisen GB 2 - Thunderbolt Sakusen (Japan) + + + + Samurai Kid (Japan) + + + + San Francisco Rush 2049 (USA, Europe) + + + + Sangokushi - Game Boy Ban 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Sanrio Timenet - Kako Hen (Japan) (SGB Enhanced) (GB Compatible) + + + + Sanrio Timenet - Kako Hen (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Sanrio Timenet - Mirai Hen (Japan) (SGB Enhanced) (GB Compatible) + + + + Sanrio Timenet - Mirai Hen (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Santa Claus Junior (Europe) + + + + Saru Puncher (Japan) (SGB Enhanced) (GB Compatible) + + + + Scooby-Doo! - Classic Creep Capers (USA, Europe) + + + + Scrabble (Europe) + + + + SD Hiryuu no Ken EX (Japan) (SGB Enhanced) (GB Compatible) + + + + Sei Hai Densetsu (Japan) (SGB Enhanced) (GB Compatible) + + + + Seme COM Dungeon - Drururuaga (Japan) (GB Compatible) + + + + Senkai Ibunroku Juntei Taisen - TV Animation Senkaiden Houshin Engi Yori (Japan) (SGB Enhanced) (GB Compatible) + + + + Sesame Street - Elmo's 123s (USA) (GB Compatible) + + + + Sesame Street - Elmo's 123s (Europe) (GB Compatible) + + + + Sesame Street - Elmo's ABCs (USA) (GB Compatible) + + + + Sesame Street - Elmo's ABCs (Europe) (GB Compatible) + + + + Sesame Street - The Adventures of Elmo in Grouchland (Europe) (GB Compatible) + + + + Sesame Street - The Adventures of Elmo in Grouchland (USA) (GB Compatible) + + + + Sesame Street Sports (USA) + + + + Sesame Street Sports (Europe) + + + + Sewing Machine Operation Software (USA) (En,Fr,Es) (GB Compatible) + + + + Sewing Machine Operation Software (Europe) (En,Fr,De,It) (GB Compatible) + + + + Sgt. Rock - On the Frontline (USA) + + + + Shadowgate Classic (USA, Europe) (En,Fr,De,Es,Sv) (GB Compatible) + + + + Shadowgate Classic (USA, Europe) (En,Fr,De,Es,Sv) (Rev 1) (GB Compatible) + + + + Shadowgate Return (Japan) (GB Compatible) + + + + Shaman King Card Game - Chou Senjiryakketsu - Funbari Hen (Japan) + + + + Shaman King Card Game - Chou Senjiryakketsu - Meramera Hen (Japan) + + + + Shamus (USA, Europe) (GB Compatible) + + + + Shanghai Pocket (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Shanghai Pocket (USA, Europe) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Shantae (USA) + + + + Shaun Palmer's Pro Snowboarder (USA) + + + + Shelly Club (Europe) (En,Fr,De,Es,It) + + + + Shin Megami Tensei Devil Children - Aka no Sho (Japan) (SGB Enhanced) (GB Compatible) + + + + Shin Megami Tensei Devil Children - Aka no Sho (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Shin Megami Tensei Devil Children - Kuro no Sho (Japan) (SGB Enhanced) (GB Compatible) + + + + Shin Megami Tensei Devil Children - Kuro no Sho (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Shin Megami Tensei Devil Children - Shiro no Sho (Japan) + + + + Shin Megami Tensei Trading Card - Card Summoner (Japan) + + + + Shinseiki Evangelion - Mahjong Hokan Keikaku (Japan) + + + + Shougi 2 (Japan) (GB Compatible) + + + + Shougi 3 (Japan) (GB Compatible) + + + + Shrek - Fairy Tale Freakdown (USA, Europe) (En,Fr,De,Es,It) + + + + Shutokou Racing, The (Japan) (SGB Enhanced) (GB Compatible) + + + + Simpsons, The - Night of the Living Treehouse of Horror (USA, Europe) + + + + Smurfs Nightmare, The (Europe) (En,Fr,De,Es) + + + + Smurfs Nightmare, The (USA) + + + + Snobow Champion (Japan) + + + + Snoopy Tennis (Europe) (En,Fr,De,Es,It,Nl) + + + + Snoopy Tennis (Japan) + + + + Snoopy Tennis (USA) (En,Fr,Es) + + + + Snow White and the Seven Dwarfs (Europe) (En,Fr,De,Es,It,Nl,Sv,No,Da) + + + + Snow White and the Seven Dwarfs (USA) + + + + SnowCross (Europe) (En,Fr,De,Es,It,Pt) + + + + Soccer Manager (Europe) (En,Fr,De,Es) + + + + Solomon (Japan) + + + + Soreike! Anpanman - 5-tsu no Tou no Ousama (Japan) + + + + Soreike! Anpanman - Fushigi na Nikoniko Album (Japan) (SGB Enhanced) (GB Compatible) + + + + Soukoban Densetsu - Hikari to Yami no Kuni (Japan) (SGB Enhanced) (GB Compatible) + + + + Soul Getter - Houkago Bouken RPG (Japan) (GB Compatible) + + + + South Park (USA) (Proto) + + + + Space Invaders (USA, Europe) (GB Compatible) + + + + Space Invaders X (Japan) (En) (GB Compatible) + + + + Space Invasion (Europe) (Unl) + + + + Space Invasion & Karate Joe (Europe) (Unl) + + + + Space Invasion & Painter (Europe) (Unl) + + + + Space Marauder (USA) + + + + Space-Net - Cosmo Blue (Japan) + + + + Space-Net - Cosmo Red (Japan) + + + + Spacestation Silicon Valley (Europe) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible) + + + + Spawn (USA) + + + + Speedy Gonzales - Aztec Adventure (USA, Europe) (GB Compatible) + + + + Spider-Man (France) + + + + Spider-Man (Japan) + + + + Spider-Man (USA, Europe) + + + + Spider-Man 2 - The Sinister Six (USA, Europe) + + + + Spirou - The Robot Invasion (Europe) (En,Fr,De,Es,It,Nl,Da) + + + + SpongeBob SquarePants - Legend of the Lost Spatula (USA, Europe) + + + + Spy vs Spy (Europe) (En,Fr,De,Es,It,Nl,Sv) + + + + Spy vs Spy (Japan) + + + + Spy vs Spy (USA) + + + + Spy vs Spy (Japan) (Rev 1) (NP) + + + + Star Heritage (Europe) (Proto) (SRAM Version) + + + + Star Heritage (Europe) (Proto) (Password Version) + + + + Star Ocean - Blue Sphere (Japan) (SGB Enhanced) (GB Compatible) + + + + Star Wars - Yoda Stories (USA, Europe) (GB Compatible) + + + + Star Wars Episode I - Obi-Wan's Adventures (Europe) (En,Fr,De,Es,It) + + + + Star Wars Episode I - Obi-Wan's Adventures (USA) + + + + Star Wars Episode I - Racer (USA, Europe) (Rumble Version) + + + + Stranded Kids (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible) + + + + Street Fighter Alpha - Warriors' Dreams (Europe) + + + + Street Fighter Alpha - Warriors' Dreams (Japan) + + + + Street Fighter Alpha - Warriors' Dreams (USA) + + + + Street Hero (Taiwan) (En) (1B-004, EB-004, Sachen) (Unl) + + + + Stuart Little - The Journey Home (Europe) (Fr,De) + + + + Stuart Little - The Journey Home (USA, Europe) + + + + Super 16 in 1 (Taiwan) (En) (Sachen) (Unl) + + + + Super 6 in 1 (Taiwan) (En,Zh) (6B-001, Sachen) (Unl) + + + + Super Black Bass - Real Fight (Japan) (Rumble Version) + + + + Super Black Bass Pocket 3 (Japan) (SGB Enhanced) (GB Compatible) + + + + Super Bombliss DX (Japan) (En) (SGB Enhanced) (GB Compatible) + + + + Super Breakout! (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible) + + + + Super Breakout! (USA) (GB Compatible) + + + + Super Chinese Fighter EX (Japan) + + + + Super Doll Licca-chan - Kisekae Daisakusen (Japan) + + + + Super Gals! Kotobuki Ran (Japan) + + + + Super Gals! Kotobuki Ran 2 - Miracle Getting (Japan) + + + + Super Mario Bros. Deluxe (Japan) (NP) + + + + Super Mario Bros. Deluxe (USA, Europe) + + + + Super Mario Bros. Deluxe (USA, Europe) (Rev 1) + + + + Super Mario Bros. Deluxe (USA, Europe) (Rev 2) + + + + Super Mario Bros. Deluxe (Japan) (En) (Rev 1) (NP) + + + + Super Me-Mail GB - Me-Mail Bear no Happy Mail Town (Japan) + + + + Super Nenas, Las - El Malvado Mojo Jojo (Spain) + + + + Super Nenas, Las - Lucha Con Ese (Spain) + + + + Super Nenas, Las - Panico en Townsville (Spain) + + + + Super Real Fishing (Japan) (Rumble Version) + + + + Super Robot Pinball (Japan) + + + + Super Robot Taisen - Link Battler (Japan) (SGB Enhanced) (GB Compatible) + + + + Supercross Freestyle (Europe) (En,Fr,De,Es,It) + + + + Superman - Battle for Metropolis (Europe) (Proto) (2001-01-12) (GB Compatible) + + + + Supreme Snowboarding (Europe) (En,Fr,De) + + + + Survival Kids (USA) (SGB Enhanced) (GB Compatible) + + + + Survival Kids - Kotou no Boukensha (Japan) (SGB Enhanced) (GB Compatible) + + + + Survival Kids 2 - Dasshutsu!! Futago-Jima! (Japan) (SGB Enhanced) (GB Compatible) + + + + Suske en Wiske - De Tijdtemmers ~ Bob et Bobette - Les Dompteurs du Temps (Europe) (Fr,Nl) + + + + Suzuki Alstare Extreme Racing (Europe) (En,Fr,De,Es,It,Nl) + + + + Sweet Ange (Japan) (SGB Enhanced) (GB Compatible) + + + + Swing (Germany) + + + + SWIV (Europe) (En,Fr,De,Es,It) + + + + Sylvanian Families - Otogi no Kuni no Pendant (Japan) (SGB Enhanced) (GB Compatible) + + + + Sylvanian Families 2 - Irozuku Mori no Fantasy (Japan) + + + + Sylvanian Families 3 - Hoshi Furu Yoru no Sunadokei (Japan) + + + + Sylvanian Melodies - Mori no Nakama to Odori Masho! (Japan) (SGB Enhanced) (GB Compatible) + + + + Sylvester & Tweety - Breakfast on the Run (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible) + + + + Tabaluga (Germany) (GB Compatible) + + + + Taisen Tsumeshougi (Japan) (NP) (GB Compatible) + + + + Taito Memorial - Bubble Bobble (Japan) (SGB Enhanced) (GB Compatible) + + + + Taito Memorial - Chase H.Q. - Secret Police (Japan) (SGB Enhanced) (GB Compatible) + + + + Tales of Phantasia - Narikiri Dungeon (Japan) (SGB Enhanced) (GB Compatible) + + + + Tanimura Hitoshi Ryuu Pachinko Kouryaku Daisakusen - Don Quijote ga Iku (Japan) (SGB Enhanced) (GB Compatible) + + + + Tarzan (France) + + + + Tarzan (Germany) + + + + Tarzan (Japan) + + + + Tarzan (USA, Europe) + + + + Tasmanian Devil - Munching Madness (Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + Tasmanian Devil - Munching Madness (USA) (En,Fr,De,Es,It) (GB Compatible) + + + + Taxi 2 (France) + + + + Taxi 3 (France) + + + + Tech Deck Skateboarding (USA, Europe) + + + + Test Drive 2001 (USA) + + + + Test Drive 6 (Europe) (En,Fr,De,Es,It) (GB Compatible) + + + + Test Drive 6 (Europe) (En,Fr,De,Es,It) (Sample) (GB Compatible) + + + + Test Drive 6 (USA) (GB Compatible) + + + + Test Drive Cycles (USA) + + + + Test Drive Le Mans (USA) (En,Fr,Es) + + + + Test Drive Off-Road 3 (USA) (Rumble Version) (SGB Enhanced) (GB Compatible) + + + + Tetris Adventure - Susume Mickey to Nakama-tachi (Japan) + + + + Tetris Adventure - Susume Mickey to Nakama-tachi (Japan) (Rev 1) + + + + Tetris DX (World) (SGB Enhanced) (GB Compatible) + + + + Tezhong Budui 2 - Jidi (China) (Li Cheng) (Unl) + + + + TG Rally 2 (Europe) + + + + Three Lions (Europe) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible) + + + + Thunder Blast Man (Europe) (Sachen) (Unl) + + + + Thunderbirds (Europe) + + + + Thunderbirds (Europe) (En,Fr,De,Es,It) + + + + Tiger Woods PGA Tour 2000 (USA, Europe) (GB Compatible) + + + + Tintin - Le Temple Du Soleil (Europe) (En,Fr,De) + + + + Tintin au Tibet (Europe) (En,Fr,De,Es,It,Nl,Sv) + + + + Tiny Toon Adventures - Buster Saves the Day (Europe) (En,Fr,De,Es,It) + + + + Tiny Toon Adventures - Buster Saves the Day (USA) + + + + Tiny Toon Adventures - Dizzy's Candy Quest (Europe) (En,Fr,De,Es,It,Nl) + + + + Titi - Le Tour du Monde en 80 Chats (France) + + + + Titus the Fox (Europe) (GB Compatible) + + + + Titus the Fox (USA) (GB Compatible) + + + + TNN Outdoors Fishing Champ (USA) (SGB Enhanced) (GB Compatible) + + + + TOCA Touring Car Championship (USA, Europe) + + + + Toki Tori (USA, Europe) (En,Ja,Fr,De,Es) + + + + Tokimeki Memorial Pocket - Culture Hen - Komorebi no Melody (Japan) (SGB Enhanced) (GB Compatible) + + + + Tokimeki Memorial Pocket - Sport Hen - Koutei no Photograph (Japan) (SGB Enhanced) (GB Compatible) + + + + Tokoro-san no Setagaya C.C. (Japan) (GB Compatible) + + + + Tom and Jerry (USA, Europe) + + + + Tom and Jerry - Mouse Hunt (Europe) (En,Fr,De,Es,It) + + + + Tom and Jerry - Mouse Hunt (USA) (En,Fr,Es) + + + + Tom and Jerry in - Mouse Attacks! (Europe) (En,Fr,De,Es,It,Nl,Da) + + + + Tom and Jerry in - Mouse Attacks! (USA) + + + + Tom and Jerry in - Mouse Attacks! (USA) (Rev 1) + + + + Tom Clancy's Rainbow Six (USA, Europe) (En,Fr,De) + + + + Tomb Raider (USA, Europe) (En,Fr,De,Es,It) + + + + Tomb Raider (USA, Europe) (En,Fr,De,Es,It) (Beta) + + + + Tomb Raider - Curse of the Sword (USA, Europe) + + + + Tonic Trouble (Europe) (En,Fr,De,Es,It,Nl) + + + + Tonka Construction Site (USA) + + + + Tonka Raceway (Europe) + + + + Tonka Raceway (USA) + + + + Tonka Raceway (USA) (Rumble Version) + + + + Tony Hawk's Pro Skater 2 (USA, Europe) + + + + Tony Hawk's Pro Skater 3 (USA, Europe) + + + + Tony Hawk's Skateboarding ~ Tony Hawk's Pro Skater (USA, Europe) + + + + Toobin' (USA) + + + + Toonsylvania (Europe) (En,Fr,De,Es,It,Nl) + + + + Toonsylvania (USA) + + + + Tootuff (Europe) (En,Fr,De,Es,It,Nl) + + + + Top Gear Pocket (Japan) (En) (Rumble Version) + + + + Top Gear Pocket (USA) (Rumble Version) + + + + Top Gear Pocket 2 (Japan) (Rumble Version) + + + + Top Gear Pocket 2 (USA) + + + + Top Gear Rally (Europe) (Rumble Version) + + + + Top Gear Rally 2 (Europe) + + + + Top Gun - Fire Storm (USA, Europe) (En,Fr,De,Es,It,Nl) + + + + Totsugeki! Papparatai (Japan) (SGB Enhanced) (GB Compatible) + + + + Tottoko Hamutarou - Tomodachi Daisakusen Dechu (Japan) + + + + Tottoko Hamutarou - Tomodachi Daisakusen Dechu (Japan) (Rev 1) + + + + Tottoko Hamutarou 2 - Hamu-chan Zu Daishuugou Dechu (Japan) + + + + Towers - Lord Baniff's Deceit (USA, Europe) + + + + Towers II - Plight of the Stargazer (USA) (Proto 1) + + + + Towers II - Plight of the Stargazer (USA) (Proto 2) (2001-12-09) + + + + Toy Story 2 (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Toy Story Racer (Europe) (En,Fr,De) + + + + Toy Story Racer (USA, Europe) + + + + Trade & Battle Card Hero (Japan) (SGB Enhanced) (GB Compatible) + + + + Trade & Battle Card Hero (Japan) (Rev 1) (3DS Virtual Console) (SGB Enhanced) (GB Compatible) + + + + Trick Boarder (Europe) + + + + Trick Boarder (USA) + + + + Trickboarder GP (Japan) + + + + Triple Play 2001 (USA, Europe) + + + + Trouballs (USA) + + + + Tsuri Sensei 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Tsuriiko!! (Japan) + + + + Turbo RC Racing (USA) (Proto) + + + + Turok - Rage Wars (USA, Europe) (En,Fr,De,Es) + + + + Turok 2 - Jikku Senshi (Japan) (GB Compatible) + + + + Turok 2 - Seeds of Evil (USA, Europe) (En,Fr,De,Es) (GB Compatible) + + + + Turok 3 - Shadow of Oblivion (USA, Europe) (En,Fr,De,Es) + + + + Tutty (Europe) (Demo) + + + + Tweenies - Doodles' Bones (Europe) (En,De,Es,It) + + + + Tweenies - Doodles' Bones (Europe) (En,Nl,Sv,No,Da) + + + + Tweety Sekaiisshuu - 80 Hiki no Neko o Sagase! (Japan) + + + + Tweety's High-Flying Adventure (Europe) (En,Es,It) + + + + Tweety's High-Flying Adventure (Europe) (En,Fr,De) + + + + Tweety's High-Flying Adventure (USA) + + + + Tyrannosaurus Tex (USA) (Proto) + + + + Tyrian 2000 (USA) (Proto) (GB Compatible) + + + + Uchuujin Tanaka Tarou de - RPG Tsukuru GB 2 (Japan) + + + + UEFA 2000 (Europe) (En,Fr,De,Es,It,Nl) + + + + Ultimate Fighting Championship (Europe) + + + + Ultimate Fighting Championship (USA) + + + + Ultimate Paintball (USA, Europe) + + + + Ultimate Surfing (Europe) + + + + Ultimate Surfing (USA) + + + + Uno (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible) + + + + Uno (USA) (GB Compatible) + + + + V-Rally - Championship Edition (Europe) (En,Fr,De,Es) + + + + V-Rally - Championship Edition (Japan) + + + + V-Rally - Edition 99 (USA) (En,Fr,Es) + + + + Vegas Games (Europe) (En,Fr,De) + + + + Vegas Games (USA) + + + + Vigilante 8 (USA) (Rumble Version) + + + + VIP (Europe) (En,Fr,De,Es,It) + + + + VIP (USA) (En,Fr,Es) + + + + Visiteurs, Les (France) (GB Compatible) + + + + Wacky Races (Europe) (En,Fr,De,Es,It,Nl) + + + + Wacky Races (USA) (En,Fr,Es) + + + + Walt Disney World Quest - Magical Racing Tour (Europe) (Fr,De,Es) + + + + Walt Disney World Quest - Magical Racing Tour (USA, Europe) + + + + Warau Inu no Bouken - Silly Go Lucky! (Japan) + + + + Wario Land 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + Wario Land 3 (World) (En,Ja) + + + + Wario Land II (USA, Europe) (SGB Enhanced) (GB Compatible) + + + + Warlocked (USA) + + + + Warriors of Might and Magic (USA) (En,Fr,De) + + + + Watashi no Kitchen (Japan) + + + + Watashi no Kitchen (Japan) (Rev 1) + + + + Watashi no Restaurant (Japan) + + + + WCW Mayhem (USA, Europe) + + + + WDL - World Destruction League - Thunder Tanks (USA) (En,Fr,De) + + + + Wendy - Der Traum von Arizona (Germany) + + + + Wendy - Every Witch Way (USA, Europe) + + + + Wetrix (Europe) (En,Fr,De) + + + + Wetrix GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Who Wants to Be a Millionaire - 2nd Edition (USA) + + + + Wild Thornberrys, The - Rambler (USA) + + + + Wings of Fury (Europe) (En,Fr,De) (GB Compatible) + + + + Wings of Fury (USA) (GB Compatible) + + + + Winnie the Pooh - Adventures in the 100 Acre Wood (Europe) (En,Fr,De,Es,It,Nl,Da) + + + + Winnie the Pooh - Adventures in the 100 Acre Wood (USA) + + + + Wizardry Empire (Japan) + + + + Wizardry Empire (Japan) (Rev 1) + + + + Wizardry Empire - Fukkatsu no Tsue (Japan) + + + + Wizardry I - Proving Grounds of the Mad Overlord (Japan) + + + + Wizardry II - Llylgamyn no Isan (Japan) + + + + Wizardry III - Diamond no Kishi (Japan) + + + + Woody Woodpecker (Europe) (En,Fr,De,Es,It) + + + + Woody Woodpecker (USA) + + + + Woody Woodpecker no Go! Go! Racing (Japan) + + + + Woody Woodpecker Racing (Europe) + + + + Woody Woodpecker Racing (USA) + + + + World Soccer GB 2 (Japan) (SGB Enhanced) (GB Compatible) + + + + World Soccer GB 2000 (Japan) + + + + Worms Armageddon (Europe) (En,Fr,De,Es,It,Nl) + + + + Worms Armageddon (USA) (En,Fr,Es) + + + + WWF Attitude (USA, Europe) + + + + WWF Betrayal (USA, Europe) + + + + WWF WrestleMania 2000 (USA, Europe) (GB Compatible) + + + + X-Men - Mutant Academy (Japan) + + + + X-Men - Mutant Academy (USA, Europe) + + + + X-Men - Mutant Academy (USA, Europe) (Rev 1) + + + + X-Men - Mutant Wars (USA, Europe) + + + + X-Men - Wolverine's Rage (Europe) + + + + X-Men - Wolverine's Rage (USA) + + + + Xena - Warrior Princess (USA, Europe) (En,Fr,De,Es,It,Nl) + + + + Xtreme Sports (USA) + + + + Xtreme Wheels (Europe) + + + + Xtreme Wheels (USA) + + + + Yakouchuu GB (Japan) + + + + Yars' Revenge (USA, Europe) (GB Compatible) + + + + Yogi Bear - Great Balloon Blast (USA) + + + + Yu-Gi-Oh! - Dark Duel Stories (Europe) + + + + Yu-Gi-Oh! - Dark Duel Stories (USA) + + + + Yu-Gi-Oh! - Das Dunkle Duell (Germany) + + + + Yu-Gi-Oh! - Duel des Tenebres (France) + + + + Yu-Gi-Oh! - Duelo en las Tinieblas (Spain) + + + + Yu-Gi-Oh! - Monster Capsule GB (Japan) (SGB Enhanced) (GB Compatible) + + + + Yu-Gi-Oh! - Racconti Oscuri (Italy) + + + + Yu-Gi-Oh! Duel Monsters 4 - Battle of Great Duelist - Jounouchi Deck (Japan) + + + + Yu-Gi-Oh! Duel Monsters 4 - Battle of Great Duelist - Kaiba Deck (Japan) + + + + Yu-Gi-Oh! Duel Monsters 4 - Battle of Great Duelist - Yuugi Deck (Japan) + + + + Yu-Gi-Oh! Duel Monsters II - Dark Duel Stories (Japan) (SGB Enhanced) (GB Compatible) + + + + Yu-Gi-Oh! Duel Monsters III - Tri Holy God Advant (Japan) + + + + Zebco Fishing! (USA) (Rumble Version) + + + + Zelda no Densetsu - Fushigi no Kinomi - Daichi no Shou (Japan) + + + + Zelda no Densetsu - Fushigi no Kinomi - Jikuu no Shou (Japan) + + + + Zelda no Densetsu - Yume o Miru Shima DX (Japan) (SGB Enhanced) (GB Compatible) + + + + Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 2) (SGB Enhanced) (GB Compatible) + + + + Zen-Nihon Shounen Soccer Taikai - Mezase Nihon Ichi! (Japan) + + + + Zidane Football Generation (Europe) (En,Fr,De,Es,It) + + + + Zoboomafoo - Playtime in Zobooland (USA) + + + + Zoids - Jashin Fukkatsu! Genobreaker Hen (Japan) (SGB Enhanced) (GB Compatible) + + + + Zoids - Jashin Fukkatsu! Genobreaker Hen (Japan) (Rev 1) (SGB Enhanced) (GB Compatible) + + + + Zoids - Shirogane no Juukishin Liger Zero (Japan) + + + + Zok Zok Heroes (Japan) + + +
diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy Color.dat.bytes.meta b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy Color.dat.bytes.meta new file mode 100644 index 00000000..f9d28b9a --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy Color.dat.bytes.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 859a5d616f2e7834e84ff57efa18e495 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy.dat.bytes b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy.dat.bytes new file mode 100644 index 00000000..e95eadba --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy.dat.bytes @@ -0,0 +1,6628 @@ + + + +
+ Nintendo - Game Boy + Nintendo - Game Boy + 20200509-140017 + aci68, akubi, Bent, BigFred, BitLooter, C. V. Reynolds, chillerecke, darthcloud, DeadSkullzJr, Densetsu, DeriLoko3, ElBarto, foxe, fuzzball, Gefflon, Hiccup, hking0036, jimmsu, kazumi213, leekindo, Money_114, NGEfreak, omonim2007, Powerpuff, PPLToast, relax, RetroUprising, rpg2813, Tauwasser, xNo, xuom2 + No-Intro + http://www.no-intro.org +
+ + [BIOS] Nintendo Game Boy Boot ROM (World) (Rev 1) + + + + [BIOS] Nintendo Game Boy Boot ROM (Japan) (En) + + + + [BIOS] Nintendo Game Boy Pocket Boot ROM (World) + + + + 3 Choume no Tama - Tama and Friends - 3 Choume Obake Panic!! (Japan) + + + + 3-pun Yosou - Umaban Club (Japan) + + + + 4 in 1 (Europe) (4B-002, Sachen) (Unl) + + + + 4 in 1 (Europe) (4B-005, Sachen-Commin) (Unl) + + + + 4 in 1 (Europe) (4B-007, Sachen) (Unl) + + + + 4 in 1 (Europe) (4B-001, Sachen-Commin) (Unl) + + + + 4 in 1 (Europe) (4B-008, Sachen) (Unl) + + + + 4 in 1 (Europe) (4B-004, Sachen-Commin) (Unl) + + + + 4 in 1 (Europe) (4B-006, Sachen) (Unl) + + + + 4 in 1 (Europe) (4B-009, Sachen) (Unl) + + + + 4 in 1 (Taiwan) (En,Zh) (4B-003, Sachen-Commin) (Unl) + + + + 4-in-1 Fun Pak (Japan) + + + + 4-in-1 Fun Pak (USA, Europe) + + + + 4-in-1 Funpak - Volume II (USA, Europe) + + + + A-mazing Tater (USA) + + + + Aa Harimanada (Japan) + + + + Addams Family, The (Europe) (En,Fr,De) + + + + Addams Family, The (Japan) + + + + Addams Family, The (USA) + + + + Addams Family, The - Pugsley's Scavenger Hunt (USA, Europe) + + + + Adventure Island (USA, Europe) + + + + Adventure Island II - Aliens in Paradise (USA, Europe) + + + + Adventures of Lolo (Europe) (SGB Enhanced) + + + + Adventures of Pinocchio, The (Europe) (Proto) + + + + Adventures of Rocky and Bullwinkle and Friends, The (USA) + + + + Adventures of Star Saver, The (USA, Europe) + + + + Aerostar (Japan) + + + + Aerostar (USA, Europe) + + + + After Burst (Japan) + + + + Agro Soar (Australia) + + + + Akazukin Chacha (Japan) (SGB Enhanced) + + + + Akumajou Dracula - Shikkoku Taru Zensoukyoku - Dark Night Prelude (Japan) (SGB Enhanced) + + + + Akumajou Special - Boku Dracula-kun (Japan) + + + + Aladdin (Europe) (SGB Enhanced) + + + + Aladdin (USA) (SGB Enhanced) + + + + Alfred Chicken (Europe) + + + + Alfred Chicken (Japan) (SGB Enhanced) + + + + Alfred Chicken (USA) + + + + Alien 3 (Japan) + + + + Alien 3 (USA, Europe) + + + + Alien Olympics (Europe) + + + + Alien vs Predator (Japan) + + + + Alien vs Predator - The Last of His Clan (USA) + + + + All-Star Baseball 99 (USA) + + + + Alleyway (World) + + + + Altered Space - A 3-D Alien Adventure (Europe) + + + + Altered Space - A 3-D Alien Adventure (Japan) + + + + Altered Space - A 3-D Alien Adventure (USA) + + + + Amazing Penguin (USA, Europe) + + + + Amazing Spider-Man, The (USA, Europe) + + + + America Oudan Ultra Quiz (Japan) + + + + America Oudan Ultra Quiz Part 2 (Japan) + + + + America Oudan Ultra Quiz Part 2 (Japan) (Rev 1) + + + + America Oudan Ultra Quiz Part 3 - Champion Taikai (Japan) + + + + America Oudan Ultra Quiz Part 4 (Japan) + + + + Amida (Japan) + + + + Animal Breeder (Japan) (SGB Enhanced) + + + + Animal Breeder 2 (Japan) (SGB Enhanced) + + + + Animaniacs (Europe) (SGB Enhanced) + + + + Animaniacs (USA) (SGB Enhanced) + + + + Another Bible (Japan) (SGB Enhanced) + + + + Aoki Densetsu Shoot! (Japan) (SGB Enhanced) + + + + Arcade Classic No. 1 - Asteroids & Missile Command (USA, Europe) (SGB Enhanced) + + + + Arcade Classic No. 2 - Centipede & Millipede (USA, Europe) (SGB Enhanced) + + + + Arcade Classic No. 3 - Galaga & Galaxian (Europe) (SGB Enhanced) + + + + Arcade Classic No. 3 - Galaga & Galaxian (USA) (SGB Enhanced) + + + + Arcade Classic No. 4 - Defender & Joust (USA, Europe) (SGB Enhanced) + + + + Arcade Classics - Super Breakout & Battlezone (USA, Europe) (SGB Enhanced) + + + + Aretha (Japan) + + + + Aretha II (Japan) + + + + Aretha III (Japan) + + + + Asmik-kun World 2 (Japan) + + + + Asterix (Europe) (En,Fr,De,Es,It) + + + + Asterix & Obelix (Spain) (En,Es) (SGB Enhanced) + + + + Asterix & Obelix (Europe) (Fr,De) (SGB Enhanced) + + + + Asteroids (USA, Europe) + + + + Astro Rabby (Japan) + + + + Atomic Punk (USA) + + + + Attack of the Killer Tomatoes (Japan) + + + + Attack of the Killer Tomatoes (USA, Europe) + + + + Avenging Spirit (USA, Europe) + + + + Ayakashi no Shiro (Japan) + + + + B.C. Kid (Europe) + + + + B.C. Kid 2 (Europe) (SGB Enhanced) + + + + Baby T-Rex (Europe) + + + + Bakenou TV '94 (Japan) (SGB Enhanced) + + + + Bakenou V3 (Japan) + + + + Bakuchou Retrieve Master (Japan) (SGB Enhanced) + + + + Bakuchou Retsuden Shou - Hyper Fishing (Japan) (SGB Enhanced) + + + + Bakuretsu Senshi Warrior (Japan) + + + + Balloon Kid (USA, Europe) + + + + Bamse (Sweden) + + + + Banishing Racer (Japan) + + + + Barbie - Game Girl (USA, Europe) + + + + Bart no Survival Camp (Japan) + + + + Bart Simpson's Escape from Camp Deadly (USA, Europe) + + + + Baseball (World) + + + + Baseball Kids (Japan) + + + + Bases Loaded for Game Boy (USA) + + + + Bass Fishing Tatsujin Techou (Japan) + + + + Bataille Navale (France) (En,Fr,De,Es) + + + + Batman - Return of the Joker (Japan) + + + + Batman - Return of the Joker (USA, Europe) + + + + Batman - The Animated Series (USA, Europe) + + + + Batman - The Video Game (World) + + + + Batman Forever (Japan) + + + + Batman Forever (USA, Europe) + + + + Battle Arena Toshinden (Europe) (SGB Enhanced) + + + + Battle Arena Toshinden (USA) (SGB Enhanced) + + + + Battle Bull (Japan) + + + + Battle Bull (USA) + + + + Battle Crusher (Japan) (SGB Enhanced) + + + + Battle Dodge Ball (Japan) + + + + Battle of Kingdom (Japan) + + + + Battle of Olympus, The (Europe) (En,Fr,De,Es,It) + + + + Battle Pingpong (Japan) + + + + Battle Space (Japan) + + + + Battle Unit Zeoth (Japan) + + + + Battle Unit Zeoth (USA, Europe) + + + + BattleCity (Japan) + + + + Battleship (USA, Europe) + + + + Battletoads (Japan) + + + + Battletoads (USA, Europe) + + + + Battletoads in Ragnarok's World (Europe) + + + + Battletoads in Ragnarok's World (USA) + + + + Battletoads-Double Dragon (Europe) + + + + Battletoads-Double Dragon (USA) + + + + Beavis and Butt-Head (USA, Europe) + + + + Beethoven (Europe) (SGB Enhanced) + + + + Beetlejuice (USA) + + + + Best of the Best - Championship Karate (Europe) + + + + Best of the Best - Championship Karate (USA) + + + + Bikkuri Nekketsu Shin Kiroku! - Dokodemo Kin Medal (Japan) + + + + Bill & Ted's Excellent Game Boy Adventure - A Bogus Journey! (USA, Europe) + + + + Bill Elliott's NASCAR Fast Tracks (USA) + + + + Bionic Battler (USA) + + + + Bionic Commando (Europe) + + + + Bionic Commando (Japan) + + + + Bionic Commando (USA) + + + + Bishoujo Senshi Sailor Moon (Japan) + + + + Bishoujo Senshi Sailor Moon R (Japan) + + + + Black Bass - Lure Fishing (USA) + + + + Blades of Steel (Europe) + + + + Blades of Steel (USA) + + + + Blaster Master Boy (USA) + + + + Blaster Master Jr. (Europe) + + + + Block Kuzushi GB (Japan) (SGB Enhanced) + + + + Blodia (Japan) + + + + Blues Brothers, The (USA, Europe) + + + + Blues Brothers, The - Jukebox Adventure (Europe) + + + + Bo Jackson - Two Games in One (USA) + + + + Boggle Plus (USA) + + + + Bokujou Monogatari GB (Japan) (SGB Enhanced) + + + + Bokujou Monogatari GB (Japan) (Rev 1) (SGB Enhanced) + + + + Bokujou Monogatari GB (Japan) (CGB+SGB Enhanced) (NP) + + + + Bomb Jack (Europe) + + + + Bomber Boy (Japan) + + + + Bomber King - Scenario 2 (Japan) + + + + Bomber Man Collection (Japan) (SGB Enhanced) + + + + Bomber Man GB (Japan) (SGB Enhanced) + + + + Bomber Man GB 2 (Japan) (SGB Enhanced) + + + + Bomber Man GB 3 (Japan) (SGB Enhanced) + + + + Bomberman GB (USA, Europe) (SGB Enhanced) + + + + Bonk's Adventure (USA) + + + + Bonk's Revenge (USA) (SGB Enhanced) + + + + Booby Boys (Japan) + + + + Boomer's Adventure in ASMIK World (USA) + + + + Bouken! Puzzle Road (Japan) + + + + Boulder Dash (Europe) + + + + Boulder Dash (Japan) + + + + Boxing (Japan) + + + + Boxxle (USA, Europe) (Rev 1) + + + + Boxxle (USA) + + + + Boxxle II (USA, Europe) + + + + Brain Bender (Europe) + + + + Brain Bender (USA) + + + + Brain Drain (Europe) (SGB Enhanced) + + + + Brain Drain (Japan) (SGB Enhanced) + + + + Brain Drain (USA) (SGB Enhanced) + + + + Bram Stoker's Dracula (USA, Europe) + + + + BreakThru! (USA) + + + + Bubble Bobble (Japan) + + + + Bubble Bobble (USA, Europe) + + + + Bubble Bobble Junior (Japan) + + + + Bubble Bobble Part 2 (USA, Europe) + + + + Bubble Ghost (Japan) + + + + Bubble Ghost (USA, Europe) + + + + Bubsy II (Europe) + + + + Bubsy II (USA) + + + + Bugs Bunny Collection (Japan) (SGB Enhanced) + + + + Bugs Bunny Collection (Japan) (Rev 1) (SGB Enhanced) + + + + Bugs Bunny Crazy Castle 2, The (USA) + + + + Bugs Bunny Crazy Castle, The (USA, Europe) + + + + Burai Fighter Deluxe (USA, Europe) + + + + Burai Senshi Deluxe (Japan) + + + + BurgerTime Deluxe (World) + + + + Burning Paper (Japan) + + + + Bust-A-Move 2 - Arcade Edition (USA, Europe) + + + + Bust-A-Move 3 DX (Europe) + + + + Buster Bros. (USA) + + + + Cadillac II (Japan) + + + + Caesars Palace (Europe) (En,Fr,De,Es,It) + + + + Caesars Palace (Japan) + + + + Caesars Palace (USA) + + + + Caesars Palace (USA) (Rev 1) + + + + Capcom Quiz - Hatena no Daibouken (Japan) + + + + Captain America and the Avengers (USA) + + + + Captain Tsubasa J - Zenkoku Seiha e no Chousen (Japan) (SGB Enhanced) + + + + Captain Tsubasa VS (Japan) + + + + Card Game (Japan) + + + + Casino FunPak (USA, Europe) + + + + Casper (Europe) + + + + Casper (USA) + + + + Castelian (Europe) + + + + Castelian (USA) + + + + Castle Quest (Europe) + + + + Castlevania - The Adventure (Europe) + + + + Castlevania - The Adventure (USA) + + + + Castlevania - The Adventure (USA) (Castlevania Anniversary Collection) + + + + Castlevania II - Belmont's Revenge (USA, Europe) + + + + Castlevania II - Belmont's Revenge (USA, Europe) (Castlevania Anniversary Collection) + + + + Castlevania Legends (USA, Europe) (SGB Enhanced) + + + + Catrap (USA) + + + + Catrap (USA) (Beta) + + + + Cave Noire (Japan) + + + + Centipede (USA) + + + + Centipede (USA, Europe) + + + + Chachamaru Boukenki 3 - Abyss no Tou (Japan) + + + + Chachamaru Panic (Japan) + + + + Chalvo 55 - Super Puzzle Action (Japan) + + + + Championship Pool (USA) + + + + Chase H.Q. (USA, Europe) + + + + Chessmaster, The (Europe) + + + + Chessmaster, The (Japan) + + + + Chessmaster, The (USA, Europe) + + + + Chessmaster, The (USA) (Rev 1) + + + + Chibi Maruko-chan - Maruko Deluxe Theater (Japan) (SGB Enhanced) + + + + Chibi Maruko-chan - Okozukai Daisakusen! (Japan) + + + + Chibi Maruko-chan 2 - Deluxe Maruko World (Japan) + + + + Chibi Maruko-chan 3 - Mezase! Game Taishou no Maki (Japan) + + + + Chibi Maruko-chan 4 - Kore ga Nihon Da yo! Ouji-sama (Japan) + + + + Chiki Chiki Machine Mou Race (Japan) + + + + Chiki Chiki Tengoku (Japan) + + + + Chikyuu Kaihou Gun ZAS (Japan) (En) + + + + Choplifter II (Japan) + + + + Choplifter II - Rescue & Survive (Europe) + + + + Choplifter II - Rescue & Survive (USA) + + + + Choplifter III (Europe) + + + + Chou Mashin Eiyuu Den Wataru - Mazekko Monster (Japan) (SGB Enhanced) + + + + Chou Mashin Eiyuu Den Wataru - Mazekko Monster (Japan) (Beta) (SGB Enhanced) + + + + Chou Mashin Eiyuu Den Wataru - Mazekko Monster 2 (Japan) (SGB Enhanced) + + + + Chousoku Spinner (Japan) (SGB Enhanced) + + + + Chuck Rock (USA, Europe) + + + + Cliffhanger (USA, Europe) + + + + Collection Pocket (Japan) (SGB Enhanced) + + + + College Slam (USA) + + + + Contra (Japan) + + + + Contra - The Alien Wars (USA) (SGB Enhanced) + + + + Contra Spirits (Japan) (SGB Enhanced) + + + + Cool Ball (USA) + + + + Cool Hand (Europe) + + + + Cool Hand (Europe) (Fr,De) + + + + Cool Spot (Europe) + + + + Cool Spot (USA) + + + + Cool World (USA, Europe) + + + + Cosmo Tank (Japan) + + + + Cosmo Tank (USA) + + + + Cosmo Tank (Japan) (Beta) + + + + Crayon Shin-chan - Ora no Gokigen Collection (Japan) (SGB Enhanced) + + + + Crayon Shin-chan - Ora to Shiro wa Otomodachi Da yo (Japan) + + + + Crayon Shin-chan 2 - Ora to Wanpaku Gokko Dazo (Japan) + + + + Crayon Shin-chan 3 - Ora no Gokigen Athletic (Japan) + + + + Crayon Shin-chan 4 - Ora no Itazura Daihenshin (Japan) (SGB Enhanced) + + + + Crystal Quest (USA) + + + + Cult Jump (Japan) + + + + Cult Master - Ultraman ni Miserarete (Japan) + + + + CutThroat Island (USA, Europe) + + + + Cyraid (USA) + + + + Daedalian Opus (USA) + + + + Daffy Duck (USA, Europe) (SGB Enhanced) + + + + Daffy Duck (Europe) + + + + Dai-2-ji Super Robot Taisen G (Japan) (SGB Enhanced) + + + + Daikaijuu Monogatari - The Miracle of the Zone (Japan) (SGB Enhanced) + + + + Daiku no Gen-san - Ghost Building Company (Japan) + + + + Daiku no Gen-san - Robot Teikoku no Yabou (Japan) + + + + Daisenryaku (Japan) + + + + Darkman (USA, Europe) + + + + Darkwing Duck (Europe) + + + + Darkwing Duck (USA) + + + + Darkwing Duck (Germany) + + + + Darkwing Duck (Spain) + + + + David Crane's The Rescue of Princess Blobette (Europe) + + + + David Crane's The Rescue of Princess Blobette (USA) + + + + Days of Thunder (USA, Europe) + + + + Dead Heat Scramble (Japan) + + + + Dead Heat Scramble (USA) + + + + Death Track (Europe) (Proto) + + + + Dennis (Europe) + + + + Dennis the Menace (USA) + + + + Desert Strike - Return to the Gulf (Europe) (SGB Enhanced) + + + + Desert Strike - Return to the Gulf (USA) (SGB Enhanced) + + + + Dexterity (USA, Europe) + + + + Diablo (USA) (Proto) + + + + Dick Tracy (USA) + + + + Dig Dug (Europe) + + + + Dig Dug (USA) + + + + Dino Breeder (Japan) (SGB Enhanced) + + + + Dino Breeder (Japan) (Rev 1) (SGB Enhanced) + + + + Dino Breeder 2 (Japan) (SGB Enhanced) + + + + Dirty Racing (Japan) + + + + Dodge Boy (Japan) + + + + Donkey Kong (Japan, USA) (SGB Enhanced) + + + + Donkey Kong (World) (Rev 1) (SGB Enhanced) + + + + Donkey Kong Land (Japan) (SGB Enhanced) + + + + Donkey Kong Land (USA, Europe) (SGB Enhanced) + + + + Donkey Kong Land 2 (USA, Europe) (SGB Enhanced) + + + + Donkey Kong Land III (USA, Europe) (SGB Enhanced) + + + + Donkey Kong Land III (USA, Europe) (Rev 1) (SGB Enhanced) + + + + Donkey Kong Land III (USA, Europe) (Beta) + + + + Doraemon - Taiketsu HimitsuDougu!! (Japan) + + + + Doraemon 2 - Animal Planet Densetsu (Japan) + + + + Doraemon Kart (Japan) (SGB Enhanced) + + + + Doraemon no Game Boy de Asobouyo Deluxe 10 (Japan) (SGB Enhanced) + + + + Doraemon no Study Boy 1 - Shou 1 Kokugo Kanji (Japan) + + + + Doraemon no Study Boy 2 - Shou 1 Sansuu Keisan (Japan) + + + + Doraemon no Study Boy 3 - Ku Ku Master (Japan) + + + + Doraemon no Study Boy 4 - Shou ni Kokugo Kanji (Japan) + + + + Doraemon no Study Boy 5 - Shou 2 Sansuu Keisan (Japan) + + + + Doraemon no Study Boy 6 - Gakushuu Kanji Master 1006 (Japan) + + + + Double Dragon (Japan) + + + + Double Dragon (USA, Europe) + + + + Double Dragon 3 - The Arcade Game (USA, Europe) + + + + Double Dragon II (USA, Europe) + + + + Double Dribble - 5 on 5 (USA) + + + + Double Yakuman (Japan) + + + + Double Yakuman II (Japan) + + + + Double Yakuman Jr. (Japan) + + + + Downtown - Nekketsu Koushinkyoku - Dokodemo Daiundoukai (Japan) + + + + Downtown Special - Kunio-kun no Jidaigeki Da yo Zenin Shuugou! (Japan) + + + + Dr. Franken (Europe) (En,Fr,De,Es,It,Nl,Sv) + + + + Dr. Franken (Japan) + + + + Dr. Franken (USA) + + + + Dr. Franken II (USA, Europe) (En,Fr,De,Es,It,Nl,Sv) + + + + Dr. Mario (World) + + + + Dr. Mario (World) (Rev 1) + + + + Dr. Mario (World) (Beta) + + + + Dracula Densetsu (Japan) + + + + Dracula Densetsu (Japan) (Castlevania Anniversary Collection) + + + + Dracula Densetsu II (Japan) + + + + Dracula Densetsu II (Japan) (Castlevania Anniversary Collection) + + + + Dragon Ball Z - Gokuu Gekitouden (Japan) (SGB Enhanced) + + + + Dragon Ball Z - Gokuu Hishouden (Japan) (SGB Enhanced) + + + + Dragon Slayer Gaiden - Nemuri no Oukan (Japan) + + + + Dragon Slayer I (Japan) + + + + Dragon Tail (Japan) + + + + Dragon's Lair (Japan) + + + + Dragon's Lair - The Legend (Europe) + + + + Dragon's Lair - The Legend (USA) + + + + DragonHeart (France) + + + + DragonHeart (USA, Europe) + + + + Dropzone (Europe) + + + + Druaga no Tou (Japan) + + + + DuckTales (Europe) + + + + DuckTales (Japan) + + + + DuckTales (USA) + + + + DuckTales 2 (Europe) + + + + DuckTales 2 (Japan) + + + + DuckTales 2 (USA) + + + + Dungeon Land (Japan) + + + + DX Bakenou Z (Japan) + + + + DX Bakenou Z (Japan) (Rev 1) + + + + Dynablaster (Europe) + + + + Earthworm Jim (Europe) + + + + Earthworm Jim (USA) + + + + Eddie's Puzzle Time (USA) (Proto) + + + + Elevator Action (Japan) + + + + Elevator Action (USA, Europe) + + + + Elite Soccer (USA) (SGB Enhanced) + + + + Exodus - Journey to the Promised Land (USA) (Unl) + + + + Extra Bases (USA) + + + + F-1 Race (World) + + + + F-1 Race (World) (Rev 1) + + + + F-1 Spirit (Japan) + + + + F-15 Strike Eagle (USA, Europe) + + + + F-15 Strike Eagle II (USA, Europe) (Beta) (1992-07) + + + + F1 Boy (Japan) + + + + F1 Pole Position (USA, Europe) + + + + Faceball 2000 (USA) + + + + Family Jockey (Japan) + + + + Family Jockey 2 - Meiba no Kettou (Japan) + + + + Famista (Japan) + + + + Famista 2 (Japan) + + + + Famista 3 (Japan) + + + + Fastest Lap (Japan, USA) + + + + Felix the Cat (USA, Europe) + + + + Felix the Cat (USA, Europe) (Beta) + + + + Ferrari (Japan) + + + + Ferrari Grand Prix Challenge (USA, Europe) + + + + Fidgetts, The (Japan) + + + + Fidgetts, The (USA, Europe) (En,Fr,De,Es,It,Nl,Sv) + + + + FIFA - Road to World Cup 98 (Europe) (SGB Enhanced) + + + + FIFA - Road to World Cup 98 (Europe) (Rev 1) (SGB Enhanced) + + + + FIFA International Soccer (USA, Europe) (En,Fr,De,Es) (SGB Enhanced) + + + + FIFA Soccer 96 (USA, Europe) (En,Fr,De,Es) (SGB Enhanced) + + + + FIFA Soccer 97 (USA, Europe) (SGB Enhanced) + + + + Fighting Simulator 2 in 1 - Flying Warriors (USA, Europe) + + + + Final Fantasy Adventure (USA) + + + + Final Fantasy Legend II (USA) + + + + Final Fantasy Legend III (USA) + + + + Final Fantasy Legend, The (USA) + + + + Final Reverse (Japan) + + + + Fire Fighter (Europe) + + + + Fish Dude (USA) + + + + Fist of the North Star (USA) + + + + Flappy Special (Japan) + + + + Flash, The (USA, Europe) + + + + Fleet Commander VS. (Japan) + + + + Flintstones, The (USA, Europe) + + + + Flintstones, The - King Rock Treasure Island (USA, Europe) + + + + Flipull (USA) + + + + Flipull - An Exciting Cube Game (Japan) + + + + Football International (Europe) + + + + Foreman for Real (Japan) + + + + Foreman for Real (USA, Europe) + + + + Fortified Zone (USA, Europe) + + + + Frank Thomas Big Hurt Baseball (USA, Europe) + + + + Franky, Joe & Dirk - On the Tiles (Europe) (En,Fr,De,Es,It,Nl) + + + + Frisky Tom (Japan) (SGB Enhanced) + + + + Frogger (USA) + + + + From TV Animation Slam Dunk - Gakeppuchi no Kesshou League (Japan) (SGB Enhanced) + + + + From TV Animation Slam Dunk 2 - Zenkoku e no Tip Off (Japan) (SGB Enhanced) + + + + Funny Field (Japan) + + + + Fushigi na Blobby - Princess Blob o Sukue! (Japan) + + + + Fushigi no Dungeon - Fuurai no Shiren GB - Tsukikage Mura no Kaibutsu (Japan) (SGB Enhanced) + + + + G Arms - Operation Gundam (Japan) + + + + Galaga & Galaxian (Japan) (SGB Enhanced) + + + + Game & Watch Gallery (Europe) (SGB Enhanced) + + + + Game & Watch Gallery (USA) (SGB Enhanced) + + + + Game & Watch Gallery (USA) (Rev 1) (SGB Enhanced) + + + + Game Boy Camera (USA, Europe) (SGB Enhanced) + + + + Game Boy Camera Gold (USA) (SGB Enhanced) + + + + Game Boy Controller Kensa Cartridge (Japan) + + + + Game Boy Datenlogger 1 (Germany) (Unl) + + + + Game Boy Digital Sampling Oscilloscope (Europe) (v3.6) (Unl) + + + + Game Boy Gallery (Japan) (SGB Enhanced) + + + + Game Boy Gallery - 5 Games in 1 (Europe) (SGB Enhanced) + + + + Game Boy Gallery 2 (Australia) (SGB Enhanced) + + + + Game Boy Gallery 2 (Japan) (SGB Enhanced) + + + + Game Boy Test Cartridge (USA, Europe) + + + + Game Boy Wars (Japan) + + + + Game Boy Wars Turbo (Japan) (SGB Enhanced) + + + + Game Boy Wars Turbo - Famitsu Version (Japan) (SGB Enhanced) + + + + Game de Hakken!! Tamagotchi (Japan) (SGB Enhanced) + + + + Game de Hakken!! Tamagotchi - Osutchi to Mesutchi (Japan) (SGB Enhanced) + + + + Game de Hakken!! Tamagotchi 2 (Japan) (SGB Enhanced) + + + + Game Genie (USA) (v2.1) (Unl) + + + + Game of Harmony, The (USA) + + + + Gamera - Daikaijuu Kuuchuu Kessen (Japan) (SGB Enhanced) + + + + GameShark (USA) (Unl) + + + + Ganbare Goemon - Kurofunetou no Nazo (Japan) (SGB Enhanced) + + + + Ganbare Goemon - Sarawareta Ebisumaru (Japan) + + + + Ganso!! Yancha Maru (Japan) + + + + Garfield Labyrinth (Europe) + + + + Gargoyle's Quest (USA, Europe) + + + + Gargoyle's Quest (Europe) (Rev 1) + + + + Gauntlet II (USA, Europe) + + + + GB Basketball (Japan) + + + + GB Genjin (Japan) + + + + GB Genjin 2 (Japan) (SGB Enhanced) + + + + GB Genjin Land - Viva! Chikkun Oukoku (Japan) + + + + GB Pachi-Slot Hisshouhou! Jr. (Japan) + + + + GBKiss Mini Games (Japan) + + + + Gear Works (USA, Europe) + + + + Gegege no Kitarou - Youkai Souzoushu Arawaru! (Japan) (SGB Enhanced) + + + + Gekitou Power Modeller (Japan) (SGB Enhanced) + + + + Gem Gem (Japan) + + + + Genjin Collection (Japan) (SGB Enhanced) + + + + Genjin Cottsu (Japan) (SGB Enhanced) + + + + Genki Bakuhatsu Gambaruger (Japan) + + + + George Foreman's KO Boxing (USA, Europe) + + + + Gerry Anderson's Thunderbirds (Japan) + + + + Getaway, The - High Speed II (USA) + + + + Ghostbusters II (Japan) + + + + Ghostbusters II (USA, Europe) + + + + GI King! - Sanbiki no Yosouya (Japan) + + + + Ginga - Card & Puzzle Collection (Japan) (En,Ja) + + + + Gluecksrad (Germany) + + + + Go Go Ackman (Japan) (SGB Enhanced) + + + + Go! Go! Hitchhike (Japan) (SGB Enhanced) + + + + Go! Go! Tank (Japan) + + + + Go! Go! Tank (USA) + + + + Go! Go! Tank (Japan) (Beta) + + + + Goal! (Europe) + + + + Goal! (USA) + + + + God Medicine - Fantasy Sekai no Tanjou (Japan) + + + + God Medicine - Fukkokuban (Japan) (SGB Enhanced) + + + + Godzilla (USA, Europe) + + + + Gojira-kun - Kaijuu Daikoushin (Japan) + + + + Golf (World) + + + + Golf Classic (Europe) (SGB Enhanced) + + + + Goukaku Boy GOLD - Shikakui Atama o Maruku Suru - Joushiki no Sho (Japan) (Imagineer) + + + + Goukaku Boy GOLD - Shikakui Atama o Maruku Suru - Joushiki no Sho (Japan) (IE Institute) + + + + Goukaku Boy GOLD - Shikakui Atama o Maruku Suru - Kanji no Tatsujin (Japan) (Imagineer) + + + + Goukaku Boy GOLD - Shikakui Atama o Maruku Suru - Kanji no Tatsujin (Japan) (IE Institute) + + + + Goukaku Boy GOLD - Shikakui Atama o Maruku Suru - Keisan no Tatsujin (Japan) (Imagineer) + + + + Goukaku Boy GOLD - Shikakui Atama o Maruku Suru - Keisan no Tatsujin (Japan) (IE Institute) + + + + Goukaku Boy GOLD - Shikakui Atama o Maruku Suru - Nanmon no Sho (Japan) + + + + Goukaku Boy GOLD - Shikakui Atama o Maruku Suru - Zukei no Tatsujin (Japan) + + + + Goukaku Boy Series - 99 Nendo Ban Eitango Center 1500 (Japan) + + + + Goukaku Boy Series - Eijukugo Target 1000 (Japan) + + + + Goukaku Boy Series - Eiken 2kyuu Level no Kaiwa Hyougen 333 (Japan) + + + + Goukaku Boy Series - Eitango Target 1900 (Japan) + + + + Goukaku Boy Series - Gakken - Kanyouku Kotowaza 210 (Japan) + + + + Goukaku Boy Series - Gakken - Rekishi 512 (Japan) + + + + Goukaku Boy Series - Gakken - Yojijukugo 288 (Japan) + + + + Goukaku Boy Series - Gakken - Yojijukugo 288 (Japan) (Rev 1) + + + + Goukaku Boy Series - Kirihara Shoten Hinshutsu Eibunpou Gohou Mondai 1000 (Japan) + + + + Goukaku Boy Series - Koukou Nyuushi Derujun - Chuugaku Eijukugo 350 (Japan) + + + + Goukaku Boy Series - Koukou Nyuushi Derujun - Chuugaku Eitango 1700 (Japan) + + + + Goukaku Boy Series - Koukou Nyuushi Derujun - Kanji Mondai no Seifuku (Japan) + + + + Goukaku Boy Series - Koukou Nyuushi Derujun - Rekishi Nendai Anki Point 240 (Japan) + + + + Goukaku Boy Series - Koukou Nyuushi Derujun - Rika Anki Point 250 (Japan) + + + + Goukaku Boy Series - Nihonshi Target 201 (Japan) + + + + Goukaku Boy Series - Shikakui Atama o Maruku Suru - Kokugo Battle Hen (Japan) (Imagineer) + + + + Goukaku Boy Series - Shikakui Atama o Maruku Suru - Kokugo Battle Hen (Japan) (IE Institute) + + + + Goukaku Boy Series - Shikakui Atama o Maruku Suru - Rika Battle Hen (Japan) (Imagineer) + + + + Goukaku Boy Series - Shikakui Atama o Maruku Suru - Rika Battle Hen (Japan) (IE Institute) + + + + Goukaku Boy Series - Shikakui Atama o Maruku Suru - Sansuu Battle Hen (Japan) (Imagineer) + + + + Goukaku Boy Series - Shikakui Atama o Maruku Suru - Sansuu Battle Hen (Japan) (IE Institute) + + + + Goukaku Boy Series - Shikakui Atama o Maruku Suru - Shakai Battle Hen (Japan) (Imagineer) + + + + Goukaku Boy Series - Shikakui Atama o Maruku Suru - Shakai Battle Hen (Japan) (IE Institute) + + + + Goukaku Boy Series - Shikakui Atama o Maruku Suru - Suuji de Asobou Sansuu Hen (Japan) + + + + Goukaku Boy Series - Shikakui Atama o Maruku Suru - Suuji de Asobou Sansuu Hen (Japan) (Rev 1) + + + + Goukaku Boy Series - Yamakawa Ichimonittou - Nihonshi B Yougo Mondaishuu (Japan) + + + + Goukaku Boy Series - Yamakawa Ichimonittou - Sekaishi B Yougo Mondaishuu (Japan) + + + + Goukaku Boy Series - Z Kai Kyuukyoku no Eigo Koubun 285 (Japan) + + + + Goukaku Boy Series - Z Kai Kyuukyoku no Eijukugo 1017 (Japan) + + + + Goukaku Boy Series - Z Kai Kyuukyoku no Eitango 1500 (Japan) + + + + Goukaku Boy Series - Z Kai Reibun de Oboeru - Kyuukyoku no Kobun Tango (Japan) + + + + Goukaku Boy Series - Z-Kai Reibun de Oboeru - Chuugaku Eitango 1132 (Japan) + + + + Gradius - The Interstellar Assault (USA) + + + + Grander Musashi RV (Japan) (SGB Enhanced) + + + + Great Greed (USA) + + + + Gremlins 2 - The New Batch (World) + + + + HAL Wrestling (USA) + + + + HAL Wrestling (USA) (Beta) + + + + Hammerin' Harry (Europe) + + + + Harvest Moon GB (USA) (SGB Enhanced) + + + + Hatris (Japan, USA) + + + + Hayaoshi Quiz - Ouza Ketteisen (Japan) (SGB Enhanced) + + + + Head On (Japan) + + + + Heavyweight Championship Boxing (USA) + + + + Heiankyo Alien (USA) + + + + Heiankyou Alien (Japan) + + + + Heisei Tensai Bakabon (Japan) + + + + Heracles no Eikou - Ugokidashita Kamigami (Japan) + + + + Hercules (USA, Europe) (SGB Enhanced) + + + + Hero Shuugou!! Pinball Party (Japan) + + + + Hiden Inyou Kikouhou - Ca Da (Japan) + + + + Higashio Osamu Kanshuu Pro Yakyuu Stadium '91 (Japan) + + + + Higashio Osamu Kanshuu Pro Yakyuu Stadium '92 (Japan) + + + + High Stakes Gambling (USA) + + + + Hiryuu no Ken Gaiden (Japan) + + + + Hit the Ice - VHL - The Official Video Hockey League (USA, Europe) + + + + Hitori de Dekirumon! - Cooking Densetsu (Japan) + + + + Hoi Hoi - Game Boy Ban (Japan) + + + + Hokuto no Ken - Seizetsu Juuban Shoubu (Japan) + + + + Home Alone (Japan) + + + + Home Alone (USA, Europe) + + + + Home Alone 2 - Lost in New York (USA, Europe) + + + + Hon Shougi (Japan) (SGB Enhanced) + + + + Hong Kong (Japan) + + + + Honmei Boy (Japan) + + + + Honoo no Toukyuuji - Dodge Danpei (Japan) + + + + Hook (Europe) + + + + Hook (Japan) + + + + Hook (USA) + + + + Hoshi no Kirby (Japan) + + + + Hoshi no Kirby (Japan) (Rev 1) + + + + Hoshi no Kirby 2 (Japan) (SGB Enhanced) + + + + Hudson Hawk (Japan) + + + + Hudson Hawk (USA) + + + + Hugo (Europe) (SGB Enhanced) + + + + Hugo 2 (Germany) + + + + Humans, The (Europe) (En,Fr,De,Es,It) + + + + Humans, The (USA) + + + + Hunchback of Notre Dame, The - 5 Foolishly Fun Topsy Turvy Games (USA, Europe) (SGB Enhanced) + + + + Hunt for Red October, The (USA, Europe) + + + + Hyper Black Bass (Japan) (En,Ja) + + + + Hyper Black Bass '95 (Japan) (En,Ja) + + + + Hyper Dunk (Europe) + + + + Hyper Lode Runner (World) (Rev 1) + + + + Ikari no Yousai (Japan) + + + + Ikari no Yousai 2 (Japan) + + + + In Your Face (USA) + + + + Incredible Crash Dummies, The (USA, Europe) + + + + Indiana Jones - Saigo no Seisen (Japan) + + + + Indiana Jones and the Last Crusade (USA, Europe) + + + + Indien dans la Ville, Un (France) (SGB Enhanced) + + + + InfoGenius Productivity Pak - Berlitz French Translator (USA, Europe) + + + + InfoGenius Productivity Pak - Berlitz Spanish Translator (USA, Europe) + + + + InfoGenius Productivity Pak - Frommer's Travel Guide (USA) + + + + InfoGenius Productivity Pak - Personal Organizer and Phone Book (USA) + + + + InfoGenius Productivity Pak - Spell Checker and Calculator (USA) + + + + InfoGenius Systems - Personal Organizer with Phone Book (Europe) + + + + Initial D Gaiden (Japan) (SGB Enhanced) + + + + International Superstar Soccer (USA, Europe) (SGB Enhanced) + + + + Ippatsu Gyakuten! DX Bakenou (Japan) + + + + Iron Man X-O Manowar in Heavy Metal (USA, Europe) (SGB Enhanced) + + + + Ishida Yoshio Tsumego Paradise (Japan) + + + + Ishido - The Way of Stones (Japan) + + + + Ishido - The Way of Stones (USA) + + + + Itsudemo! Nyan to Wonderful (Japan) (SGB Enhanced) + + + + J.League Big Wave Soccer (Japan) (SGB Enhanced) + + + + J.League Fighting Soccer - The King of Ace Strikers (Japan) + + + + J.League Live 95 (Japan) (SGB Enhanced) + + + + J.League Winning Goal (Japan) + + + + Jack Nicklaus Golf (France) + + + + Jack Nicklaus Golf (USA, Europe) + + + + Jaleco J.Cup Soccer (Japan) + + + + James Bond 007 (USA, Europe) (SGB Enhanced) + + + + Jankenman (Japan) + + + + Janshirou (Japan) + + + + Janshirou II - Sekai Saikyou no Janshi (Japan) + + + + Jantaku Boy (Japan) + + + + Jeep Jamboree - Off-Road Adventure (USA) + + + + Jelly Boy (Europe) + + + + Jeopardy! (USA) + + + + Jeopardy! - Platinum Edition (USA) (SGB Enhanced) + + + + Jeopardy! - Sports Edition (USA) + + + + Jeopardy! - Teen Tournament (USA) (SGB Enhanced) + + + + Jet Pack (USA, Europe) (Beta) + + + + Jetsons, The - Robot Panic (USA, Europe) + + + + Jikuu Senki Mu (Japan) + + + + Jimmy Connors no Pro Tennis Tour (Japan) + + + + Jimmy Connors Tennis (USA, Europe) + + + + Jinsei Game (Japan) (SGB Enhanced) + + + + Jinsei Game Densetsu (Japan) + + + + Joe & Mac (USA) + + + + Joe & Mac - Caveman Ninja (Europe) (En,Fr,De,Es,It,Nl,Sv) + + + + Jordan vs Bird - One on One (Japan) + + + + Jordan vs Bird - One on One (USA, Europe) + + + + Joshua & the Battle of Jericho (USA) (Unl) + + + + Judge Dredd (Japan) + + + + Judge Dredd (USA, Europe) + + + + Jungle Book, The (USA, Europe) + + + + Jungle no Ouja Tar-chan (Japan) (SGB Enhanced) + + + + Jungle Strike (USA, Europe) + + + + Jungle Wars (Japan) + + + + Jurassic Park (Europe) (En,Fr,De,Es,It) + + + + Jurassic Park (USA) + + + + Jurassic Park Part 2 - The Chaos Continues (USA, Europe) (En,Fr,De,It) + + + + Kachiuma Yosou Keiba Kizoku (Japan) + + + + Kachiuma Yosou Keiba Kizoku EX '94 (Japan) + + + + Kachiuma Yosou Keiba Kizoku EX '95 (Japan) + + + + Kaeru no Tame ni Kane wa Naru (Japan) + + + + Kaijuu Ou Gojira (Japan) + + + + Kaisen Game - Navyblue (Japan) + + + + Kaisen Game - Navyblue 90 (Japan) + + + + Kaisen Game - Radarmission (Japan) + + + + Kakomunja (Japan) + + + + Kamen Rider SD - Hashire! Mighty Riders (Japan) + + + + Kandume Monsters (Japan) (SGB Enhanced) + + + + Karakuri Kengou Den Musashi Lord (Japan) + + + + Karamuchou no Daijiken (Japan) (SGB Enhanced) + + + + Kaseki Sousei Reborn (Japan) (SGB Enhanced) + + + + Kattobi Road (Japan) + + + + Kawa no Nushi Tsuri 3 (Japan) (SGB Enhanced) + + + + Keitai Keiba Eight Special (Japan) + + + + Ken Griffey Jr. Presents Major League Baseball (USA, Europe) (SGB Enhanced) + + + + Kenyuu Densetsu Yaiba (Japan) + + + + Kick Boxing, The (Japan) + + + + Kid Dracula (USA, Europe) + + + + Kid Icarus - Of Myths and Monsters (USA, Europe) + + + + Kidou Keisatsu Patlabor - Nerawareta Machi 1990 (Japan) + + + + Kikou Keisatsu Metal Jack (Japan) + + + + Killer Instinct (USA, Europe) (SGB Enhanced) + + + + King James Bible (USA) (Unl) + + + + King of Fighters '95, The (Europe) (SGB Enhanced) + + + + King of Fighters '95, The (USA) (SGB Enhanced) + + + + King of Fighters, The - Heat of Battle (Europe) (SGB Enhanced) + + + + King of the Zoo (Europe) + + + + Kingdom Crusade (USA) + + + + Kingyo Chuuihou! - Wapiko no Wakuwaku Stamp Rally! (Japan) + + + + Kingyo Chuuihou! 2 - Gyopi-chan o Sagase! (Japan) + + + + Kinin Koumaroku Oni (Japan) + + + + Kinin Koumaroku Oni (Japan) (Rev 1) + + + + Kinnikuman - The Dream Match (Japan) + + + + Kirby no Block Ball (Japan) (SGB Enhanced) + + + + Kirby no Kirakira Kids (Japan) (SGB Enhanced) + + + + Kirby no Pinball (Japan) + + + + Kirby's Block Ball (USA, Europe) (SGB Enhanced) + + + + Kirby's Dream Land (USA, Europe) + + + + Kirby's Dream Land 2 (USA, Europe) (SGB Enhanced) + + + + Kirby's Pinball Land (USA, Europe) + + + + Kirby's Star Stacker (USA, Europe) (SGB Enhanced) + + + + Kitchen Panic (Japan) + + + + Kiteretsu Daihyakka - Bouken Ooedo Juraki (Japan) + + + + Kizuchi da Quiz da Gen-san da! (Japan) + + + + Klax (Japan) (Hudson Soft) + + + + Klax (USA) (Mindscape) + + + + Knight Quest (Japan) + + + + Knight Quest (USA) + + + + Koi wa Kakehiki (Japan) + + + + Konami GB Collection Vol.1 (Japan) (SGB Enhanced) + + + + Konami GB Collection Vol.2 (Japan) (SGB Enhanced) + + + + Konami GB Collection Vol.3 (Japan) (SGB Enhanced) + + + + Konami GB Collection Vol.4 (Japan) (SGB Enhanced) + + + + Konami Golf (Europe) + + + + Konamic Basket (Japan) + + + + Konamic Golf (Japan) + + + + Konamic Ice Hockey (Japan) + + + + Konamic Sports in Barcelona (Japan) + + + + Konchuu Hakase (Japan) (SGB Enhanced) + + + + Konchuu Hakase (Japan) (Rev 1) (SGB Enhanced) + + + + Koro Dice (Japan) + + + + Koukiatsu Boy (Japan) (SGB Enhanced) + + + + Krusty World (Japan) + + + + Krusty's Fun House (USA, Europe) + + + + Kuma no Puutarou - Takara Sagashi da Ooiri Game Battle! (Japan) (SGB Enhanced) + + + + Kung-Fu Master (USA, Europe) + + + + Kuusou Kagaku Sekai Gulliver Boy - Kuusou Kagaku Puzzle Purittopon!! (Japan) (SGB Enhanced) + + + + Kwirk - He's A-maze-ing! (USA, Europe) + + + + Kyoro-chan Land (Japan) + + + + Lamborghini American Challenge (USA, Europe) + + + + Last Action Hero (USA, Europe) + + + + Lawnmower Man, The (Europe) + + + + Lazlos' Leap (USA) + + + + Legend - Ashita e no Tsubasa (Japan) + + + + Legend of Prince Valiant, The (Europe) (En,Fr,De) + + + + Legend of the River King GB (USA) (SGB Enhanced) + + + + Legend of the River King GB (Australia) (SGB Enhanced) + + + + Legend of Zelda, The - Link's Awakening (France) + + + + Legend of Zelda, The - Link's Awakening (Germany) + + + + Legend of Zelda, The - Link's Awakening (USA, Europe) + + + + Legend of Zelda, The - Link's Awakening (USA, Europe) (Rev 1) + + + + Legend of Zelda, The - Link's Awakening (USA, Europe) (Rev 2) + + + + Legend of Zelda, The - Link's Awakening (Canada) + + + + Lemmings (Europe) + + + + Lemmings (Japan) + + + + Lemmings (USA) + + + + Lemmings (Europe) (Rev 1) + + + + Lemmings (Europe) (Beta) (1993-05-19) + + + + Lemmings 2 - The Tribes (Europe) + + + + Lethal Weapon (USA, Europe) + + + + Lingo (Europe) (En,Fr,De,Nl) + + + + Lion King, The (USA) + + + + Lion King, The (Europe) + + + + Litti's Summer Sports (Germany) + + + + Little Master - Raikuban no Densetsu (Japan) + + + + Little Master 2 - Raikou no Kishi (Japan) + + + + Little Mermaid, The (Europe) + + + + Little Mermaid, The (USA) + + + + Lock n' Chase ~ Lock 'n' Chase (World) + + + + Lolo no Daibouken (Japan) + + + + Looney Tunes (USA, Europe) + + + + Looney Tunes - Bugs Bunny to Yukai na Nakama-tachi (Japan) + + + + Looney Tunes 2 - Tasmanian Devil in Island Chase ~ Taz-Mania (USA, Europe) + + + + Looney Tunes Series - Daffy Duck (Japan) (SGB Enhanced) + + + + Loopz (World) + + + + Lost World, The - Jurassic Park (USA, Europe) (SGB Enhanced) + + + + Lucky Luke (Europe) (En,Fr,De,Es) + + + + Lucky Monkey (Japan) + + + + Lucle (Japan, Europe) + + + + Lunar Chase (USA) (Proto) + + + + Lunar Lander (Japan) + + + + Mach Go Go Go (Japan) (SGB Enhanced) + + + + Madden 95 (USA, Europe) (SGB Enhanced) + + + + Madden 96 (USA, Europe) (SGB Enhanced) + + + + Madden 97 (USA) (SGB Enhanced) + + + + Maerchen Club (Japan) + + + + Magic Knight Rayearth (Japan) (SGB Enhanced) + + + + Magic Knight Rayearth 2nd. - The Missing Colors (Japan) (SGB Enhanced) + + + + Magical Taruruuto-kun (Japan) + + + + Magical Taruruuto-kun 2 - Raibaa Zone Panic!! (Japan) + + + + Magnetic Soccer (Europe) + + + + Mahoujin GuruGuru - Yuusha to Kukuri no Daibouken (Japan) (SGB Enhanced) + + + + Makai Toushi Sa-Ga (Japan) + + + + Makai Toushi Sa-Ga (Japan) (Rev 1) + + + + Makaimura Gaiden - The Demon Darkness (Japan) + + + + Malibu Beach Volleyball (USA) + + + + Mani 4 in 1 - Bubble Bobble + Elevator Action + Chase H.Q. + Sagaia (China) + + + + Mani 4 in 1 - Genki Bakuhatsu Gambaruger + Zettai Muteki Raijin-Oh + Zoids Densetsu + Miracle Adventure of Esparks - Ushinawareta Seiseki Perivron (China) + + + + Mani 4 in 1 - R-Type II + Saigo no Nindou + Ganso!! Yancha Maru + Shisenshou - Match-Mania (China) + + + + Mani 4 in 1 - Takahashi Meijin no Bouken-jima II + GB Genjin + Bomber Boy + Milon no Meikyuu Kumikyoku (China) + + + + Mani 4 in 1 - Tetris + Alleyway + Yakuman + Tennis (China) + + + + Marble Madness (USA, Europe) + + + + Mario & Yoshi (Europe) + + + + Mario no Picross (Japan) (SGB Enhanced) + + + + Mario's Picross (USA, Europe) (SGB Enhanced) + + + + Marmalade Boy (Japan) (SGB Enhanced) + + + + Maru's Mission (USA) + + + + Masakari Densetsu - Kintarou Action Hen (Japan) + + + + Masakari Densetsu - Kintarou RPG Hen (Japan) (SGB Enhanced) + + + + Master Karateka (Japan) + + + + Matthias Sammer Soccer (Germany) (SGB Enhanced) + + + + Maui Mallard in Cold Shadow (USA) + + + + Maus, Die (Europe) (En,Fr,De,Es) + + + + Max (Europe) + + + + McDonaldland (Europe) + + + + Medarot - Kabuto Version (Japan) (SGB Enhanced) + + + + Medarot - Kabuto Version (Japan) (Rev 1) (SGB Enhanced) + + + + Medarot - Kuwagata Version (Japan) (SGB Enhanced) + + + + Medarot - Kuwagata Version (Japan) (Rev 1) (SGB Enhanced) + + + + Medarot - Parts Collection (Japan) (SGB Enhanced) + + + + Medarot - Parts Collection 2 (Japan) (SGB Enhanced) + + + + Mega Man - Dr. Wily's Revenge (Europe) + + + + Mega Man - Dr. Wily's Revenge (USA) + + + + Mega Man II (Europe) + + + + Mega Man II (USA) + + + + Mega Man III (Europe) + + + + Mega Man III (USA) + + + + Mega Man III (USA) (Sample) + + + + Mega Man IV (Europe) + + + + Mega Man IV (USA) + + + + Mega Man V (Europe) (SGB Enhanced) + + + + Mega Man V (USA) (SGB Enhanced) + + + + Megalit (Japan) + + + + Megalit (USA, Europe) + + + + Megami Tensei Gaiden - Last Bible (Japan) + + + + Megami Tensei Gaiden - Last Bible II (Japan) + + + + Meitantei Conan - Chika Yuuenchi Satsujin Jiken (Japan) (SGB Enhanced) + + + + Meitantei Conan - Giwaku no Gouka Ressha (Japan) (SGB Enhanced) + + + + Mercenary Force (USA, Europe) + + + + Metal Masters (USA) + + + + Metroid II - Return of Samus (World) + + + + Mick & Mack as the Global Gladiators (USA) (Proto) (1993-07-20) + + + + Mick & Mack as the Global Gladiators (USA) (Proto) (1993-09-27) + + + + Mick & Mack as the Global Gladiators (USA) (Proto) (1993-10-04) + + + + Mick & Mack as the Global Gladiators (USA) (Proto) (1994-01-18) + + + + Mickey Mouse (Europe) + + + + Mickey Mouse (Japan) + + + + Mickey Mouse - Magic Wands! (USA, Europe) (SGB Enhanced) + + + + Mickey Mouse II (Japan) + + + + Mickey Mouse IV - Mahou no Labyrinth (Japan) + + + + Mickey Mouse V (Japan) + + + + Mickey Mouse V (Japan) (Rev 1) + + + + Mickey's Chase (Japan) + + + + Mickey's Dangerous Chase (Europe) + + + + Mickey's Dangerous Chase (USA) + + + + Mickey's Ultimate Challenge (USA, Europe) + + + + Micro Machines (USA, Europe) + + + + Micro Machines 2 - Turbo Tournament (Europe) + + + + Midori no Makibaou (Japan) (SGB Enhanced) + + + + Mighty Morphin Power Rangers (USA, Europe) (SGB Enhanced) + + + + Mighty Morphin Power Rangers - The Movie (USA, Europe) (SGB Enhanced) + + + + Migrain (Japan) + + + + Mikeneko Holmes no Kishidou (Japan) + + + + Milon no Meikyuu Kumikyoku (Japan) + + + + Milon's Secret Castle (USA, Europe) + + + + Miner 2049er Starring Bounty Bob (USA) + + + + Minesweeper - Soukaitei (Japan) + + + + Mini 4 Boy (Japan) (SGB Enhanced) + + + + Mini 4 Boy II (Japan) (SGB Enhanced) + + + + Mini Yonku GB Let's & Go!! (Japan) (SGB Enhanced) + + + + Mini Yonku GB Let's & Go!! - All-Star Battle Max (Japan) (SGB Enhanced) + + + + Mini-Putt (Japan) + + + + Minolta Camera Test Cart 2420 (USA) + + + + Minolta Camera Test Cart 2440 (USA) + + + + Miracle Adventure of Esparks - Ushinawareta Seiseki Perivron (Japan) + + + + Missile Command (USA, Europe) + + + + Mogu Mogu Gombo - Harukanaru Chou Ryouri Densetsu (Japan) (SGB Enhanced) + + + + Mogura de Pon! (Japan) + + + + Moguranya (Japan) (SGB Enhanced) + + + + Mole Mania (USA, Europe) (SGB Enhanced) + + + + Momotarou Collection (Japan) (SGB Enhanced) + + + + Momotarou Collection 2 (Japan) (SGB Enhanced) + + + + Momotarou Dengeki (Japan) + + + + Momotarou Dengeki 2 (Japan) (SGB Enhanced) + + + + Momotarou Densetsu Gaiden (Japan) + + + + Momotarou Dentetsu jr. - Zenkoku Ramen Meguri no Maki (Japan) (SGB Enhanced) + + + + Monde Perdu, Le - Jurassic Park (France) (SGB Enhanced) + + + + Money Idol Exchanger (Japan) (SGB Enhanced) + + + + Monopoly (Europe) (En,Fr,De) + + + + Monopoly (Japan) + + + + Monopoly (USA) + + + + Monster Maker (Japan) + + + + Monster Maker - Barcode Saga (Japan) + + + + Monster Maker 2 - Uru no Hiken (Japan) + + + + Monster Max (Europe) (En,Fr,De,Es,It,Nl) + + + + Monster Race (Japan) (SGB Enhanced) + + + + Monster Race Okawari (Japan) (SGB Enhanced) + + + + Monster Truck (Japan) + + + + Monster Truck Wars (USA, Europe) + + + + Montezuma's Return! (Europe) (En,Fr,De,Es,It) + + + + Mortal Kombat (USA, Europe) + + + + Mortal Kombat & Mortal Kombat II (Japan) + + + + Mortal Kombat & Mortal Kombat II (USA, Europe) + + + + Mortal Kombat - Shinken Kourin Densetsu (Japan) + + + + Mortal Kombat 3 (Europe) + + + + Mortal Kombat 3 (USA) + + + + Mortal Kombat II (USA, Europe) + + + + Mortal Kombat II - Kyuukyoku Shinken (Japan) + + + + Motocross Maniacs (Europe) + + + + Motocross Maniacs (Japan) + + + + Motocross Maniacs (USA) + + + + Motocross Maniacs (Europe) (Rev 1) + + + + Mouse Trap Hotel (USA) + + + + Mr. Chin's Gourmet Paradise (USA) + + + + Mr. Do! (Europe) + + + + Mr. Do! (USA) + + + + Mr. Go no Baken Tekichuu Jutsu (Japan) + + + + Mr. Nutz (Europe) + + + + Ms. Pac-Man (Europe) + + + + Ms. Pac-Man (USA) + + + + Muhammad Ali Heavyweight Boxing (USA, Europe) + + + + Mulan (USA, Europe) (SGB Enhanced) + + + + MVP Baseball (Japan) + + + + Mysterium (Japan) + + + + Mysterium (USA) + + + + Mystic Quest (Europe) + + + + Mystic Quest (France) + + + + Mystic Quest (Germany) + + + + Mystical Ninja Starring Goemon (Europe) (SGB Enhanced) + + + + Mystical Ninja Starring Goemon (USA) (SGB Enhanced) + + + + Nada Asatarou & Kojima Takeo no Jissen Mahjong Kyoushitsu (Japan) (SGB Enhanced) + + + + Nada Asatarou no Powerful Mahjong - Tsugi no Itte 100 Dai (Japan) + + + + Nail 'n Scale (USA, Europe) + + + + Nakajima Satoru - F-1 Hero GB - World Championship '91 (Japan) + + + + Nakajima Satoru Kanshuu - F-1 Hero GB '92 - The Graded Driver (Japan) + + + + Namco Classic (Japan) + + + + Namco Gallery Vol.1 (Japan) (SGB Enhanced) + + + + Namco Gallery Vol.2 (Japan) (SGB Enhanced) + + + + Namco Gallery Vol.3 (Japan) (SGB Enhanced) + + + + Nangoku Shounen Papuwa-kun - Ganmadan no Yabou (Japan) + + + + Nanonote (Japan) + + + + Navy SEALs (USA, Europe) + + + + Navyblue 98 (Japan) + + + + NBA All-Star Challenge (USA, Europe) + + + + NBA All-Star Challenge 2 (Japan) + + + + NBA All-Star Challenge 2 (USA, Europe) + + + + NBA Jam (USA, Europe) + + + + NBA Jam - Tournament Edition (Japan) + + + + NBA Jam - Tournament Edition (USA, Europe) + + + + NBA Live 96 (USA, Europe) (SGB Enhanced) + + + + Nectaris GB (Japan) (SGB Enhanced) + + + + Nekketsu Kouha Kunio-kun - Bangai Rantou Hen (Japan) + + + + Nekketsu Koukou Dodgeball-bu - Kyouteki! Dodge Soldier no Maki (Japan) + + + + Nekketsu Koukou Soccer-bu - World Cup Hen (Japan) + + + + Nekketsu! Beach Volley Da yo Kunio-kun (Japan) (SGB Enhanced) + + + + Nekojara Monogatari (Japan) + + + + Nemesis (Europe) + + + + Nemesis (Japan) + + + + Nemesis (USA) + + + + Nemesis II (Japan) + + + + Nemesis II - The Return of the Hero (Europe) + + + + Nettou Garou Densetsu 2 - Aratanaru Tatakai (Japan) (SGB Enhanced) + + + + Nettou Real Bout Garou Densetsu Special (Japan) (SGB Enhanced) + + + + Nettou Samurai Spirits (Japan) (SGB Enhanced) + + + + Nettou Samurai Spirits (Japan) (Rev 1) (SGB Enhanced) + + + + Nettou Samurai Spirits - Zankurou Musouken (Japan) (SGB Enhanced) + + + + Nettou The King of Fighters '95 (Japan) (SGB Enhanced) + + + + Nettou The King of Fighters '96 (Japan) (SGB Enhanced) + + + + Nettou Toushinden (Japan) (SGB Enhanced) + + + + Nettou Toushinden (Japan) (Rev 1) (SGB Enhanced) + + + + Nettou World Heroes 2 Jet (Japan) (SGB Enhanced) + + + + Nettou World Heroes 2 Jet (Japan) (Rev 1) (SGB Enhanced) + + + + New Chessmaster, The (Japan) (En,Ja) + + + + New Chessmaster, The (USA, Europe) + + + + NFL Football (USA) + + + + NFL Quarterback Club (USA, Europe) + + + + NFL Quarterback Club '95 (Japan) + + + + NFL Quarterback Club 96 (USA, Europe) + + + + NFL Quarterback Club II (USA, Europe) + + + + NHL 96 (USA, Europe) (SGB Enhanced) + + + + NHL Hockey 95 (USA, Europe) (SGB Enhanced) + + + + Nichibutsu Mahjong - Yoshimoto Gekijou (Japan) + + + + Nigel Mansell's World Championship (Europe) + + + + Nigel Mansell's World Championship (USA) + + + + Nigel Mansell's World Championship Racing (Europe) + + + + Nihon Daihyou Team - Eikou no Eleven (Japan) (SGB Enhanced) + + + + Nihon Daihyou Team France de Ganbare! - J.League Supporter Soccer (Japan) (SGB Enhanced) + + + + Nikkan Berutomo Club (Japan) (SGB Enhanced) + + + + Ninja Boy (USA, Europe) + + + + Ninja Boy 2 (USA, Europe) + + + + Ninja Gaiden Shadow (USA) + + + + Ninja Ryuuken Den - Matenrou Kessen (Japan) + + + + Ninja Taro (USA) + + + + Ninja Taro (USA) (Beta) + + + + Ninku (Japan) (SGB Enhanced) + + + + Ninku Dai-2-dan - Ninku Sensou Hen (Japan) (SGB Enhanced) + + + + Nintama Rantarou GB (Japan) (SGB Enhanced) + + + + Nintama Rantarou GB - Eawase Challenge Puzzle (Japan) (SGB Enhanced) + + + + Nintendo World Cup (USA, Europe) + + + + NIV Bible & the 20 Lost Levels of Joshua (USA) (Unl) + + + + Nobunaga no Yabou - Game Boy Ban (Japan) + + + + Nobunaga's Ambition (USA) + + + + Nontan to Issho - Kurukuru Puzzle (Japan) + + + + Noobow (Japan) + + + + Oddworld Adventures (USA, Europe) + + + + Oira Jajamaru! Sekai Daibouken (Japan) + + + + Olympic Summer Games (USA, Europe) (SGB Enhanced) + + + + Olympic Winter Games - Lillehammer '94 (USA) + + + + Oni II - Oni Densetsu (Japan) + + + + Oni III - Kuro no Hakaishin (Japan) + + + + Oni IV (Japan) (Beta) + + + + Oni IV - Kijin no Ketsuzoku (Japan) + + + + Oni V - Oni wo Tsugumono (Japan) (SGB Enhanced) + + + + Onigashima Pachinkoten (Japan) + + + + Operation C (USA) + + + + Osawagase! Penguin Boy (Japan) + + + + Othello (Europe) + + + + Othello (Japan) + + + + Othello World (Japan) (SGB Enhanced) + + + + Otogibanashi Taisen (Japan) (SGB Enhanced) + + + + Otto's Ottifanten - Baby Bruno's Alptraum (Europe) (En,Fr,De,Es) + + + + Out of Gas (USA) + + + + Outburst (Japan) + + + + Oyatsu Quiz Mogu Mogu Q (Japan) (SGB Enhanced) + + + + P-Man GB (Japan) + + + + Pac-Attack (USA) (SGB Enhanced) + + + + Pac-In-Time (USA) (SGB Enhanced) + + + + Pac-In-Time (Japan) (SGB Enhanced) + + + + Pac-In-Time (Europe) (SGB Enhanced) + + + + Pac-Man (Europe) + + + + Pac-Man (Japan) + + + + Pac-Man (USA) + + + + Pac-Panic (Europe) (SGB Enhanced) + + + + Pac-Panic (Japan) (SGB Enhanced) + + + + Pachi-Slot Hisshou Guide GB (Japan) (SGB Enhanced) + + + + Pachi-Slot Kids (Japan) + + + + Pachi-Slot Kids 2 (Japan) + + + + Pachi-Slot Kids 3 (Japan) + + + + Pachi-Slot World Cup '94 (Japan) + + + + Pachinko CR Daiku no Gen-san GB (Japan) (SGB Enhanced) + + + + Pachinko Data Card - Chou Ataru-kun (Japan) (SGB Enhanced) + + + + Pachinko Kaguya Hime (Japan) + + + + Pachinko Monogatari Gaiden (Japan) (SGB Enhanced) + + + + Pachinko Saiyuuki (Japan) + + + + Pachinko Time (Japan) + + + + Pachio-kun (Japan) + + + + Pachio-kun - Puzzle Castle (Japan) + + + + Pachio-kun 2 (Japan) + + + + Pachio-kun 3 (Japan) + + + + Pachio-kun Game Gallery (Japan) + + + + Pagemaster, The (Europe) (SGB Enhanced) + + + + Pagemaster, The (USA) (SGB Enhanced) + + + + Painter Momopie (Japan) + + + + Palamedes (Europe) + + + + Palamedes (Japan) + + + + Panel Action Bingo (USA) + + + + Panel no Ninja Kesamaru (Japan) + + + + Pang (Europe) + + + + Paperboy (USA, Europe) + + + + Paperboy 2 (USA, Europe) + + + + Parasol Henbee (Japan) + + + + Parasol Stars - Rainbow Islands II (Europe) + + + + Parodius (Europe) + + + + Parodius Da! (Japan) + + + + Peetan (Japan) + + + + Peke to Poko no Daruman Busters (Japan) + + + + Penguin Land (Japan) + + + + Penguin Wars (USA) + + + + Penguin-kun Wars VS. (Japan) + + + + Penta Dragon (Japan) + + + + PGA European Tour (USA, Europe) (SGB Enhanced) + + + + PGA Tour 96 (USA, Europe) (SGB Enhanced) + + + + Phantasm (Japan) + + + + Phantom Air Mission (Europe) + + + + Picross 2 (Japan) (SGB Enhanced) + + + + Pierre le Chef is... Out to Lunch (Europe) + + + + Pinball - 66hiki no Wani Daikoushin! (Japan) + + + + Pinball - Revenge of the 'Gator (USA, Europe) + + + + Pinball Deluxe (Europe) + + + + Pinball Dreams (USA, Europe) + + + + Pinball Fantasies (USA, Europe) + + + + Pinball Mania (Europe) + + + + Pingu - Sekai de 1ban Genki na Penguin (Japan) + + + + Pinocchio (Europe) + + + + Pinocchio (USA) + + + + Pipe Dream (Japan) + + + + Pipe Dream (USA) + + + + Pit-Fighter (USA, Europe) + + + + Pitman (Japan) + + + + Play Action Football (USA) + + + + Pocahontas (USA, Europe) (SGB Enhanced) + + + + Pocket Bass Fishing (Japan) + + + + Pocket Battle (Japan) + + + + Pocket Bomber Man (Japan) (SGB Enhanced) + + + + Pocket Bomberman (Europe) (SGB Enhanced) + + + + Pocket Camera (Japan) (Rev 1) (SGB Enhanced) + + + + Pocket Densha (Japan) (SGB Enhanced) + + + + Pocket Family GB (Japan) (SGB Enhanced) + + + + Pocket Golf (Japan) + + + + Pocket Kanjirou (Japan) (SGB Enhanced) + + + + Pocket Kyoro-chan (Japan) (SGB Enhanced) + + + + Pocket Love (Japan) (SGB Enhanced) + + + + Pocket Love 2 (Japan) (SGB Enhanced) + + + + Pocket Mahjong (Japan) + + + + Pocket Monsters - Aka (Japan) (SGB Enhanced) + + + + Pocket Monsters - Aka (Japan) (Rev 1) (SGB Enhanced) + + + + Pocket Monsters - Ao (Japan) (SGB Enhanced) + + + + Pocket Monsters - Midori (Japan) (SGB Enhanced) + + + + Pocket Monsters - Midori (Japan) (Rev 1) (SGB Enhanced) + + + + Pocket Monsters - Pikachu (Japan) (SGB Enhanced) + + + + Pocket Monsters - Pikachu (Japan) (Rev 1) (SGB Enhanced) + + + + Pocket Monsters - Pikachu (Japan) (Rev 2) (SGB Enhanced) + + + + Pocket Monsters - Pikachu (Japan) (Rev 3) (SGB Enhanced) + + + + Pocket Monsters Gin (Japan) (Demo) (Spaceworld 1997) (SGB Enhanced) + + + + Pocket Monsters Gin (Japan) (Demo) (Spaceworld 1997) (SGB Enhanced) (Debug) + + + + Pocket Monsters Kin (Japan) (Demo) (Spaceworld 1997) (SGB Enhanced) + + + + Pocket Monsters Kin (Japan) (Demo) (Spaceworld 1997) (SGB Enhanced) (Debug) + + + + Pocket Puyo Puyo Tsuu (Japan) (SGB Enhanced) + + + + Pocket Puyo Puyo Tsuu (Japan) (Rev 1) (SGB Enhanced) (NP) + + + + Pocket Shougi (Japan) (SGB Enhanced) + + + + Pocket Sonar (Japan) + + + + Pocket Stadium (Japan) + + + + Pokemon - Blaue Edition (Germany) (SGB Enhanced) + + + + Pokemon - Blue Version (USA, Europe) (SGB Enhanced) + + + + Pokemon - Edicion Amarilla - Edicion Especial Pikachu (Spain) (CGB+SGB Enhanced) + + + + Pokemon - Edicion Azul (Spain) (SGB Enhanced) + + + + Pokemon - Edicion Roja (Spain) (SGB Enhanced) + + + + Pokemon - Gelbe Edition - Special Pikachu Edition (Germany) (CGB+SGB Enhanced) + + + + Pokemon - Red Version (USA, Europe) (SGB Enhanced) + + + + Pokemon - Rote Edition (Germany) (SGB Enhanced) + + + + Pokemon - Version Bleue (France) (SGB Enhanced) + + + + Pokemon - Version Jaune - Edition Speciale Pikachu (France) (CGB+SGB Enhanced) + + + + Pokemon - Version Rouge (France) (SGB Enhanced) + + + + Pokemon - Versione Blu (Italy) (SGB Enhanced) + + + + Pokemon - Versione Gialla - Speciale Edizione Pikachu (Italy) (CGB+SGB Enhanced) + + + + Pokemon - Versione Rossa (Italy) (SGB Enhanced) + + + + Pokemon - Yellow Version - Special Pikachu Edition (USA, Europe) (CGB+SGB Enhanced) + + + + Pokonyan! - Yume no Daibouken (Japan) (SGB Enhanced) + + + + Ponta to Hinako no Chindouchuu - Yuujou Hen (Japan) + + + + Pop Up (Europe) + + + + Pop'n TwinBee (Europe) + + + + Popeye (Japan) + + + + Popeye 2 (Europe) + + + + Popeye 2 (Japan) + + + + Popeye 2 (USA) + + + + Popeye 2 (Japan) (Rev 1) + + + + Populous (Europe) + + + + Populous Gaiden (Japan) + + + + Power Mission (Japan) + + + + Power Mission (Japan) (Rev 1) + + + + Power Mission (USA) + + + + Power Pro GB (Japan) (SGB Enhanced) + + + + Power Pro GB (Japan) (Rev 1) (SGB Enhanced) + + + + Power Racer (Europe) + + + + Power Racer (USA) + + + + Prehistorik Man (USA, Europe) + + + + Pri Pri - Primitive Princess! (Japan) + + + + Primal Rage (USA, Europe) + + + + Primal Rage (USA, Europe) (Beta) + + + + Prince of Persia (Europe) (En,Fr,De,Es,It) + + + + Prince of Persia (Japan) + + + + Prince of Persia (USA) + + + + Prince of Persia (Europe) (En,Fr,De,Es,It) (Beta) + + + + Pro Action Replay (Europe) (Unl) + + + + Pro Mahjong Kiwame GB (Japan) (SGB Enhanced) + + + + Pro Soccer (Japan) + + + + Pro Wrestling (Japan) + + + + Probotector (Europe) + + + + Probotector 2 (Europe) (SGB Enhanced) + + + + Probotector 2 (Europe) (Beta) + + + + Prophecy - The Viking Child (Europe) (En,Fr,De,Es,It) + + + + Prophecy - The Viking Child (USA) + + + + Punisher, The - The Ultimate Payback (USA) + + + + Purikura Pocket - Fukanzen Joshikousei Manual (Japan) (SGB Enhanced) + + + + Purikura Pocket - Fukanzen Joshikousei Manual (Japan) (Rev 1) (NP) + + + + Purikura Pocket 2 - Kareshi Kaizou Daisakusen (Japan) (SGB Enhanced) + + + + Purikura Pocket 3 - Talent Debut Daisakusen (Japan) (SGB Enhanced) + + + + Puyo Puyo (Japan) (SGB Enhanced) + + + + Puyo Puyo (Japan) (Rev 1) (SGB Enhanced) + + + + Puzzle Bobble GB (Japan) + + + + Puzzle Boy (Japan) + + + + Puzzle Boy II (Japan) + + + + Puzzle Nintama Rantarou GB (Japan) (SGB Enhanced) + + + + Puzznic (Japan) + + + + Pyramids of Ra (USA) + + + + Q Billion (Japan) + + + + Q Billion (USA) + + + + Q-bert for Game Boy (Japan) + + + + Q-bert for Game Boy (USA, Europe) + + + + QIX (World) + + + + Quarth (Japan) + + + + Quarth (USA, Europe) + + + + Quiz Nihon Mukashibanashi - Athena no Hatena (Japan) + + + + Quiz Sekai wa Show by Shoubai!! (Japan) + + + + R-Type (Japan) + + + + R-Type (USA, Europe) + + + + R-Type II (Europe) + + + + R-Type II (Japan) + + + + R-Type II (Europe) (Beta) + + + + Race Days (USA) + + + + Race Days (Europe) + + + + Race Drivin' (USA, Europe) + + + + Racing Damashii (Japan) + + + + Radar Mission (USA, Europe) + + + + Raging Fighter (USA, Europe) + + + + Rampart (Japan) + + + + Rampart (USA, Europe) + + + + Ranma 1-2 (Japan) + + + + Ranma 1-2 - Kakugeki Mondou!! (Japan) + + + + Ranma 1-2 - Netsuretsu Kakutou Hen (Japan) + + + + Ray-Thunder (Japan) + + + + Real Ghostbusters, The (USA) + + + + Red Arremer - Makaimura Gaiden (Japan) + + + + Red October o Oe! (Japan) + + + + Ren & Stimpy Show, The - Space Cadet Adventures (USA) + + + + Ren & Stimpy Show, The - Veediots! (USA, Europe) + + + + Renju Club - Gomoku Narabe (Japan) (SGB Enhanced) + + + + Rentaiou (Japan) + + + + Reservoir Rat (Europe) (En,Fr,De,Es,It) + + + + Riddick Bowe Boxing (Europe) + + + + Riddick Bowe Boxing (USA) + + + + Ring Rage (Japan) + + + + Ring Rage (USA) + + + + Road Rash (USA, Europe) + + + + Road Rash (USA, Europe) (Beta) + + + + Roadster (Japan) + + + + Robin Hood - Prince of Thieves (Europe) + + + + Robin Hood - Prince of Thieves (France) + + + + Robin Hood - Prince of Thieves (Germany) + + + + Robin Hood - Prince of Thieves (Spain) + + + + Robin Hood - Prince of Thieves (USA) + + + + RoboCop (Japan) + + + + RoboCop (USA) + + + + RoboCop (USA, Europe) (Rev 1) + + + + RoboCop 2 (Japan) + + + + RoboCop 2 (USA, Europe) + + + + RoboCop versus The Terminator (Europe) + + + + RoboCop versus The Terminator (USA) + + + + Rock'n! Monster!! (Japan) (SGB Enhanced) + + + + Rockman World (Japan) + + + + Rockman World (Japan) (En) (Beta) + + + + Rockman World 2 (Japan) + + + + Rockman World 3 (Japan) + + + + Rockman World 4 (Japan) + + + + Rockman World 5 (Japan) (SGB Enhanced) + + + + Rodland (Europe) + + + + Roger Clemens' MVP Baseball (USA) + + + + Roger Clemens' MVP Baseball (USA) (Rev 1) + + + + Rolan's Curse (USA) + + + + Rolan's Curse II (USA) + + + + Rubble Saver (Japan) + + + + Rubble Saver II (Japan) + + + + Rugrats Movie, The (USA) (SGB Enhanced) + + + + Sa-Ga 2 - Hihou Densetsu (Japan) + + + + Sa-Ga 2 - Hihou Densetsu (Japan) (Rev 1) + + + + Sa-Ga 3 - Jikuu no Hasha (Japan) + + + + Sagaia (Japan) + + + + Saigo no Nindou (Japan) + + + + Saint Paradise - Saikyou no Senshi-tachi (Japan) + + + + Sakigake!! Otoko Juku - Meioutou Kessen (Japan) + + + + Same Game (Japan) (SGB Enhanced) + + + + Samurai Shodown (USA, Europe) (SGB Enhanced) + + + + Samurai Shodown (USA, Europe) (Beta) (SGB Enhanced) + + + + Sangokushi - Game Boy Ban (Japan) + + + + Sanrio Carnival (Japan) + + + + Sanrio Carnival 2 (Japan) + + + + Sanrio Uranai Party (Japan) + + + + Sanrio Uranai Party (Japan) (Rev 1) + + + + Schiffe Versenken (Germany) (En,Fr,De,Es) + + + + Scotland Yard (Japan) + + + + SD Gundam - SD Sengokuden - Kunitori Monogatari (Japan) + + + + SD Gundam Gaiden - Lacroan' Heroes (Japan) + + + + SD Hiryuu no Ken Gaiden (Japan) (SGB Enhanced) + + + + SD Hiryuu no Ken Gaiden 2 (Japan) (SGB Enhanced) + + + + SD Lupin Sansei - Kinko Yaburi Daisakusen (Japan) + + + + SD Sengokuden 2 - Tenka Touitsu Hen (Japan) + + + + SD Sengokuden 3 - Chijou Saikyou Hen (Japan) + + + + Sea Battle (Europe) (En,Fr,De,Es) + + + + seaQuest DSV (USA, Europe) (SGB Enhanced) + + + + Seaside Volley (Japan) + + + + Seiken Densetsu - Final Fantasy Gaiden (Japan) + + + + Selection - Erabareshi Mono (Japan) + + + + Selection I & II - Erabareshi Mono & Ankoku no Fuuin (Japan) (SGB Enhanced) + + + + Selection II - Ankoku no Fuuin (Japan) + + + + Sengoku Ninja-kun (Japan) + + + + Sensible Soccer - European Champions (Europe) + + + + Serpent (USA) + + + + Shadow Warriors (Europe) + + + + Shanghai (Japan) (HAL Laboratory) + + + + Shanghai (Japan) (Activision) + + + + Shanghai (USA) + + + + Shanghai Pocket (Japan) (SGB Enhanced) + + + + Shaq Fu (USA) (SGB Enhanced) + + + + Shikinjou (Japan) + + + + Shin Keiba Kizoku Pocket Jockey (Japan) (SGB Enhanced) + + + + Shin Nihon Pro Wrestling - Toukon Sanjuushi (Japan) + + + + Shin Nihon Pro Wrestling - Toukon Sanjuushi (Japan) (Sample) + + + + Shin SD Gundam Gaiden - Knight Gundam Monogatari (Japan) (SGB Enhanced) + + + + Shinri Game 2, The - Oosaka Hen (Japan) + + + + Shinri Game, The (Japan) + + + + Shinseiki GPX Cyber Formula (Japan) + + + + Shippo de Bun (Japan) + + + + Shippuu! Iron Leaguer (Japan) + + + + Shisenshou - Match-Mania (Japan) + + + + Shougi (Japan) + + + + Shougi Saikyou (Japan) (SGB Enhanced) + + + + Shougi Saikyou (Japan) (Rev 1) (SGB Enhanced) + + + + Shounen Ashibe - Yuuenchi Panic (Japan) + + + + Shuyaku Sentai Irem Fighter (Japan) + + + + Side Pocket (World) + + + + Simpsons Itchy & Scratchy, The - Miniature Golf Madness (USA, Europe) + + + + Simpsons, The - Bart & the Beanstalk (USA, Europe) + + + + Simpsons, The - Bart no Jack to Mame no Ki (Japan) + + + + Simpsons, The - Bart vs. the Juggernauts (USA, Europe) + + + + Skate or Die - Bad 'N Rad (Europe) + + + + Skate or Die - Bad 'N Rad (USA) + + + + Skate or Die - Tour de Thrash (USA) + + + + Small Soldiers (USA, Europe) (SGB Enhanced) + + + + SMARTCOM (Europe) (Unl) + + + + Smurfs Nightmare, The (Europe) (En,Fr,De,Es) + + + + Smurfs Travel the World, The (Europe) (En,Fr,De,Es) + + + + Smurfs, The (Europe) (En,Fr,De,Es) + + + + Smurfs, The (USA, Europe) (En,Fr,De) (Rev 1) (SGB Enhanced) + + + + Sneaky Snakes (USA, Europe) + + + + Snoopy - Magic Show (Japan) + + + + Snoopy no Hajimete no Otsukai (Japan) (SGB Enhanced) + + + + Snoopy's Magic Show (USA, Europe) + + + + Snow Bros. Jr. (Japan) + + + + Snow Brothers (Europe) + + + + Snow Brothers (USA) + + + + Soccer (Europe, Australia) (En,Fr,De) (SGB Enhanced) + + + + Soccer (Japan) + + + + Soccer Boy (Japan) + + + + Soccer Mania (USA) + + + + SolarStriker (World) + + + + Soldam (Japan) + + + + Solitaire (Japan) + + + + Solitaire FunPak (USA, Europe) + + + + Solomon's Club (Europe) + + + + Solomon's Club (Japan) + + + + Solomon's Club (USA) + + + + Soreyuke! Speedy Gonzales (Japan) + + + + Soreyuke!! Kid (Japan) + + + + Soukoban (Japan) + + + + Soukoban 2 (Japan) + + + + Space Invaders (Europe) (SGB Enhanced) + + + + Space Invaders (Japan) + + + + Space Invaders (USA) (SGB Enhanced) + + + + Spanky's Quest (Europe) + + + + Spanky's Quest (USA) + + + + Spartan X (Japan) + + + + Speedball 2 - Brutal Deluxe (USA, Europe) + + + + Speedy Gonzales (USA, Europe) + + + + Spider-Man - X-Men - Arcade's Revenge (USA, Europe) + + + + Spider-Man 2 (USA, Europe) + + + + Spider-Man 3 - Invasion of the Spider-Slayers (USA, Europe) + + + + Spirit of F-1, The (Europe) + + + + Spiritual Warfare (USA) (Unl) + + + + Spirou (Europe) (En,Fr,De,Es) (SGB Enhanced) + + + + Spirou (Europe) (En,Fr,De,Es) (Beta) (SGB Enhanced) + + + + Splitz (Europe) + + + + Splitz - Nigaoe 15 Game (Japan) + + + + Sports Collection (Japan) + + + + Sports Illustrated - Championship Football & Baseball (USA) + + + + Sports Illustrated - Golf Classic (USA) (SGB Enhanced) + + + + Sports Illustrated for Kids - The Ultimate Triple Dare! (USA) + + + + Spot (Japan) + + + + Spot - Cool Adventure (Japan) + + + + Spot - The Cool Adventure (USA) + + + + Spot - The Video Game (Europe) + + + + Spot - The Video Game (USA) + + + + Spud's Adventure (USA) + + + + Spy vs Spy - Operation Boobytrap (Europe) + + + + Spy vs Spy - Operation Boobytrap (USA) + + + + Square Deal - The Game of Two-Dimensional Poker (USA) + + + + Star Sweep (Japan) (SGB Enhanced) + + + + Star Trek - 25th Anniversary (USA, Europe) + + + + Star Trek - The Next Generation (Germany) + + + + Star Trek - The Next Generation (Spain) + + + + Star Trek - The Next Generation (USA, Europe) + + + + Star Trek Generations - Beyond the Nexus (Europe) (SGB Enhanced) + + + + Star Trek Generations - Beyond the Nexus (USA) (SGB Enhanced) + + + + Star Wars (Europe) + + + + Star Wars (USA) + + + + Star Wars (USA, Europe) (Rev 1) + + + + Star Wars - The Empire Strikes Back (USA, Europe) + + + + Star Wars - The Empire Strikes Back (USA) + + + + Stargate (USA, Europe) + + + + StarHawk (Europe) + + + + Stop That Roach! (USA) + + + + Street Fighter II (Japan) (SGB Enhanced) + + + + Street Fighter II (USA, Europe) (Rev 1) (SGB Enhanced) + + + + Street Fighter II (USA) (SGB Enhanced) + + + + Street Racer (Japan) + + + + Street Racer (USA, Europe) + + + + Sumo Fighter (USA) + + + + Sumou Fighter - Toukaidou Basho (Japan) + + + + Sunsoft Grand Prix (Europe) + + + + Super B-Daman - Fighting Phoenix (Japan) (SGB Enhanced) + + + + Super Battletank (Europe) + + + + Super Battletank (USA) + + + + Super Bikkuriman - Densetsu no Sekiban (Japan) + + + + Super Black Bass (USA) + + + + Super Black Bass Pocket (Japan) (SGB Enhanced) + + + + Super Black Bass Pocket 2 (Japan) (SGB Enhanced) + + + + Super Bombliss (Japan) (SGB Enhanced) + + + + Super Breakout (USA) + + + + Super Chase H.Q. (USA, Europe) + + + + Super Chinese Fighter GB (Japan) (SGB Enhanced) + + + + Super Chinese Land (Japan) + + + + Super Chinese Land 1-2-3' (Japan) (SGB Enhanced) + + + + Super Chinese Land 2 (Japan) + + + + Super Chinese Land 3 (Japan) (SGB Enhanced) + + + + Super Donkey Kong GB (Japan) (SGB Enhanced) + + + + Super Hunchback (Europe) + + + + Super Hunchback (Japan) + + + + Super Hunchback (USA) + + + + Super James Pond (Europe) + + + + Super Kick Off (Europe) (En,Fr,De,It,Nl) + + + + Super Mario Land (World) + + + + Super Mario Land (World) (Rev 1) + + + + Super Mario Land 2 - 6 Golden Coins (USA, Europe) + + + + Super Mario Land 2 - 6 Golden Coins (USA, Europe) (Rev 1) + + + + Super Mario Land 2 - 6 Golden Coins (USA, Europe) (Rev 2) + + + + Super Mario Land 2 - 6-tsu no Kinka (Japan) + + + + Super Mario Land 2 - 6-tsu no Kinka (Japan) (Rev 2) + + + + Super Mario Land 2 - 6-tsu no Kinka (Japan) (Rev 1) + + + + Super Momotarou Dentetsu (Japan) + + + + Super Momotarou Dentetsu II (Japan) + + + + Super Off Road (USA, Europe) + + + + Super Off Road (USA, Europe) (Beta) + + + + Super Pachinko Taisen (Japan) (SGB Enhanced) + + + + Super R.C. Pro-Am (USA, Europe) + + + + Super Robot Taisen (Japan) + + + + Super Scrabble (USA) + + + + Super Snakey (Japan) (SGB Enhanced) + + + + Super Star Wars - Return of the Jedi (USA, Europe) (SGB Enhanced) + + + + Super Street Basketball (Japan) + + + + Super Street Basketball 2 (Japan) (SGB Enhanced) + + + + Superman (USA, Europe) (SGB Enhanced) + + + + Suzuki Aguri no F-1 Super Driving (Japan) + + + + Swamp Thing (USA, Europe) + + + + Sword of Hope II, The (USA) + + + + Sword of Hope, The (Germany) + + + + Sword of Hope, The (Spain) + + + + Sword of Hope, The (Sweden) + + + + Sword of Hope, The (USA) + + + + T2 - The Arcade Game (Japan) + + + + T2 - The Arcade Game (USA, Europe) + + + + Taikyoku Renju (Japan) (En,Ja) + + + + Tail 'Gator (USA, Europe) + + + + Taito Chase H.Q. (Japan) + + + + Taito Variety Pack (Japan) + + + + Taiyou no Tenshi Marlowe - Ohanabatake wa Dai-panic (Japan) + + + + Taiyou no Yuusha - Fighbird GB (Japan) + + + + Takahashi Meijin no Bouken-jima II (Japan) + + + + Takahashi Meijin no Bouken-jima III (Japan) + + + + Takeda Nobuhiro no Ace Striker (Japan) + + + + TaleSpin (Europe) + + + + TaleSpin (USA) + + + + Tamagotchi (France) (SGB Enhanced) + + + + Tamagotchi (USA, Europe) (SGB Enhanced) + + + + Tarzan - Lord of the Jungle (USA, Europe) + + + + Tasmania Monogatari (Japan) + + + + Tasmania Story (USA) + + + + Taz-Mania (Europe) + + + + Taz-Mania 2 (USA) + + + + Tecmo Bowl (USA) + + + + Tecmo Bowl GB (Japan) + + + + Teenage Mutant Hero Turtles - Fall of the Foot Clan (Europe) + + + + Teenage Mutant Hero Turtles II - Back from the Sewers (Europe) + + + + Teenage Mutant Hero Turtles III - Radical Rescue (Europe) + + + + Teenage Mutant Ninja Turtles (Japan) + + + + Teenage Mutant Ninja Turtles - Fall of the Foot Clan (USA) + + + + Teenage Mutant Ninja Turtles 2 (Japan) + + + + Teenage Mutant Ninja Turtles 3 - Turtles Kikiippatsu (Japan) + + + + Teenage Mutant Ninja Turtles II - Back from the Sewers (USA) + + + + Teenage Mutant Ninja Turtles III - Radical Rescue (USA) + + + + Teke Teke! Asmik-kun World (Japan) + + + + Tekichuu Rush (Japan) + + + + Tekkyu Fight! - The Great Battle Gaiden (Japan) + + + + Tenchi o Kurau (Japan) + + + + Tenjin Kaisen (Japan) + + + + Tennis (World) + + + + Terminator 2 - Judgment Day (USA, Europe) + + + + Tesserae (Europe) (En,Fr,De,Es,It) + + + + Tesserae (USA) + + + + Tetris (Japan) (En) + + + + Tetris (World) (Rev 1) + + + + Tetris 2 (USA, Europe) (SGB Enhanced) + + + + Tetris 2 (USA) + + + + Tetris 2 (USA, Europe) (Rev 1) (SGB Enhanced) + + + + Tetris Attack (USA) (SGB Enhanced) + + + + Tetris Attack (USA, Europe) (Rev 1) (SGB Enhanced) + + + + Tetris Blast (USA, Europe) (SGB Enhanced) + + + + Tetris Flash (Japan) (SGB Enhanced) + + + + Tetris Plus (Japan) (SGB Enhanced) + + + + Tetris Plus (USA, Europe) (SGB Enhanced) + + + + Tintin - Prisoners of the Sun (Europe) (En,Fr,De) + + + + Tintin in Tibet (Europe) (En,Fr,De,Nl) (SGB Enhanced) + + + + Tintin in Tibet (Europe) (En,Es,It,Sv) (SGB Enhanced) + + + + Tiny Toon Adventures (Japan) + + + + Tiny Toon Adventures - Babs' Big Break (USA, Europe) + + + + Tiny Toon Adventures - Wacky Sports (Europe) + + + + Tiny Toon Adventures - Wacky Sports (USA) + + + + Tiny Toon Adventures 2 - Buster Bunny no Kattobi Daibouken (Japan) + + + + Tiny Toon Adventures 2 - Montana's Movie Madness (USA, Europe) + + + + Tiny Toon Adventures 3 - Dokidoki Sport Festival (Japan) + + + + Tip Off (Europe) + + + + Titus the Fox (USA, Europe) + + + + Tokio Senki - Eiyuu Retsuden (Japan) + + + + Tokoro's Mahjong Jr. (Japan) (SGB Enhanced) + + + + Tokyo Disneyland - Fantasy Tour (Japan) (SGB Enhanced) + + + + Tokyo Disneyland - Mickey no Cinderella-jou Mystery Tour (Japan) (SGB Enhanced) + + + + Tom & Jerry (USA, Europe) + + + + Tom and Jerry - Frantic Antics! (USA, Europe) + + + + Tom to Jerry (Japan) + + + + Tom to Jerry Part 2 (Japan) + + + + Top Gun - Guts & Glory (USA, Europe) + + + + Top Rank Tennis (USA) + + + + Top Ranking Tennis (Europe) + + + + Torpedo Range (Japan) + + + + Torpedo Range (USA) + + + + Total Carnage (USA, Europe) + + + + Totsugeki Valations (Japan) + + + + Totsugeki! Ponkotsu Tank (Japan) + + + + Tottemo! Lucky Man - Lucky Cookie Minna Daisuki!! (Japan) (SGB Enhanced) + + + + Toxic Crusaders (USA) + + + + Toy Story (Europe) (SGB Enhanced) + + + + Toy Story (USA) (SGB Enhanced) + + + + Toy Story (USA) (Rev 1) (SGB Enhanced) + + + + Track & Field (USA, Europe) + + + + Track Meet (USA, Europe) + + + + Track Meet - Mezase! Barcelona (Japan) + + + + Trappers Tengoku - Spy vs Spy (Japan) + + + + Trax (USA, Europe) + + + + Trip World (Europe) + + + + Trip World (Japan) + + + + Triumph (USA) (Proto) + + + + True Lies (USA, Europe) + + + + Trump Boy (Japan) + + + + Trump Boy II (Japan) + + + + Trump Collection GB (Japan) + + + + Tsumego Series 1 - Fujisawa Hideyuki Meiyo Kisei (Japan) (SGB Enhanced) + + + + Tsumeshougi - Hyakuban Shoubu (Japan) + + + + Tsumeshougi - Kanki Godan (Japan) (SGB Enhanced) + + + + Tsumeshougi - Kanki Godan (Japan) (Beta) (SGB Enhanced) + + + + Tsumeshougi - Mondai Teikyou Shougi Sekai (Japan) + + + + Tsuri Sensei (Japan) (SGB Enhanced) + + + + Tumble Pop (Japan) + + + + Tumble Pop (USA, Europe) + + + + Turn and Burn - The F-14 Dogfight Simulator (USA) + + + + Turok - Battle of the Bionosaurs (Japan) + + + + Turok - Battle of the Bionosaurs (USA, Europe) (En,Fr,De,Es) + + + + Turrican (USA, Europe) + + + + TV Champion (Japan) (SGB Enhanced) + + + + Twin (Japan) + + + + TwinBee da!! (Japan) + + + + Uchiiwai - Kyoudaijingi no Puzzle Game (Japan) + + + + Uchuu no Kishi Tekkaman Blade (Japan) + + + + Uchuu Senkan Yamato (Japan) + + + + Ultima - Runes of Virtue (USA) + + + + Ultima - Runes of Virtue II (USA) + + + + Ultima - Ushinawareta Runes (Japan) + + + + Ultima - Ushinawareta Runes 2 (Japan) + + + + Ultra Golf (USA) + + + + Ultraman (Japan) + + + + Ultraman Ball (Japan) (SGB Enhanced) + + + + Ultraman Chou Toushi Gekiden (Japan) (SGB Enhanced) + + + + Ultraman Club - Tekikaijuu o Hakken seyo! (Japan) + + + + Umi no Nushi Tsuri 2 (Japan) (SGB Enhanced) + + + + Undercover Cops Gaiden - Hakaishin Garumaa (Japan) + + + + Universal Soldier (USA, Europe) + + + + Uno - Small World (Japan) + + + + Uno 2 - Small World (Japan) (SGB Enhanced) + + + + Uoozu (Japan) + + + + Urban Strike (USA, Europe) (SGB Enhanced) + + + + Urusei Yatsura - Miss Tomobiki o Sagase! (Japan) + + + + V-Rally - Championship Edition (Europe) (En,Fr,De) + + + + Vattle Giuce (Japan) + + + + Vegas Stakes (USA, Europe) (SGB Enhanced) + + + + Velious - Roland no Majuu (Japan) + + + + Velious II - Fukushuu no Jashin (Japan) + + + + Versus Hero - Kakutou Ou e no Michi (Japan) + + + + Virtual Wars (Japan) + + + + Vitamina Oukoku Monogatari (Japan) + + + + Volley Fire (Japan) + + + + VS Battler (Japan) + + + + Wario Blast featuring Bomberman! (USA, Europe) (SGB Enhanced) + + + + Wario Land - Super Mario Land 3 (World) + + + + Wario Land II (USA, Europe) (SGB Enhanced) + + + + Waterworld (Europe) + + + + Wave Race (USA, Europe) + + + + Wayne's World (USA) + + + + WCW - The Main Event (USA, Europe) + + + + We're Back! - A Dinosaur's Story (USA, Europe) + + + + Wedding Peach - Jamapii Panic (Japan) (SGB Enhanced) + + + + Welcome Nakayoshi Park (Japan) + + + + Wheel of Fortune (USA) + + + + Who Framed Roger Rabbit (Europe) + + + + Who Framed Roger Rabbit (USA) + + + + Who Framed Roger Rabbit (Spain) + + + + Wild Snake (USA) (SGB Enhanced) + + + + Winner's Horse (Japan) + + + + Winter Gold (Europe) + + + + Wizardry Gaiden I - Joou no Junan (Japan) + + + + Wizardry Gaiden II - Kodai Koutei no Noroi (Japan) + + + + Wizardry Gaiden III - Yami no Seiten (Japan) + + + + Wizards & Warriors X - The Fortress of Fear (USA, Europe) + + + + Wordtris (USA) + + + + Wordtris (USA) (Beta) + + + + WordZap (USA) + + + + World Beach Volley - 1991 GB Cup (Japan) + + + + World Beach Volley - 1992 GB Cup (Europe) + + + + World Bowling (Japan) + + + + World Bowling (USA) + + + + World Circuit Series (USA) + + + + World Cup 98 (USA, Europe) (SGB Enhanced) + + + + World Cup Striker (Japan) + + + + World Cup USA 94 (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv) + + + + World Cup USA 94 (Japan) (En,Fr,De,Es,It,Nl,Pt,Sv) + + + + World Heroes 2 Jet (USA, Europe) (SGB Enhanced) + + + + World Ice Hockey (Japan) + + + + World Soccer GB (Japan) (SGB Enhanced) + + + + Worms (Europe) + + + + WWF King of the Ring (Japan) + + + + WWF King of the Ring (USA, Europe) + + + + WWF Raw (USA, Europe) + + + + WWF Superstars (Japan) + + + + WWF Superstars (USA, Europe) + + + + WWF Superstars 2 (Japan) + + + + WWF Superstars 2 (USA, Europe) + + + + WWF War Zone (USA, Europe) + + + + X (Japan) + + + + Xenon 2 (USA, Europe) + + + + Xenon 2 - Megablast (Japan) + + + + Yakuman (Japan) + + + + Yakuman (Japan) (Rev 1) + + + + Yannick Noah Tennis (France) + + + + Yogi Bear's Gold Rush (Europe) + + + + Yogi Bear's Gold Rush (USA) + + + + Yomihon Yumegoyomi - Tenjin Kaisen 2 (Japan) + + + + Yoshi (USA) + + + + Yoshi no Cookie (Japan) + + + + Yoshi no Panepon (Japan) (SGB Enhanced) + + + + Yoshi no Tamago (Japan) + + + + Yoshi's Cookie (USA, Europe) + + + + Yousei Monogatari - Rod Land (Japan) + + + + Yu Yu Hakusho (Japan) + + + + Yu Yu Hakusho Dai-2-dan - Ankoku Bujutsukai Hen (Japan) + + + + Yu Yu Hakusho Dai-3-dan - Makai no Tobira Hen (Japan) + + + + Yu Yu Hakusho Dai-4-dan - Makai Touitsu Hen (Japan) (SGB Enhanced) + + + + Yu-Gi-Oh! Duel Monsters (Japan) (SGB Enhanced) + + + + Zelda no Densetsu - Yume o Miru Shima (Japan) + + + + Zelda no Densetsu - Yume o Miru Shima (Japan) (Rev 1) + + + + Zen - Intergalactic Ninja (Europe) + + + + Zen - Intergalactic Ninja (USA) + + + + Zen-Nihon Pro Wrestling Jet (Japan) (SGB Enhanced) + + + + Zerd no Densetsu (Japan) + + + + Zerd no Densetsu 2 - Xerd!! Gishin no Ryouiki (Japan) + + + + Zettai Muteki Raijin-Oh (Japan) + + + + Zoids Densetsu (Japan) + + + + Zool - Ninja of the 'Nth' Dimension (Europe) + + + + Zool - Ninja of the 'Nth' Dimension (USA) + + + + Zoop (Japan) + + + + Zoop (USA, Europe) + + +
diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy.dat.bytes.meta b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy.dat.bytes.meta new file mode 100644 index 00000000..ea69d8c1 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Nintendo - Game Boy.dat.bytes.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 508b618e322f074428dfbd10e4ceb018 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Game Gear.dat.bytes b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Game Gear.dat.bytes new file mode 100644 index 00000000..1d536d33 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Game Gear.dat.bytes @@ -0,0 +1,2060 @@ + + + +
+ Sega - Game Gear + Sega - Game Gear + 20190419-061443 + BigFred, BitLooter, C. V. Reynolds, fuzzball, Hiccup, jimmsu, kazumi213, omonim2007, Powerpuff, relax, Rifu, TeamEurope, xuom2 + No-Intro + http://www.no-intro.org +
+ + 5 in One FunPak (USA) + + + + Aa Harimanada (Japan) + + + + Addams Family, The (World) + + + + Adventures of Batman & Robin, The (USA, Europe) + + + + Aerial Assault (World) + + + + Aerial Assault (Japan) (Rev 1) + + + + Aladdin (USA, Europe, Brazil) + + + + Aladdin (Japan) + + + + Alien 3 (Japan) + + + + Alien 3 (USA, Europe) + + + + Alien Syndrome (Europe) + + + + Alien Syndrome (Japan) + + + + Andre Agassi Tennis (USA) + + + + Andre Agassi Tennis (USA) (Beta) + + + + Arcade Classics (USA) + + + + Arch Rivals - The Arcade Game (USA) + + + + Arena - Maze of Death ~ Arena (USA, Europe) + + + + Ariel the Little Mermaid (USA, Europe, Brazil) + + + + Arliel - Crystal Densetsu (Japan) + + + + Asterix and the Great Rescue (USA) + + + + Asterix and the Great Rescue (Europe) (En,Fr,De,Es,It) + + + + Asterix and the Secret Mission (Europe) (En,Fr,De) + + + + Ax Battler - A Legend of Golden Axe (USA, Europe, Brazil) (Beta) (1991-08-10) + + + + Ax Battler - A Legend of Golden Axe ~ Golden Axe (USA, Europe, Brazil) + + + + Ax Battler - Golden Axe Densetsu (Japan) + + + + Ayrton Senna's Super Monaco GP II (USA, Europe, Brazil) + + + + Ayrton Senna's Super Monaco GP II (Japan) + + + + Ayrton Senna's Super Monaco GP II (USA, Europe, Brazil) (Beta) + + + + Baku Baku Animal (USA) + + + + Baku Baku Animal (Europe) + + + + Baku Baku Animal - Sekai Shiikugakari Senshu-ken (Japan) + + + + Barbie Super Model (USA) (Proto) + + + + Bare Knuckle II ~ Streets of Rage 2 ~ Streets of Rage II (World) + + + + Bare Knuckle ~ Streets of Rage (World) + + + + Batman Forever (World) + + + + Batman Returns (World) + + + + Batter Up (USA) + + + + Battleship - The Classic Naval Combat Game (USA) + + + + Battletoads (Japan, Europe) + + + + Battletoads (USA) + + + + Beavis and Butt-Head (USA, Europe) + + + + Beavis and Butt-Head (USA, Europe) (Beta) + + + + Berenstain Bears' Camping Adventure, The (USA) + + + + Berlin no Kabe (Japan) + + + + Bishoujo Senshi Sailor Moon S (Japan) + + + + Bonkers Wax Up! (USA, Europe) + + + + Bram Stoker's Dracula (Europe) + + + + Bram Stoker's Dracula (USA) + + + + Bubble Bobble (USA) + + + + Bubble Bobble (USA) (Beta) + + + + Bugs Bunny in Double Trouble (USA, Europe) + + + + Bust-A-Move (USA) + + + + Buster Ball (Japan) + + + + Buster Fight (Japan) + + + + Caesars Palace (USA) + + + + Captain America and the Avengers (USA) + + + + Car Licence (Japan) + + + + Casino FunPak (USA) + + + + Castle of Illusion Starring Mickey Mouse (USA, Europe, Brazil) + + + + Cave Dude (USA) (Proto) + + + + Chakan (USA, Europe) + + + + Championship Hockey (Europe) + + + + Chase H.Q. (USA) + + + + Cheese Cat-Astrophe Starring Speedy Gonzales (USA, Europe) (En,Fr,De,Es) + + + + Chessmaster, The (USA, Europe, Brazil) + + + + Chicago Syndicate (USA, Brazil) + + + + Choplifter III (USA) + + + + Chuck Rock (World) + + + + Chuck Rock (World) (Beta) + + + + Chuck Rock II - Son of Chuck (Europe, Brazil) + + + + Chuck Rock II - Son of Chuck (USA) + + + + CJ Elephant Fugitive (USA, Europe) + + + + CJ Elephant Fugitive (USA, Europe) (Beta) + + + + Cliffhanger (USA) + + + + Clutch Hitter (USA) + + + + Coca-Cola Kid (Japan) + + + + Columns (Japan) (En) (Rev 1) + + + + Columns (Japan) (En) + + + + Columns (USA, Europe, Brazil) + + + + Cool Spot (Europe) + + + + Cool Spot (USA) + + + + Cosmic Spacehead (USA, Europe) + + + + Crayon Shin-chan - Taiketsu! Kantam Panic!! (Japan) + + + + Crazy Faces (Europe) (Proto) + + + + Crystal Warriors (USA, Europe) + + + + CutThroat Island (USA) + + + + CutThroat Island (USA) (Beta) + + + + Daffy Duck in Hollywood (Europe, Brazil) (En,Fr,De,Es,It) + + + + David Robinson's Supreme Court (USA) (Auto Demo) + + + + Deep Duck Trouble Starring Donald Duck (USA, Europe) + + + + Defenders of Oasis (USA, Europe) (Beta) + + + + Defenders of Oasis (USA, Europe) + + + + Desert Speedtrap Starring Road Runner and Wile E. Coyote (USA, Brazil) + + + + Desert Speedtrap Starring Road Runner and Wile E. Coyote (Europe) (En,Fr,De,Es,It) + + + + Desert Strike (Europe) (En,Fr,De,Es) + + + + Desert Strike - Return to the Gulf (USA) + + + + Devilish (Japan) + + + + Devilish (Europe, Brazil) + + + + Devilish (USA) + + + + Donald Duck no 4-Tsu no Hihou (Japan) + + + + Donald Duck no Lucky Dime (Japan) + + + + Donald no Magical World (Japan) (En,Ja) + + + + Doraemon - Noranosuke no Yabou (Japan) + + + + Doraemon - Waku Waku Pocket Paradise (Japan) + + + + Double Dragon (USA, Europe) (Beta) + + + + Double Dragon (USA, Europe) + + + + Dr. Franken (Europe) (Proto) + + + + Dr. Robotnik's Mean Bean Machine (USA, Europe) + + + + Dragon - The Bruce Lee Story (USA) + + + + Dragon - The Bruce Lee Story (Europe) + + + + Dragon - The Bruce Lee Story (Europe) (Beta) + + + + Dragon Crystal (USA, Europe) + + + + Dragon Crystal - Tsurani no Meikyuu (Japan) + + + + Dropzone (Europe) + + + + Dunk Kids (Japan) + + + + Dynamite Headdy (USA, Europe) + + + + Dynamite Headdy (Japan) + + + + Earthworm Jim (USA) + + + + Earthworm Jim (Europe) + + + + Ecco - The Tides of Time (USA, Europe) + + + + Ecco the Dolphin (Japan) + + + + Ecco the Dolphin (USA, Europe, Brazil) + + + + Ecco the Dolphin II (Japan) + + + + Empire Syndicate (USA, Brazil) (Beta) + + + + Ernie Els Golf (Europe) (En,Fr,De,Es,It) + + + + Eternal Legend - Eien no Densetsu (Japan) + + + + Evander Holyfield's 'Real Deal' Boxing (USA, Europe) + + + + Excellent Dizzy Collection, The (Europe) + + + + F-15 Strike Eagle (USA, Europe) + + + + F1 - World Championship Edition (Europe) + + + + F1~ Formula One (USA, Europe) + + + + Faceball 2000 (Japan) + + + + Factory Panic (Europe, Brazil) + + + + Fantastic Dizzy (Europe) (En,Fr,De,Es,It) + + + + Fantasy Zone (USA, Brazil) + + + + Fantasy Zone Gear ~ Fantasy Zone (Japan, Europe) + + + + Fatal Fury Special (USA) + + + + Fatal Fury Special (Europe) + + + + FIFA International Soccer (Japan) + + + + FIFA International Soccer (USA, Europe) + + + + FIFA Soccer 96 (USA, Europe) (En,Fr,De,Es) + + + + Foreman for Real (Japan, USA) + + + + Frank Thomas Big Hurt Baseball (USA) + + + + Fray - Shugyou Hen (Japan) + + + + Fred Couples Golf (Japan) + + + + Fred Couples Golf (USA) + + + + Frogger (USA) (Proto) + + + + From TV Animation Slam Dunk - Shouri e no Starting 5 (Japan) + + + + G-LOC - Air Battle (Japan) + + + + G-LOC - Air Battle (Japan) (Rev 1) + + + + G-LOC - Air Battle (USA, Europe, Brazil) + + + + G-Sonic ~ Sonic Blast (World) + + + + Galaga '91 (Japan) + + + + Galaga 2 (Europe) + + + + Gamble Panic (Japan) + + + + Gambler Jiko Chuushinha (Japan) + + + + Ganbare Gorby! (Japan) + + + + Garfield - Caught in the Act (USA, Europe) + + + + Garou Densetsu Special (Japan) + + + + Gear Stadium (Japan) + + + + Gear Stadium Heiseiban (Japan) + + + + Gear Works (USA) + + + + George Foreman's KO Boxing (USA, Europe) + + + + GG Aleste (Japan) + + + + GG Aleste II ~ Power Strike II (Japan, Europe) + + + + GG Portrait - Pai Chen (Japan) + + + + GG Portrait - Yuuki Akira (Japan) + + + + GG Shinobi ~ Shinobi (World) (Rev 1) + + + + GG Shinobi, The (Japan) + + + + Global Gladiators (Europe) + + + + Gojira - Kaijuu Daishingeki (Japan) + + + + GP Rider (Japan) + + + + GP Rider (World) + + + + GP Rider (World) (Beta) (1994-01-04) + + + + Greendog - The Beached Surfer Dude! (USA, Brazil) + + + + Griffin (Japan) + + + + Gunstar Heroes (Japan) + + + + Halley Wars (USA, Europe, Brazil) + + + + Halley Wars (Japan) + + + + Head Buster (Japan) + + + + Heavy Weight Champ (Japan) + + + + Home Alone (USA, Europe, Brazil) + + + + Honoo no Toukyuuji - Dodge Danpei (Japan) + + + + Hook (USA) + + + + Hook (Europe) + + + + Hurricanes (Europe) + + + + Hyokkori Hyoutan-jima - Hyoutan-jima no Daikoukai (Japan) + + + + Hyper Pro Yakyuu '92 (Japan) + + + + In the Wake of Vampire (Japan) + + + + Incredible Crash Dummies, The ~ Crash Dummy - Slick Bouya no Daichousen (World) + + + + Incredible Hulk, The (USA, Europe) + + + + Indiana Jones and the Last Crusade (USA, Europe) + + + + Iron Man X-O Manowar in Heavy Metal (USA) + + + + Itchy & Scratchy Game, The (USA, Europe) + + + + J.League GG Pro-Striker '94 (Japan) + + + + J.League Soccer - Dream Eleven (Japan) + + + + James Bond 007 - The Duel (Europe) + + + + James Pond 3 - Operation Starfi5h (Europe) + + + + James Pond II - Codename RoboCod (USA) + + + + James Pond II - Codename RoboCod (Europe) + + + + Jang Pung II (Korea) (Unl) + + + + Jeopardy! (USA) + + + + Jeopardy! - Sports Edition (USA) + + + + Joe Montana Football (Japan) + + + + Joe Montana Football (USA, Europe) + + + + Journey from Darkness - Strider Returns (USA, Europe) + + + + Judge Dredd (USA, Europe) + + + + Junction (USA) + + + + Junction (Japan) (En) + + + + Jungle Book, The (Europe) + + + + Jungle Book, The (USA) + + + + Jungle Strike (USA) + + + + Jurassic Park (Japan) + + + + Jurassic Park (USA, Europe, Brazil) + + + + Kaitou Saint Tail (Japan) + + + + Kawasaki Superbike Challenge (Europe) + + + + Kawasaki Superbike Challenge (USA) + + + + Kenyuu Densetsu Yaiba (Japan) + + + + Kick & Rush (Japan) + + + + Kinetic Connection (Japan) + + + + Kishin Douji Zenki (Japan) + + + + Klax (USA, Europe) + + + + Krusty's Fun House (USA, Europe) + + + + Kuni-chan no Game Tengoku (Japan) + + + + Kuni-chan no Game Tengoku Part 2 (Japan) + + + + Land of Illusion Starring Mickey Mouse (USA, Europe, Brazil) + + + + Last Action Hero (USA) + + + + Legend of Illusion Starring Mickey Mouse (USA, Europe) + + + + Lemmings (World) + + + + Lemmings (World) (Beta) + + + + Lemmings 2 - The Tribes (Europe) (Proto) + + + + Lion King, The (USA) + + + + Lion King, The (Japan) + + + + Lion King, The (Europe) + + + + Lost World, The - Jurassic Park (USA) + + + + Lucky Dime Caper Starring Donald Duck, The (USA, Europe, Brazil) + + + + Lunar - Sanposuru Gakuen (Japan) + + + + Madden 96 (USA, Europe) + + + + Madden NFL 95 (USA) + + + + Madou Monogatari A - Dokidoki Vacation (Japan) + + + + Madou Monogatari I - 3-Tsu no Madoukyuu (Japan) + + + + Madou Monogatari II - Arle 16-Sai (Japan) + + + + Madou Monogatari III - Kyuukyoku Joou-sama (Japan) (Rev 1) + + + + Madou Monogatari III - Kyuukyoku Joou-sama (Japan) + + + + Magic Knight Rayearth (Japan) + + + + Magic Knight Rayearth 2 - Making of Magic Knight (Japan) + + + + Magical Puzzle Popils (World) (En,Ja) + + + + Magical Taruruuto-kun (Japan) + + + + Majors, The - Pro Baseball (USA) + + + + Man Overboard! (Europe) + + + + Mappy (Japan) + + + + Marble Madness (USA, Europe) + + + + Marko's Magic Football (Europe) (En,Fr,De,Es) + + + + Master of Darkness (Europe) + + + + Mega Man (USA) + + + + Megami Tensei Gaiden - Last Bible (Japan) + + + + Megami Tensei Gaiden - Last Bible Special (Japan) + + + + Mickey Mouse Densetsu no Oukoku - Legend of Illusion (Japan) + + + + Mickey Mouse no Castle Illusion (Japan) + + + + Mickey Mouse no Mahou no Crystal (Japan) + + + + Mickey's Ultimate Challenge (USA) + + + + Micro Machines (USA, Europe) + + + + Micro Machines (USA, Europe) (Beta) + + + + Micro Machines 2 - Turbo Tournament (Europe) + + + + Mighty Morphin Power Rangers (USA, Europe) + + + + Mighty Morphin Power Rangers (USA, Europe) (Beta) (1994-07-16) + + + + Mighty Morphin Power Rangers - The Movie (USA, Europe) + + + + MLBPA Baseball (USA) + + + + Moldorian - Hikari to Yami no Sister (Japan) + + + + Monster Truck Wars (USA, Europe) + + + + Monster World II - Dragon no Wana (Japan) + + + + Mortal Kombat (USA, Europe) + + + + Mortal Kombat - Shinken Kourin Densetsu (Japan) + + + + Mortal Kombat 3 (Europe) + + + + Mortal Kombat II (World) + + + + Ms. Pac-Man (USA) + + + + Nazo Puyo (Japan) + + + + Nazo Puyo (Japan) (Rev 1) + + + + Nazo Puyo 2 (Japan) + + + + Nazo Puyo Arle no Roux (Japan) (Development Edition) + + + + Nazo Puyo Arle no Roux (Japan) + + + + NBA Action Starring David Robinson (USA, Brazil) + + + + NBA Jam (USA, Europe) + + + + NBA Jam (USA) (Rev 1) + + + + NBA Jam (Japan) + + + + NBA Jam - Tournament Edition (World) + + + + Neko Daisuki! (Japan) + + + + NFL '95 (USA) + + + + NFL Quarterback Club (World) + + + + NFL Quarterback Club 96 (USA) + + + + NHL All-Star Hockey (USA) + + + + NHL Hockey (USA, Europe) + + + + Ninja Gaiden (Japan) + + + + Ninja Gaiden (USA, Europe, Brazil) + + + + Ninku (Japan) + + + + Ninku 2 - Tenkuuryuu e no Michi (Japan) + + + + Ninku Gaiden - Hiroyuki Daikatsugeki (Japan) + + + + Nomo Hideo no World Series Baseball (Japan) + + + + Off the Wall (USA) (Proto) (1992-06-28) + + + + Olympic Gold (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv) (Rev 1) + + + + Olympic Gold (Japan, USA, Brazil) (En,Fr,De,Es,It,Nl,Pt,Sv) + + + + Ottifants, The (Europe) (En,Fr,De,Es,It) + + + + OutRun (Europe, Brazil) + + + + OutRun (Japan, Korea) + + + + OutRun Europa (USA) + + + + OutRun Europa (Europe) + + + + Pac-Attack (USA) + + + + Pac-in-Time (USA) (Proto) + + + + Pac-Man (USA) + + + + Pac-Man (Japan) (En) + + + + Panzer Dragoon Mini (Japan) + + + + Paperboy (USA, Europe) + + + + Paperboy 2 (USA) + + + + Paperboy 2 (USA) (Beta) + + + + Pengo (Japan) + + + + Pengo (Europe) + + + + Pet Club - Inu Daisuki! (Japan) + + + + Pete Sampras Tennis (USA, Europe) + + + + PGA Tour 96 (USA, Europe) + + + + PGA Tour Golf (USA, Europe) + + + + PGA Tour Golf (USA) (Rev 1) + + + + PGA Tour Golf II (USA, Europe) + + + + Phantasy Star Adventure (Japan) + + + + Phantasy Star Gaiden (Japan) + + + + Phantom 2040 (USA, Europe) + + + + Pinball Dreams (USA) + + + + Pocket Jansou (Japan) + + + + Poker Face Paul's Blackjack (USA) + + + + Poker Face Paul's Gin (USA) + + + + Poker Face Paul's Poker (USA) + + + + Poker Face Paul's Solitaire (USA) + + + + Pop Breaker (Japan) + + + + Popeye no Beach Volleyball (Japan) + + + + Power Drive (Europe) + + + + Predator 2 (USA, Europe) + + + + Primal Rage (USA, Europe) + + + + Prince of Persia (USA, Europe) + + + + Prince of Persia (USA, Europe) (Beta) + + + + Pro Yakyuu '91, The (Japan) + + + + Pro Yakyuu GG League (Japan) + + + + Pro Yakyuu GG League '94 (Japan) + + + + Psychic World (USA, Europe, Brazil) + + + + Psychic World (Japan) (En) + + + + Putt & Putter (Japan, Korea) + + + + Putt & Putter (USA, Europe, Brazil) + + + + Puyo Puyo (Japan) (En,Ja) + + + + Puyo Puyo Tsuu (Japan) + + + + Puzzle & Action - Ichidanto-R (Japan) + + + + Puzzle & Action - Tanto-R (Japan) + + + + Puzzle Bobble (Japan) + + + + Quest for the Shaven Yak Starring Ren Hoek & Stimpy (USA, Europe) + + + + Quiz Gear Fight!!, The (Japan) + + + + R.B.I. Baseball '94 (USA) + + + + R.C. Grand Prix (USA) + + + + Rastan Saga (Japan) + + + + Revenge of Drancon (USA, Brazil) + + + + Riddick Bowe Boxing (Japan) + + + + Riddick Bowe Boxing (USA) + + + + Rise of the Robots (USA, Europe) + + + + Ristar ~ Ristar - The Shooting Star (World) + + + + Road Rash (USA) + + + + Road Rash (Europe) + + + + RoboCop 3 (World) + + + + RoboCop versus The Terminator (USA, Europe) + + + + Royal Stone - Hirakareshi Toki no Tobira (Japan) + + + + Ryuukyuu (Japan) + + + + Samurai Shodown (USA) + + + + Samurai Spirits (Japan) + + + + Scratch Golf (USA) + + + + Scratch Golf (Japan) + + + + SD Gundam - Winner's History (Japan) + + + + Sega Game Pack 4 in 1 (Europe) + + + + Sega Game Pack 4 in 1 (Europe) (Beta) + + + + Sensible Soccer - European Champions (Europe) + + + + Shadam Crusader - Harukanaru Oukoku (Japan) + + + + Shanghai II (Japan) + + + + Shanghai II (Japan) (Rev 1) + + + + Shaq Fu (USA) + + + + Shikinjou (Japan) + + + + Shining Force Gaiden - Ensei, Jashin no Kuni e (Japan) + + + + Shining Force Gaiden - Final Conflict (Japan) + + + + Shining Force Gaiden II - Jashin no Kakusei (Japan) + + + + Shining Force II - The Sword of Hajya (USA) + + + + Shinobi II - The Silent Fury (World) + + + + Side Pocket (USA) + + + + Simpsons, The - Bart vs. the Space Mutants (USA, Europe) + + + + Simpsons, The - Bart vs. the World ~ Bart World (World) + + + + Simpsons, The - Bartman Meets Radioactive Man (USA) + + + + Skweek (Japan) + + + + Slider (USA, Europe) + + + + Smurfs Travel the World, The (Europe) (En,Fr,De,Es) + + + + Smurfs, The (Europe) (En,Fr,De,Es) + + + + Solitaire FunPak (USA) + + + + Solitaire Poker (USA, Europe) + + + + Sonic & Tails (Japan) (En) + + + + Sonic & Tails (Japan) (En) (Sample) + + + + Sonic & Tails 2 (Japan) + + + + Sonic Chaos (USA, Europe, Brazil) + + + + Sonic Drift (Japan) (En) + + + + Sonic Drift (Japan) (En) (Sample) + + + + Sonic Drift Racing ~ Sonic Drift 2 (World) + + + + Sonic Labyrinth (World) + + + + Sonic Spinball (USA, Europe) + + + + Sonic The Hedgehog (Japan, USA) (Proto) + + + + Sonic The Hedgehog (Japan, USA) + + + + Sonic The Hedgehog (Japan, Europe, Brazil) (Rev 1) + + + + Sonic The Hedgehog - Triple Trouble (USA, Europe) + + + + Sonic The Hedgehog 2 (World) + + + + Sonic The Hedgehog 2 (World) (Auto Demo) + + + + Soukoban (Japan) + + + + Space Harrier (World) + + + + Spider-Man (USA, Europe) + + + + Spider-Man - Return of the Sinister Six (USA, Europe) + + + + Spider-Man - X-Men - Arcade's Revenge (USA) + + + + Spirou (Europe) (Proto) + + + + Sports Illustrated - Championship Football & Baseball (USA) + + + + Sports Trivia (USA) + + + + Sports Trivia - Championship Edition (USA) (Beta) + + + + Sports Trivia - Championship Edition (USA) + + + + Star Trek - The Next Generation - The Advanced Holodeck Tutorial (USA) + + + + Star Trek Generations - Beyond the Nexus (USA) + + + + Star Wars (Europe) + + + + Star Wars (USA, Europe) + + + + Stargate (World) + + + + Street Battle (USA) (Proto) (Unl) + + + + Street Hero (USA) (Proto 2) + + + + Street Hero (USA) (Proto 1) + + + + Striker (Europe) (En,Fr,De,Es,It) + + + + Super Battletank (USA) + + + + Super Columns (Japan) + + + + Super Columns (USA, Europe) + + + + Super Golf (USA) + + + + Super Golf (Japan) + + + + Super Kick Off (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv) + + + + Super Momotarou Dentetsu III (Japan) + + + + Super Monaco GP (Japan, Korea) + + + + Super Monaco GP (USA, Europe, Brazil) + + + + Super Off Road (USA, Europe) + + + + Super Off Road (USA, Europe) (Beta) + + + + Super Smash T.V. (World) + + + + Super Space Invaders (USA, Europe) + + + + Super Star Wars - Return of the Jedi (USA, Europe) + + + + Superman - The Man of Steel (Europe) + + + + Superman - The Man of Steel (Europe) (Beta) + + + + Surf Ninjas (USA, Europe, Brazil) + + + + Sylvan Tale (Japan) + + + + T2 - The Arcade Game (Japan) (En) + + + + T2 - The Arcade Game (USA, Europe) + + + + Tails Adventure ~ Tails Adventures (World) (En,Ja) + + + + Tails no Skypatrol (Japan) + + + + Taisen Mahjong HaoPai (Japan) + + + + Taisen Mahjong HaoPai 2 (Japan) + + + + Taisen-gata Daisenryaku G (Japan) + + + + Taito Chase H.Q. (Japan) + + + + TaleSpin (USA, Europe, Brazil) + + + + Tama & Friends - 3 Choume Kouen Tamalympic (Japan) + + + + Tarot no Yakata (Japan) + + + + Tarzan - Lord of the Jungle (Europe) + + + + Tatakae! Pro Yakyuu Twin League (Japan) + + + + Taz in Escape from Mars (USA, Europe) + + + + Taz-Mania (USA, Europe, Brazil) + + + + Tempo Jr. (World) + + + + Tengen World Cup Soccer (USA, Europe) + + + + Terminator 2 - Judgment Day (World) + + + + Terminator, The (USA, Europe) + + + + Tesserae (USA) + + + + Tintin in Tibet (Europe) (En,Fr,De,Es,Nl,Sv) + + + + Tom and Jerry - The Movie (Japan, Brazil) + + + + Tom and Jerry - The Movie (USA, Europe) + + + + Torarete Tamaruka (Japan) + + + + True Lies (World) + + + + Ultimate Soccer (Japan, Europe, Brazil) (En,Fr,De,Es,It) + + + + Urban Strike (USA) + + + + Vampire - Master of Darkness (USA) + + + + Virtua Fighter Animation (USA, Europe) + + + + Virtua Fighter Mini (Japan) + + + + VR Troopers (USA, Europe, Brazil) + + + + Wagyan Land (Japan) + + + + Wheel of Fortune (USA) + + + + WildSnake (USA) (Proto) + + + + Wimbledon (World) + + + + Winter Olympics (Japan) (En,Fr,De,Es,It,Pt,Sv,No) + + + + Winter Olympics (USA, Europe) (En,Fr,De,Es,It,Pt,Sv,No) + + + + Wizard Pinball (Europe) + + + + Wolfchild (Europe) + + + + Wonder Boy (Europe) + + + + Wonder Boy (Japan) + + + + Wonder Boy - The Dragon's Trap (Europe) + + + + Wonder Boy III - The Dragon's Trap (Europe) (Beta) + + + + Woody Pop (USA, Europe, Brazil) + + + + Woody Pop (Japan) (En) + + + + World Class Leaderboard Golf ~ World Class Leader Board (USA, Europe) + + + + World Cup USA 94 (USA, Europe) (En,Fr,De,Es,It,Nl,Pt,Sv) + + + + World Derby (Japan) + + + + World Series Baseball (USA) (Rev 1) + + + + World Series Baseball (USA) + + + + World Series Baseball '95 (USA) + + + + WWF Raw (USA, Europe) + + + + WWF Wrestlemania - Steel Cage Challenge (USA, Europe) + + + + X-Men (USA) + + + + X-Men - Gamemaster's Legacy (USA, Europe) + + + + X-Men - Mojo World (USA) + + + + Yogi Bear in Yogi Bear's Goldrush (Europe) (Proto) + + + + Yu Yu Hakusho - Horobishimono no Gyakushuu (Japan) + + + + Yu Yu Hakusho II - Gekitou! Nanakyou no Tatakai (Japan) + + + + Zan Gear (Japan) + + + + Zool - Ninja of the 'Nth' Dimension (Europe) + + + + Zool - Ninja of the 'Nth' Dimension (USA) + + + + Zool no Yume Bouken (Japan) + + + + Zoop (USA) + + + + Zoop (USA) (Beta) + + + + [BIOS] Sega Game Gear (USA) (Majesco) + + +
diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Game Gear.dat.bytes.meta b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Game Gear.dat.bytes.meta new file mode 100644 index 00000000..d4321a65 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Game Gear.dat.bytes.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5c7cdaa4dd9848b4ea5faa38e913cf1d +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Master System - Mark III.dat.bytes b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Master System - Mark III.dat.bytes new file mode 100644 index 00000000..103fc1ac --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Master System - Mark III.dat.bytes @@ -0,0 +1,2332 @@ + + + +
+ Sega - Master System - Mark III + Sega - Master System - Mark III + 20190402-062156 + BigFred, C. V. Reynolds, fuzzball, gigadeath, kazumi213, omonim2007, relax, Rifu, TeamEurope, xuom2 + No-Intro + http://www.no-intro.org +
+ + [BIOS] Alex Kidd in Miracle World (Korea) + + + + [BIOS] Alex Kidd in Miracle World (USA, Europe) + + + + [BIOS] Hang-On (USA, Europe) (v3.4) + + + + [BIOS] Hang-On & Safari Hunt (USA, Europe, Brazil) (v2.4) + + + + [BIOS] Missile Defense 3-D (USA, Europe) (v4.4) + + + + [BIOS] Sega Master System (Japan) (v2.1) + + + + [BIOS] Sega Master System (USA) (M404) (Proto) + + + + [BIOS] Sega Master System (USA) (v1.0) (Proto) + + + + [BIOS] Sega Master System (USA, Europe) (v1.3) + + + + [BIOS] Sega Master System (USA) (Store Display Unit) + + + + [BIOS] Sega Master System (Europe) (v2.0) + + + + [BIOS] Sonic The Hedgehog (Europe) + + + + 20 em 1 (Brazil) + + + + 3 in 1 - The Best Game Collection (A) (Korea) (Unl) + + + + 3 in 1 - The Best Game Collection (B) (Korea) (Unl) + + + + 3 in 1 - The Best Game Collection (C) (Korea) (Unl) + + + + 3 in 1 - The Best Game Collection (D) (Korea) (Unl) + + + + 3 in 1 - The Best Game Collection (E) (Korea) (Unl) + + + + 3 in 1 - The Best Game Collection (F) (Korea) (Unl) + + + + 4 PAK All Action (Australia) (Unl) + + + + 8 in 1 - The Best Game Collection (A) (Korea) (Unl) + + + + 8 in 1 - The Best Game Collection (B) (Korea) (Unl) + + + + 8 in 1 - The Best Game Collection (C) (Korea) (Unl) + + + + 94 Super World Cup Soccer (Korea) + + + + Ace of Aces (Europe, Brazil) + + + + Action Fighter (Japan, Europe) (Beta) + + + + Action Fighter (USA, Europe, Brazil) (Rev 1) + + + + Action Fighter (Japan, Europe) + + + + Action Fighter (Taiwan) + + + + Addams Family, The (Europe) + + + + Aerial Assault (Europe, Brazil) + + + + Aerial Assault (USA) + + + + After Burner (World) + + + + Agigongnyong Dooly (Korea) (Unl) + + + + Air Rescue (Europe, Brazil) + + + + Aladdin (Europe, Brazil) + + + + Aleste (Japan) + + + + Alex Kidd - High-Tech World (USA, Europe, Brazil) + + + + Alex Kidd - High-Tech World (USA, Europe, Brazil) (Beta) + + + + Alex Kidd - The Lost Stars (World) + + + + Alex Kidd BMX Trial (Japan) + + + + Alex Kidd in Miracle World (USA, Europe) + + + + Alex Kidd in Miracle World (USA, Europe, Brazil) (Rev 1) + + + + Alex Kidd in Miracle World (Taiwan) (Unl) + + + + Alex Kidd in Shinobi World (USA, Europe, Brazil) + + + + Alex Kidd no Miracle World (Japan) + + + + Alf (USA) + + + + Alibaba and 40 Thieves (Korea) (Unl) + + + + Alien 3 (Europe, Brazil) + + + + Alien Storm (Europe, Brazil) + + + + Alien Syndrome (USA, Europe, Brazil) + + + + Alien Syndrome (USA, Europe, Brazil) (Beta) + + + + Alien Syndrome (Japan) + + + + Altered Beast (USA, Europe, Brazil) + + + + American Baseball (Europe, Brazil) + + + + American Pro Football (Europe) + + + + Andre Agassi Tennis (Europe, Brazil) + + + + Anmitsu Hime (Japan) + + + + Arcade Smash Hits (Europe) + + + + Argos no Juujiken (Japan) + + + + Ariel the Little Mermaid (Brazil) + + + + Ashura (Japan) + + + + Assault City (USA, Europe, Brazil) (Light Phaser) + + + + Assault City (Joypad) (Europe) + + + + Asterix (Europe, Brazil) (En,Fr) + + + + Asterix (Europe, Brazil) (En,Fr) (Rev 1) + + + + Asterix and the Great Rescue (Europe, Brazil) (En,Fr,De,Es,It) + + + + Asterix and the Secret Mission (Europe, Brazil) (En,Fr,De) + + + + Astro Flash (Japan) + + + + Astro Warrior (Japan, USA, Brazil) + + + + Astro Warrior & Pit Pot (Europe) + + + + Aventuras da TV Colosso, As (Brazil) + + + + Ayrton Senna's Super Monaco GP II (Europe, Brazil) + + + + Aztec Adventure (World) + + + + Back to the Future Part II (Europe, Brazil) + + + + Back to the Future Part III (Europe) + + + + Baku Baku (Brazil) + + + + Bank Panic (Europe, Brazil) + + + + Basketball Nightmare (Europe, Brazil) + + + + Batman Returns (Europe, Brazil) + + + + Battle Out Run (Europe, Brazil) + + + + Battlemaniacs (Brazil) + + + + Black Belt (USA, Europe, Brazil) + + + + Blade Eagle (World) (Beta) + + + + Blade Eagle ~ Blade Eagle 3-D (World) + + + + Bobble Bobble (Korea) + + + + Bomber Raid (World) + + + + Bonanza Bros. (Europe, Brazil) + + + + Bonkers Wax Up! (Brazil) + + + + Bram Stoker's Dracula (Europe, Brazil) + + + + Bubble Bobble ~ Dragon Maze (Europe, Brazil) + + + + Buggy Run (Europe, Brazil) + + + + California Games (USA, Europe, Brazil) + + + + California Games II (Europe) + + + + Captain Silver (USA) + + + + Captain Silver (USA) (Beta) + + + + Captain Silver (Japan, Europe, Brazil) + + + + Casino Games (USA, Europe) + + + + Castelo Ra-Tim-Bum (Brazil) + + + + Castle of Illusion Starring Mickey Mouse (USA) (Demo) + + + + Castle of Illusion Starring Mickey Mouse (Europe, Brazil) + + + + Castle of Illusion Starring Mickey Mouse (USA, Brazil) + + + + Champions of Europe (Europe) + + + + Championship Hockey (Europe) + + + + Chapolim x Dracula - Um Duelo Assustador (Brazil) + + + + Cheese Cat-astrophe Starring Speedy Gonzales (Europe, Brazil) (En,Fr,De,Es) + + + + Choplifter (USA, Europe, Brazil) + + + + Choplifter (USA, Europe, Brazil) (Beta) + + + + Choplifter (Japan) (Proto) + + + + Chouon Senshi Borgman (Japan) + + + + Chouon Senshi Borgman (Japan) (Beta) + + + + Chuck Rock (Europe, Brazil) + + + + Chuck Rock II - Son of Chuck (Brazil) + + + + Chuck Rock II - Son of Chuck (Europe) + + + + Circuit, The (Japan) + + + + Cloud Master (USA, Europe, Brazil) + + + + Color & Switch Test (Japan) (En) (Proto) + + + + Columns (USA, Europe, Brazil) (Beta) + + + + Columns ~ Shapes and Columns (USA, Europe, Brazil) + + + + Comical Machine Gun Joe (Taiwan) (Unl) + + + + Comical Machine Gun Joe (Japan) + + + + Comical Machine Gun Joe (Korea) (Unl) + + + + Cool Spot (Europe) + + + + Cosmic Spacehead (Europe) (En,Fr,De,Es) + + + + Cyber Shinobi, The (Europe, Brazil) (Beta) + + + + Cyber Shinobi, The (Europe, Brazil) + + + + Cyborg Hunter (USA, Europe, Brazil) + + + + Cyborg Z (Korea) + + + + C_So! (Korea) (Unl) + + + + Daffy Duck in Hollywood (Europe, Brazil) (En,Fr,De,Es,It) + + + + Dallyeora Pigu-Wang (Korea) (Unl) + + + + Danan - The Jungle Fighter (Europe, Brazil) + + + + Dead Angle (USA, Europe, Brazil) + + + + Deep Duck Trouble Starring Donald Duck (Europe, Brazil) + + + + Desert Speedtrap Starring Road Runner and Wile E. Coyote (Europe, Brazil) (En,Fr,De,Es,It) + + + + Desert Strike (Europe) (En,Fr,De,Es) + + + + Dick Tracy (USA, Europe, Brazil) + + + + Dinobasher Starring Bignose the Caveman (Europe) (Proto) + + + + Dinosaur Dooley, The (Korea) (Unl) + + + + Doki Doki Penguin Land - Uchuu Daibouken (Japan) + + + + Doki Doki Penguin Land - Uchuu-Daibouken (Japan) (Beta) + + + + Double Dragon (World) + + + + Double Hawk (Europe) + + + + Double Hawk (Europe) (Beta) + + + + Double Target - Cynthia no Nemuri (Japan) + + + + Dr. HELLO (Korea) (Unl) + + + + Dr. Robotnik's Mean Bean Machine (Europe, Brazil) + + + + Dragon - The Bruce Lee Story (Europe) + + + + Dragon Crystal (Europe, Brazil) + + + + Dynamite Duke (Europe, Brazil) + + + + Dynamite Dux (Europe, Brazil) + + + + Dynamite Headdy (Brazil) + + + + E-SWAT (USA, Europe, Brazil) (Rev 1) + + + + E-SWAT (USA, Europe, Brazil) (Beta 3) + + + + E-SWAT (USA, Europe, Brazil) (Beta 2) + + + + E-SWAT (USA, Europe, Brazil) + + + + E-SWAT (USA, Europe, Brazil) (Beta 1) + + + + E.I. - Exa Innova (Korea) + + + + Eagles 5 (Korea) + + + + Earthworm Jim (Brazil) + + + + Ecco - The Tides of Time (Brazil) + + + + Ecco the Dolphin (Europe, Brazil) + + + + Enduro Racer (Japan) + + + + Enduro Racer ~ Super Cross (USA, Europe, Brazil) + + + + Excellent Dizzy Collection, The (Europe) (En,Fr,De,Es,It) (Proto) + + + + F-1 Spirit - The Way to Formula-1 (Korea) (Unl) + + + + F-16 Fighter ~ F-16 Fighting Falcon (USA, Europe, Brazil) + + + + F-16 Fighting Falcon (Japan) + + + + F-16 Fighting Falcon (Taiwan) + + + + F-16 Fighting Falcon (USA) + + + + F1 (Europe, Brazil) + + + + FA Tetris (Korea) (Unl) + + + + Family Games (Japan) + + + + Fantastic Dizzy (Europe) (En,Fr,De,Es,It) + + + + Fantasy Zone (Japan) + + + + Fantasy Zone (World) (Beta) + + + + Fantasy Zone (Taiwan) + + + + Fantasy Zone (World) + + + + Fantasy Zone - The Maze (USA, Europe, Brazil) + + + + Fantasy Zone II (USA, Europe, Brazil) + + + + Fantasy Zone II - Opa-Opa no Namida (Japan) + + + + Ferias Frustradas do Pica Pau (Brazil) + + + + FIFA International Soccer (Brazil) (En,Es,Pt) + + + + Final Bubble Bobble (Japan) + + + + Fire & Forget II (Europe) + + + + Fire & Ice (Brazil) + + + + Flash, The (Europe, Brazil) + + + + Flashpoint (Korea) (Unl) + + + + Flintstones, The (Europe, Brazil) + + + + Forgotten Worlds (Europe, Brazil) + + + + Fushigi no Oshiro Pit Pot (Japan) + + + + G-LOC Air Battle (Europe, Brazil) + + + + Gaegujangi Ggachi (Korea) (Unl) + + + + Gain Ground (Europe, Brazil) + + + + Gain Ground (Europe, Brazil) (Beta) + + + + Galactic Protector (Japan) + + + + Galaxian (Korea) (Unl) + + + + Galaxy Force (Europe, Brazil) + + + + Galaxy Force (USA) + + + + Game Box Serie Esportes Radicais (Brazil) + + + + Gangcheol RoboCop (Korea) (Unl) + + + + Gangster Town (USA, Europe, Brazil) + + + + Gauntlet (Europe, Brazil) + + + + George Foreman's KO Boxing (Europe, Brazil) + + + + Geraldinho (Brazil) + + + + Ghost House (USA, Europe, Brazil) + + + + Ghost House (Japan) + + + + Ghost House (USA, Europe, Brazil) (Beta) + + + + Ghost House (Korea) (Unl) + + + + Ghostbusters (USA, Europe, Brazil) + + + + Ghouls'n Ghosts (USA) (Demo) + + + + Ghouls'n Ghosts (USA, Europe) + + + + Global Defense (USA, Europe, Brazil) + + + + Global Defense (USA, Europe, Brazil) (Beta) + + + + Global Gladiators (Europe, Brazil) + + + + Gokuaku Doumei Dump Matsumoto (Japan) + + + + Golden Axe (USA, Europe, Brazil) + + + + Golden Axe Warrior (USA, Europe, Brazil) + + + + Golfamania (Europe) (Beta) + + + + Golfamania (Europe, Brazil) + + + + Golvellius - Valley of Doom (USA, Europe, Brazil) + + + + GP Rider (Europe, Brazil) + + + + Great Baseball (USA, Europe) + + + + Great Baseball (Japan) + + + + Great Basketball (World) + + + + Great Football (World) + + + + Great Golf (Korea) + + + + Great Golf (World) (Beta) + + + + Great Golf (Japan) + + + + Great Golf ~ Masters Golf (World) + + + + Great Ice Hockey (Japan, USA) + + + + Great Soccer (Japan) + + + + Great Soccer (Europe) + + + + Great Soccer (Taiwan) (Unl) + + + + Great Tennis (Japan) + + + + Great Volleyball (Japan) + + + + Great Volleyball (USA, Europe, Brazil) + + + + Gun.Smoke (Korea) (Unl) + + + + Haja no Fuuin (Japan) + + + + Hang On (Europe) + + + + Hang On (Japan) + + + + Hang On (Europe) (Beta) + + + + Hang-On & Astro Warrior (USA) + + + + Hang-On & Safari Hunt (USA) (Beta) + + + + Hang-On & Safari Hunt (USA) + + + + Heavyweight Champ (Europe) + + + + Heroes of the Lance (Europe, Brazil) + + + + High School! Kimengumi (Japan) + + + + Hokuto no Ken (Taiwan) (Unl) + + + + Hokuto no Ken (Japan) + + + + Home Alone (Europe) + + + + Hong Kil Dong (Korea) + + + + Hook (Europe) (Proto) + + + + Hoshi wo Sagashite... (Japan) + + + + Hwarang-ui Geom (Korea) + + + + Impossible Mission (Europe, Brazil) (Beta) + + + + Impossible Mission (Europe, Brazil) + + + + Incredible Crash Dummies, The (Europe, Brazil) + + + + Incredible Hulk, The (Europe, Brazil) + + + + Indiana Jones and the Last Crusade (USA) (Beta) + + + + Indiana Jones and the Last Crusade (Europe, Brazil) + + + + James 'Buster' Douglas Knockout Boxing (USA) (Beta) + + + + James 'Buster' Douglas Knockout Boxing (USA) + + + + James Bond 007 - The Duel (Brazil) + + + + James Bond 007 - The Duel (Europe) + + + + James Pond 2 - Codename RoboCod (Europe, Brazil) + + + + Jang Pung 3 (Korea) (Unl) + + + + Jang Pung II (Korea) (Unl) + + + + Janggun-ui Adeul (Korea) (Unl) + + + + Joe Montana Football (USA, Europe, Brazil) + + + + Jogos de Verao II (Brazil) + + + + Jungle Book, The (Europe, Brazil) + + + + Jurassic Park (Europe, Brazil) + + + + Kenseiden (USA, Europe, Brazil) + + + + Kenseiden (Japan) + + + + King & Balloon (Korea) (Unl) + + + + King's Quest - Quest for the Crown (USA) + + + + King's Quest - Quest for the Crown (USA) (Beta) + + + + Klax (Europe) + + + + Knightmare II - The Maze of Galious (Korea) + + + + Krusty's Fun House (Europe, Brazil) + + + + Kujaku Ou (Japan) + + + + Kung Fu Kid (USA, Europe, Brazil) + + + + Land of Illusion Starring Mickey Mouse (Europe, Brazil) + + + + Laser Ghost (Europe) + + + + Legend of Illusion Starring Mickey Mouse (Brazil) + + + + Lemmings (Europe) (Beta) + + + + Lemmings (Europe, Brazil) + + + + Lemmings 2 - The Tribes (Europe) (Proto) + + + + Line of Fire (Europe, Brazil) + + + + Lion King, The (Europe, Brazil) + + + + Lord of Sword (Japan) + + + + Lord of the Sword (USA, Europe, Brazil) + + + + Loretta no Shouzou - Sherlock Holmes (Japan) + + + + Lucky Dime Caper Starring Donald Duck, The (Europe, Brazil) + + + + Lucky Dime Caper Starring Donald Duck, The (Europe, Brazil) (Beta) + + + + Mahjong Sengoku Jidai (Japan) (Beta) + + + + Mahjong Sengoku Jidai (Japan, Hong Kong) + + + + Makai Retsuden (Japan) + + + + Maou Golvellius (Japan) + + + + Maou Golvellius (Japan) (Beta) + + + + Marble Madness (Europe) + + + + Marksman Shooting & Trap Shooting (USA, Brazil) + + + + Marksman Shooting & Trap Shooting & Safari Hunt (Europe) + + + + Master of Darkness (Europe, Brazil) + + + + Masters of Combat (Europe, Brazil) + + + + Maze Hunter 3-D (USA, Europe, Brazil) + + + + Maze Walker (Japan) + + + + Megumi Rescue (Japan) + + + + Mercs (Europe, Brazil) + + + + Michael Jackson's Moonwalker (USA, Europe, Brazil) + + + + Michael Jackson's Moonwalker (USA, Europe, Brazil) (Beta) + + + + Mickey's Ultimate Challenge (Brazil) + + + + Micro Machines (Europe) + + + + Micro Xevious, The (Korea) (Unl) + + + + Miracle Warriors - Seal of the Dark Lord (USA, Europe) (Beta) + + + + Miracle Warriors - Seal of the Dark Lord (USA, Europe, Brazil) + + + + Missile Defense 3-D (USA, Europe, Brazil) + + + + Missile Defense 3-D (USA, Europe, Brazil) (Sample) + + + + Monica no Castelo do Dragao (Brazil) + + + + Monopoly (USA) (Beta) + + + + Monopoly (USA) + + + + Monopoly (Europe) + + + + Montezuma's Revenge featuring Panama Joe (USA) (Beta) + + + + Montezuma's Revenge featuring Panama Joe (USA) + + + + Mopiranger (Korea) (Unl) + + + + Mortal Kombat (Europe, Brazil) + + + + Mortal Kombat 3 (Brazil) + + + + Mortal Kombat II (Europe, Brazil) + + + + Ms. Pac-Man (Europe, Brazil) + + + + My Hero (USA, Europe, Brazil) + + + + NBA Jam (Europe) (Proto) + + + + Nekkyuu Koushien (Japan) + + + + Nemesis (Korea) + + + + Nemesis 2 (Korea) + + + + New Boggle Boggle 2 (Korea) (Unl) + + + + NewZealand Story, The (Europe) + + + + Ninja (Japan) + + + + Ninja Gaiden (Europe, Brazil) + + + + Ninja Gaiden (Europe, Brazil) (Beta) + + + + Ninja, The (USA, Europe, Brazil) + + + + Olympic Gold (Brazil) (En,Fr,De,Es,It,Nl,Pt,Sv) + + + + Olympic Gold (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv) + + + + Opa Opa (Japan) + + + + Operation Wolf (Europe, Brazil) + + + + Ottifants, The (Europe, Brazil) (En,Fr,De,Es,It) + + + + OutRun (World) + + + + OutRun 3-D (Europe, Brazil) + + + + OutRun Europa (Europe, Brazil) + + + + Pac-Mania (Europe) + + + + Paperboy (USA, Brazil) + + + + Paperboy (Europe) + + + + Parlour Games (USA, Europe) + + + + Pat Riley Basketball (USA) (Proto) + + + + Penguin Adventure (Korea) (Unl) (Pirate) + + + + Penguin Land (USA, Europe) + + + + PGA Tour Golf (Europe) + + + + Phantasy Star (USA, Europe) (Rev 1) + + + + Phantasy Star (Brazil) + + + + Phantasy Star (USA, Europe) + + + + Phantasy Star (Japan) + + + + Phantasy Star (Korea) + + + + Phantasy Star (Japan) (Virtual Console) + + + + Pit-Fighter (Brazil) + + + + Pit-Fighter (Europe) + + + + Pooyan (Korea) + + + + Populous (Europe, Brazil) + + + + Poseidon Wars 3-D (USA, Europe, Brazil) + + + + Power Boggle Boggle (Korea) (Unl) + + + + Power Strike (USA, Europe, Brazil) + + + + Power Strike II (Europe, Brazil) + + + + Ppang Gongjang (Korea) (Unl) + + + + Predator 2 (Brazil) + + + + Predator 2 (Europe) + + + + Prince of Persia (Europe, Brazil) + + + + Pro Wrestling (USA, Europe, Brazil) + + + + Pro Yakyuu , The - Pennant Race (Japan) + + + + Promocao Especial M. System III Compact (Brazil) (Sample) + + + + Psychic World (Europe, Brazil) + + + + Psycho Fox (USA, Europe, Brazil) + + + + Putt & Putter (Europe, Brazil) (Beta) + + + + Putt & Putter ~ Minigolf (Europe, Brazil) + + + + Puznic (Korea) (Unl) + + + + Quartet (USA, Europe) + + + + Quest for the Shaven Yak Starring Ren Hoek & Stimpy (Brazil) + + + + R-Type (World) (Beta) + + + + R-Type (World) + + + + R.C. Grand Prix (USA, Europe, Brazil) (Beta) + + + + R.C. Grand Prix (USA, Europe, Brazil) + + + + Rainbow Islands (Brazil) + + + + Rainbow Islands (Europe) + + + + Rambo - First Blood Part II (USA) + + + + Rambo III (USA, Europe, Brazil) + + + + Rampage (USA, Europe, Brazil) + + + + Rampart (Europe) + + + + Rastan (USA, Europe, Brazil) + + + + Reggie Jackson Baseball (USA) + + + + Renegade (Europe, Brazil) + + + + Rescue Mission (USA, Europe, Brazil) + + + + Road Fighter (Korea) (Unl) + + + + Road Rash (Europe, Brazil) + + + + RoboCop 3 (Europe, Brazil) + + + + RoboCop versus The Terminator (Europe, Brazil) + + + + Rocky (World) + + + + Running Battle (Europe, Brazil) + + + + Sagaia (Europe, Brazil) + + + + Sagak-ui Bimil (Korea) (Unl) + + + + Samgukji 3 (Korea) (Unl) + + + + Sapo Xule - O Mestre do Kung Fu (Brazil) + + + + Sapo Xule - S.O.S. Lagoa Poluida (Brazil, Portugal) + + + + Sapo Xule vs. Os Invasores do Brejo (Brazil) + + + + Satellite 7 (Japan) + + + + Schtroumpfs Autour du Monde, Les (Europe) (En,Fr,De,Es) (Beta) (1996-08-12) + + + + Schtroumpfs Autour du Monde, Les (Europe) (En,Fr,De,Es) + + + + Scramble Spirits (Europe, Brazil) + + + + SDI (Japan) + + + + Secret Command (Europe) + + + + Sega Chess (Europe, Brazil) + + + + Sega Graphic Board (USA) (v2.0) (Proto) + + + + Sega World Tournament Golf (Europe, Brazil) + + + + Seishun Scandal (Japan) + + + + Sensible Soccer (Europe) + + + + Shadow Dancer - The Secret of Shinobi ~ Shadow Dancer (Europe, Brazil) + + + + Shadow of the Beast (Europe, Brazil) + + + + Shanghai (USA, Europe) (Beta) + + + + Shanghai (USA, Europe) + + + + Shinobi (USA, Europe, Brazil) (Rev 1) + + + + Shinobi (Japan, Brazil) + + + + Shooting Gallery (USA, Europe, Brazil) + + + + Simpsons, The - Bart vs. the Space Mutants (Europe, Brazil) + + + + Simpsons, The - Bart vs. the World (Europe, Brazil) + + + + Sitio do Picapau Amarelo (Brazil) + + + + Sky Fighter (Korea) (Unl) + + + + Sky Jaguar (Korea) + + + + Sky Jaguar (Korea) (Clover) + + + + Slap Shoot (USA) (Beta) + + + + Slap Shot (USA, Brazil) + + + + Slap Shot (Europe) (Rev 1) + + + + Slap Shot (Europe) + + + + Smurfs, The (Europe, Brazil) (En,Fr,De,Es) + + + + Solomon no Kagi - Oujo Rihita no Namida (Japan) + + + + Solomon no Kagi - Oujo Rihita no Namida (Japan) (Beta) + + + + Sonic Blast (Brazil) + + + + Sonic Chaos (Europe, Brazil) + + + + Sonic Spinball (Europe, Brazil) + + + + Sonic The Hedgehog (USA, Europe, Brazil) + + + + Sonic The Hedgehog 2 (Europe, Brazil) (Rev 1) + + + + Sonic The Hedgehog 2 (Europe, Brazil) + + + + Sonic's Edusoft (Unknown) (Proto) + + + + Space Gun (Europe) + + + + Space Harrier (Japan, USA) + + + + Space Harrier (Europe) + + + + Space Harrier 3-D ~ Space Harrier 3D (USA, Europe, Brazil) + + + + Space Harrier 3D (Japan) + + + + Special Criminal Investigation (Europe) (Beta) + + + + Special Criminal Investigation (Europe) + + + + Speedball (Europe) (Rev 1) + + + + Speedball (Europe) + + + + Speedball 2 (Europe) + + + + SpellCaster (USA, Europe, Brazil) + + + + Spider-Man (USA, Europe, Brazil) + + + + Spider-Man - Return of the Sinister Six (Europe, Brazil) + + + + Sports Pad Football (USA) + + + + Sports Pad Soccer (Japan) + + + + Spy vs Spy (Japan) + + + + Spy vs Spy (USA, Europe, Brazil) + + + + Spy vs Spy (Taiwan) (Unl) + + + + Star Wars (Europe, Brazil) + + + + Street Fighter II' (Brazil) + + + + Street Master (Korea) (Unl) + + + + Streets of Rage (Europe, Brazil) + + + + Streets of Rage II (Europe, Brazil) + + + + Strider (Unknown) (Demo) + + + + Strider (USA, Europe, Brazil) + + + + Strider II (Europe, Brazil) + + + + Submarine Attack (Europe, Brazil) + + + + Suho Jeonsa (Korea) (Unl) + + + + Sukeban Deka II - Shoujo Tekkamen Densetsu (Japan) + + + + Summer Games (Europe, Brazil) (Beta) + + + + Summer Games ~ Jogos Olimpicos (Europe, Brazil) + + + + Super Arkanoid (Korea) (Unl) + + + + Super Basketball (USA) (Sample) + + + + Super Bioman I (Korea) (Unl) + + + + Super Boy 4 (Korea) (Unl) + + + + Super Boy I (Korea) (Unl) + + + + Super Boy II (Korea) (Unl) + + + + Super Boy III (Korea) (Unl) + + + + Super Bubble Bobble (Korea) (Unl) + + + + Super Columns & Tetris (Korea) (Unl) + + + + Super Golf (Europe) (Beta) + + + + Super Kick Off (Europe, Brazil) (En,Fr,De,Es,It,Nl,Pt,Sv) + + + + Super Monaco GP (USA) + + + + Super Monaco GP (Europe, Brazil) (Beta) + + + + Super Monaco GP (USA) (Beta) + + + + Super Monaco GP (Europe, Brazil) + + + + Super Off Road (Europe) + + + + Super Off Road (Europe) (Beta) + + + + Super Racing (Japan) + + + + Super Smash T.V. (Europe) + + + + Super Space Invaders (Europe) + + + + Super Tennis (USA, Europe) + + + + Super Tetris (Korea) (Unl) + + + + Super Wonder Boy - Monster World (Japan) + + + + Super Wonder Boy ~ Wonder Boy (Japan, Europe) + + + + Superman - The Man of Steel (Europe, Brazil) + + + + T2 - The Arcade Game (Europe) + + + + Taito Chase H.Q. (Europe) + + + + Taz in Escape from Mars (Brazil) + + + + Taz-Mania (Europe, Brazil) (Beta) + + + + Taz-Mania (Europe, Brazil) + + + + Tecmo World Cup '92 (Europe) (Beta) + + + + Tecmo World Cup '93 (Europe) + + + + Teddy Boy (USA, Europe, Brazil) + + + + Teddy Boy Blues (Japan) (Proto) (Ep-MyCard) + + + + Teddy Boy Blues (Japan) + + + + Tennis Ace ~ Super Tennis (Europe, Brazil) + + + + Tensai Bakabon (Japan) + + + + Terminator 2 - Judgment Day (Europe) + + + + Terminator, The (Brazil) + + + + Terminator, The (Europe) + + + + Three Dragon Story, The (Korea) (Unl) + + + + Thunder Blade (USA, Europe, Brazil) + + + + Thunder Blade (Japan) + + + + Time Soldiers (USA, Europe, Brazil) + + + + Tom & Jerry (Europe, Brazil) (Beta) + + + + Tom and Jerry - The Movie (Europe, Brazil) + + + + Toto World 3 (Korea) (Unl) + + + + TransBot (USA, Europe, Brazil) + + + + TransBot (USA, Europe, Brazil) (Beta) + + + + Trivial Pursuit - Genus Edition (Europe) (En,Fr,De,Es) + + + + Ttoriui Moheom (Korea) + + + + Turma da Monica em O Resgate (Brazil) + + + + Ultima IV - Quest of the Avatar (Europe, Brazil) + + + + Ultima IV - Quest of the Avatar (Europe, Brazil) (Beta) + + + + Ultimate Soccer (Europe, Brazil) (En,Fr,De,Es,It) + + + + Vampire (Europe) (Beta) + + + + Vigilante (USA, Europe, Brazil) + + + + Virtua Fighter Animation (Brazil) + + + + Walter Payton Football (USA) + + + + Wanted (USA, Europe, Brazil) + + + + Where in the World is Carmen Sandiego (USA) + + + + Where in the World is Carmen Sandiego (Brazil) + + + + Wimbledon (Europe) + + + + Wimbledon II ~ Wimbledon (Europe, Brazil) + + + + Winter Olympics (Europe) (En,Fr,De,Es,It,Pt,Sv,No) + + + + Winter Olympics (Brazil) (En,Fr,De,Es,It,Pt,Sv,No) + + + + Wolfchild (Europe, Brazil) + + + + Wonder Boy (USA, Europe, Brazil) (Rev 1) + + + + Wonder Boy III - The Dragon's Trap (USA, Europe) + + + + Wonder Boy in Monster Land (USA, Europe) (Beta) + + + + Wonder Boy in Monster Land (USA, Europe) + + + + Wonder Boy in Monster World (Europe) (Beta) + + + + Wonder Boy in Monster World (Europe) + + + + Wonsiin (Korea) (Unl) + + + + Woody Pop - Shinjinrui no Block Kuzushi (Japan) + + + + World Class Leader Board (Europe, Brazil) + + + + World Cup Italia '90 (USA) (Demo) + + + + World Cup Italia '90 ~ Super Futebol II (Europe, Brazil) + + + + World Cup USA 94 (Europe, Brazil) (En,Fr,De,Es,It,Nl,Pt,Sv) + + + + World Games (Europe, Brazil) + + + + World Games (Europe) (Beta) + + + + World Grand Prix (USA, Brazil) (Beta) + + + + World Grand Prix (Europe) + + + + World Grand Prix (USA, Brazil) + + + + World Soccer ~ Great Soccer ~ Super Futebol (World) + + + + WWF Wrestlemania - Steel Cage Challenge (Europe, Brazil) + + + + X-Men - Mojo World (Brazil) + + + + Xenon 2 - Megablast (Europe) + + + + Xenon 2 - Megablast (Europe) (Rev 1) + + + + Xyzolog (Korea) + + + + Ys (Japan) + + + + Ys - The Vanished Omens (USA, Europe) (Demo) + + + + Ys - The Vanished Omens (USA, Europe, Brazil) + + + + Zaxxon 3-D (World) (Beta) + + + + Zaxxon 3-D (World) + + + + Zillion (Japan, Europe) (En,Ja) + + + + Zillion (USA, Europe) (Rev 1) + + + + Zillion (Europe, Brazil) (Rev 2) + + + + Zillion II - The Tri Formation (World) + + + + Zool - Ninja of the 'Nth' Dimension (Europe) + + +
diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Master System - Mark III.dat.bytes.meta b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Master System - Mark III.dat.bytes.meta new file mode 100644 index 00000000..e11e1d44 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - Master System - Mark III.dat.bytes.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a3c9635d0a0aa6845b2a387c5cd6fd02 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - SG-1000.dat.bytes b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - SG-1000.dat.bytes new file mode 100644 index 00000000..40211c97 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - SG-1000.dat.bytes @@ -0,0 +1,844 @@ + + + +
+ Sega - SG-1000 + Sega - SG-1000 + 20180726-142010 + BigFred, C. V. Reynolds, relax, RetroUprising, TeamEurope, xuom2 + No-Intro + http://www.no-intro.org +
+ + [BIOS] Othello Multivision (Japan) + + + + 007 James Bond (Taiwan) (Othello Multivision) + + + + 007 James Bond (Japan) (v2.7) (Othello Multivision) + + + + 007 James Bond (Japan) (v2.6) (Othello Multivision) + + + + Bank Panic (Taiwan) + + + + Bank Panic (Japan) + + + + Black Onyx, The (Japan) + + + + Bomb Jack (Japan) + + + + Bomb Jack (Taiwan) (English Logo) + + + + Bomb Jack (Taiwan) (Chinese Logo) + + + + Bomberman Special (Taiwan) + + + + Bomberman Special (Taiwan) (DahJee) + + + + Borderline (Japan, Europe) + + + + Castle, The (Taiwan) (MSX) + + + + Castle, The (Japan) + + + + Chack'n Pop (Japan) + + + + Chack'n Pop (Taiwan) + + + + Challenge Derby (Japan) (vB) (Othello Multivision) + + + + Challenge Derby (Japan) (vA) (40kB) (Othello Multivision) + + + + Challenge Derby (Japan) (vA) (16kB) (Othello Multivision) + + + + Champion Baseball (Japan) (40kB) + + + + Champion Baseball (Taiwan) + + + + Champion Baseball (Japan) (16kB) + + + + Champion Billiards (Taiwan) + + + + Champion Billiards (Japan) + + + + Champion Boxing (Taiwan) + + + + Champion Boxing (Japan) + + + + Champion Boxing (Japan) (MyCard) + + + + Champion Golf (Japan) + + + + Champion Golf (Japan) (MyCard) + + + + Champion Ice Hockey (Taiwan) + + + + Champion Ice Hockey (Japan) + + + + Champion Kendou (Taiwan) + + + + Champion Kendou (Japan) + + + + Champion Pro Wrestling (Japan) + + + + Champion Soccer (Japan) + + + + Champion Soccer (Taiwan) + + + + Champion Tennis (Japan) + + + + Championship Lode Runner (Taiwan) + + + + Championship Lode Runner (Japan) + + + + Choplifter (Japan) (Beta) + + + + Choplifter (Korea) + + + + Choplifter (Taiwan) (No Logo) + + + + Choplifter (Taiwan) (Chinese Logo) + + + + Choplifter (Taiwan) (English Logo) + + + + Choplifter (Japan) + + + + Chuugaku Hisshuu Eibunpou (Chuugaku 1-Nen) (Japan) (SC-3000) + + + + Chuugaku Hisshuu Eibunpou (Chuugaku 2-Nen) (Japan) (SC-3000) + + + + Chuugaku Hisshuu Eisakubun (Chuugaku 1-Nen) (Japan) (16kB) (SC-3000) + + + + Chuugaku Hisshuu Eisakubun (Chuugaku 1-Nen) (Japan) (40kB) (SC-3000) + + + + Chuugaku Hisshuu Eisakubun (Chuugaku 2-Nen) (Japan) (16kB) (SC-3000) + + + + Chuugaku Hisshuu Eisakubun (Chuugaku 2-Nen) (Japan) (40kB) (SC-3000) + + + + Chuugaku Hisshuu Eitango (Chuugaku 1-Nen) (Japan) (SC-3000) + + + + Chuugaku Hisshuu Eitango (Chuugaku 2-Nen) (Japan) (40kB) (SC-3000) + + + + Chuugaku Hisshuu Eitango (Chuugaku 2-Nen) (Japan) (16kB) (SC-3000) + + + + Congo Bongo (Japan) + + + + Congo Bongo (Japan, Europe) (Rev 1) + + + + Congo Bongo (Japan) (Rev 1) (40kB) + + + + C_So! (Taiwan) + + + + C_So! (Japan) + + + + Dokidoki Penguin Land (Japan) + + + + Dragon Wang (Japan) (Alt 1) + + + + Dragon Wang (Taiwan) (English Logo) + + + + Dragon Wang (Japan) + + + + Dragon Wang (Taiwan) (Chinese Logo) + + + + Drol (Taiwan) + + + + Drol (Japan) + + + + Elevator Action (Japan) + + + + Elevator Action (Taiwan) + + + + Exerion (Japan, Europe) + + + + Exerion (Taiwan) + + + + Flicky (Japan) (Rev 1) + + + + Flicky (Taiwan) + + + + Flicky (Japan) + + + + Flipper (Taiwan) + + + + Galaga (Taiwan) + + + + Girl's Garden (Taiwan) + + + + Girl's Garden (Japan) + + + + Golgo 13 (Japan) + + + + GP World (Japan) (Rev 1) + + + + GP World (Japan) + + + + GP World (Taiwan) + + + + Gulkave (Japan) + + + + Guzzler (Taiwan) (Othello Multivision) + + + + Guzzler (Japan) (Othello Multivision) + + + + H.E.R.O. (Taiwan) (Chinese Logo) + + + + H.E.R.O. (Japan) + + + + H.E.R.O. (Taiwan) (English Logo) + + + + Hang-On II (Taiwan) (Chinese Logo) + + + + Hang-On II (Japan) + + + + Hang-On II (Taiwan) (English Logo) + + + + Home Basic (Japan) (SC-3000) + + + + Home Mahjong (Japan) (Rev 1) + + + + Home Mahjong (Taiwan) + + + + Home Mahjong (Japan) + + + + Hustle Chumy (Japan) + + + + Hustle Chumy (Taiwan) + + + + Hyper Sports (Japan) + + + + Hyper Sports (Taiwan) + + + + Kagaku (Gensokigou Master) (Japan) (SC-3000) + + + + King's Valley (Taiwan) + + + + Knightmare (Taiwan) + + + + Legend of Kage, The (Taiwan) + + + + Lode Runner (Taiwan) + + + + Lode Runner (Japan, Europe) + + + + Magical Kid Wiz (Taiwan) + + + + Mahjong (Japan) (English Title) + + + + Mahjong (Taiwan) + + + + Mahjong (Japan) + + + + Monaco GP (Japan) (Rev 1) + + + + Monaco GP (Japan) + + + + Monaco GP (Japan) (Rev 2) + + + + Monaco GP (Taiwan) + + + + Music (Japan) (SC-3000) + + + + N-Sub (Taiwan) + + + + N-Sub (Europe) + + + + N-Sub (Japan) (16kB) + + + + N-Sub (Japan) (40kB) + + + + Nihonshi Nenpyou (Japan) (SC-3000) + + + + Ninja Princess (Japan) + + + + Ninja Princess (Taiwan) + + + + Okamoto Ayako no Match Play Golf (Taiwan) (Othello Multivision) + + + + Okamoto Ayako no Match Play Golf (Japan) (Rev 1) (Othello Multivision) + + + + Okamoto Ayako no Match Play Golf (Japan) (Othello Multivision) + + + + Orguss (Japan, Europe) + + + + Othello (Japan) + + + + Othello (Taiwan) + + + + Pacar (Taiwan) + + + + Pacar (Japan, Europe) + + + + Pacar (Japan) (40kB) + + + + Pachinko (Japan) + + + + Pachinko II (Taiwan) + + + + Pachinko II (Japan) + + + + Pippols (Taiwan) + + + + Pitfall II (Taiwan) (Chinese Logo) + + + + Pitfall II (Taiwan) (English Logo) + + + + Pitfall II - The Lost Caverns (Japan) (Rev 1) + + + + Pitfall II - The Lost Caverns (Japan) + + + + Pop Flamer (Japan, Europe) + + + + Pop Flamer (Taiwan) + + + + Q-bert (Japan) (Othello Multivision) + + + + Rally-X (Taiwan) (DahJee) + + + + Rally-X (Taiwan) + + + + Road Fighter (Taiwan) + + + + Road Fighter (Taiwan) (Jumbo) + + + + Rock n' Bolt (Japan) + + + + Rock n' Bolt (Taiwan) (Chinese Logo) + + + + Rock n' Bolt (Taiwan) (English Logo) + + + + Safari Hunting (Taiwan) + + + + Safari Hunting (Japan) + + + + Safari Race (Japan) + + + + Safari Race (Europe) + + + + Safari Race (Taiwan) + + + + San-nin Mahjong (Japan) + + + + San-nin Mahjong (Taiwan) + + + + Sega Flipper (Japan, Europe) + + + + Sega Flipper (Japan) (40kB) + + + + Sega-Galaga (Japan) (40kB) + + + + Sega-Galaga (Japan) (16kB) + + + + Sekaishi Nenpyou (Japan) (SC-3000) + + + + Serizawa Hachidan no Tsumeshougi (Japan) + + + + SG-1000 M2 Test Cartridge (Japan) + + + + Shinnyushain Tooru Kun (Japan) + + + + Sindbad Mystery (Japan, Europe) + + + + Sindbad Mystery (Taiwan) + + + + Soukoban (Taiwan) + + + + Soukoban (Japan) + + + + Space Armor (Japan) (v2.0) (Othello Multivision) + + + + Space Armor (Japan) (v1.0) (Othello Multivision) + + + + Space Armor (Japan) (v2.0) (Newer) (Othello Multivision) + + + + Space Invaders (Taiwan) + + + + Space Invaders (Japan) + + + + Space Mountain (Japan) (Othello Multivision) + + + + Space Slalom (Japan) + + + + Star Force (Taiwan) (Alt 1) + + + + Star Force (Japan) + + + + Star Force (Taiwan) + + + + Star Jacker (Taiwan) + + + + Star Jacker (Japan, Europe) (Rev 2) + + + + Star Jacker (Japan, Europe) (Rev 1) + + + + Star Jacker (Japan) + + + + Star Soldier (Taiwan) + + + + Super Tank (Japan) + + + + Super Tank (Taiwan) + + + + Tank Battalion (Taiwan) + + + + Tanoshii Sansuu (Shougaku 4-Nen Ge) (Japan) (SC-3000) + + + + Tanoshii Sansuu (Shougaku 4-Nen Jou) (Japan) (40kB) (SC-3000) + + + + Tanoshii Sansuu (Shougaku 4-Nen Jou) (Japan) (16kB) (SC-3000) + + + + Tanoshii Sansuu (Shougaku 5-Nen Ge) (Japan) (SC-3000) + + + + Tanoshii Sansuu (Shougaku 5-Nen Jou) (Japan) (SC-3000) + + + + Tanoshii Sansuu (Shougaku 6-Nen Ge) (Japan) (SC-3000) + + + + Tanoshii Sansuu (Shougaku 6-Nen Jou) (Japan) (SC-3000) + + + + Terebi Oekaki (Japan) + + + + TwinBee (Taiwan) + + + + Uranai Angel Cutie (Japan) (SC-3000) + + + + Wonder Boy (Japan) + + + + Wonder Boy (Japan) (Rev 1) + + + + Wonder Boy (Taiwan) + + + + Yamato (Japan, Europe) + + + + Yamato (Japan) (40kB) + + + + Yamato (Taiwan) + + + + Yie Ar Kung-Fu II (Taiwan) + + + + Zaxxon (Japan) + + + + Zaxxon (Taiwan) + + + + Zippy Race (Japan) + + + + Zippy Race (Taiwan) + + + + Zoom 909 (Japan) + + + + Zoom 909 (Taiwan) + + +
diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - SG-1000.dat.bytes.meta b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - SG-1000.dat.bytes.meta new file mode 100644 index 00000000..b9c1749d --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/Dat/Sega - SG-1000.dat.bytes.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: cbe0fcbdf85a1b34d9597b831378f6cc +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/MetadataDatabase.json.bytes b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/MetadataDatabase.json.bytes new file mode 100644 index 00000000..8fafd921 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/MetadataDatabase.json.bytes @@ -0,0 +1,294 @@ +[ + { + "Name": "The Castle (SG-1000)", + "Notes": "8k volatile RAM", + "Crc32": "0x092F29D6", + "RomSize": 32768, + "RamSize": 8192 + }, + { + "Name": "Othello (SG-1000)", + "Notes": "2k volatile RAM", + "Crc32": "0xAF4F14BC", + "RomSize": 32768, + "RamSize": 2048 + }, + { + "Name": "Sega Basic Level II (SC-3000)", + "Notes": "2k volatile RAM (for Level IIb)", + "Crc32": "0xF691F9C7", + "RomSize": 32768, + "RamSize": 2048 + }, + { + "Name": "Sega Basic Level III (SC-3000)", + "Notes": "32k volatile RAM (for Level IIIb)", + "Crc32": "0x5D9F11CA", + "RomSize": 32768, + "RamSize": 32768 + }, + { + "Name": "Back to the Future 2 (SMS)", + "Notes": "PAL only", + "Crc32": "0xE5FF50D8", + "RomSize": 262144, + "PreferredTVStandard": "PAL" + }, + { + "Name": "Back to the Future 3 (SMS)", + "Notes": "PAL only", + "Crc32": "0x2D48C1D3", + "RomSize": 262144, + "PreferredTVStandard": "PAL" + }, + { + "Name": "California Games 2 (SMS, Europe)", + "Notes": "PAL only", + "Crc32": "0xC0E25D62", + "RomSize": 262144, + "PreferredTVStandard": "PAL" + }, + { + "Name": "Chase HQ (SMS)", + "Notes": "PAL only", + "Crc32": "0x85CFC9C9", + "RomSize": 262144, + "PreferredTVStandard": "PAL" + }, + { + "Name": "Cosmic Spacehead (SMS)", + "Notes": "Codemasters mapper & PAL only", + "Crc32": "0x29822980", + "RomSize": 262144, + "Mapper": "Sega.CodemastersCartridge", + "PreferredTVStandard": "PAL" + }, + { + "Name": "Dinobasher (SMS)", + "Notes": "Codemasters mapper", + "Crc32": "0xEA5C3A6F", + "RomSize": 262144, + "Mapper": "Sega.CodemastersCartridge" + }, + { + "Name": "Excellent Dizzy Collection (SMS)", + "Notes": "Codemasters mapper & PAL only", + "Crc32": "0x8813514B", + "RomSize": 262144, + "Mapper": "Sega.CodemastersCartridge", + "PreferredTVStandard": "PAL" + }, + { + "Name": "Fantastic Dizzy (SMS)", + "Notes": "Codemasters mapper & PAL only", + "Crc32": "0xB9664AE1", + "RomSize": 262144, + "Mapper": "Sega.CodemastersCartridge", + "PreferredTVStandard": "PAL" + }, + { + "Name": "Home Alone (SMS)", + "Notes": "PAL only", + "Crc32": "0xC9DBF936", + "RomSize": 262144, + "PreferredTVStandard": "PAL" + }, + { + "Name": "Micro Machines (SMS)", + "Notes": "Codemasters mapper & PAL only", + "Crc32": "0xA577CE46", + "RomSize": 262144, + "Mapper": "Sega.CodemastersCartridge", + "PreferredTVStandard": "PAL" + }, + { + "Name": "NewZealand Story (SMS)", + "Notes": "PAL only", + "Crc32": "0xC660FF34", + "RomSize": 262144, + "PreferredTVStandard": "PAL" + }, + { + "Name": "Power Strike 2 (SMS)", + "Notes": "PAL only", + "Crc32": "0xA109A6FE", + "RomSize": 524288, + "PreferredTVStandard": "PAL" + }, + { + "Name": "Predator 2 (SMS, Europe)", + "Notes": "PAL only", + "Crc32": "0x0047B615", + "RomSize": 262144, + "PreferredTVStandard": "PAL" + }, + { + "Name": "Sonic the Hedgehog 2 (SMS)", + "Notes": "PAL only", + "Crc32": "0x5B3B922C", + "RomSize": 524288, + "PreferredTVStandard": "PAL" + }, + { + "Name": "Sonic the Hedgehog 2 (SMS, Revision 1)", + "Notes": "PAL only", + "Crc32": "0xD6F2BFCA", + "RomSize": 524288, + "PreferredTVStandard": "PAL" + }, + { + "Name": "Space Harrier (SMS, Europe)", + "Notes": "PAL only", + "Crc32": "0xCA1D3752", + "RomSize": 262144, + "PreferredTVStandard": "PAL" + }, + { + "Name": "CJ Elephant Fugitive (GG)", + "Notes": "Codemasters mapper", + "Crc32": "0x72981057", + "RomSize": 262144, + "Mapper": "Sega.CodemastersCartridge" + }, + { + "Name": "Cosmic Spacehead (GG)", + "Notes": "Codemasters mapper", + "Crc32": "0x6CAA625B", + "RomSize": 262144, + "Mapper": "Sega.CodemastersCartridge" + }, + { + "Name": "Dropzone (GG)", + "Notes": "Codemasters mapper", + "Crc32": "0x152F0DCC", + "RomSize": 131072, + "Mapper": "Sega.CodemastersCartridge" + }, + { + "Name": "Ernie Els Golf (GG)", + "Notes": "Codemasters mapper & 8k volatile RAM", + "Crc32": "0x5E53C7F7", + "RomSize": 262144, + "RamSize": 8192, + "Mapper": "Sega.CodemastersCartridge" + }, + { + "Name": "Micro Machines (GG)", + "Notes": "Codemasters mapper", + "Crc32": "0xF7C524F6", + "RomSize": 262144, + "Mapper": "Sega.CodemastersCartridge" + }, + { + "Name": "Micro Machines 2: Turbo Tournament (GG)", + "Notes": "Codemasters mapper", + "Crc32": "0xDBE8895C", + "RomSize": 524288, + "Mapper": "Sega.CodemastersCartridge" + }, + { + "Name": "Pete Sampras Tennis (GG)", + "Notes": "Codemasters mapper", + "Crc32": "0xC1756BEE", + "RomSize": 262144, + "Mapper": "Sega.CodemastersCartridge" + }, + { + "Name": "Pop Breaker (GG, Japan)", + "Notes": "Domestic/Japan only", + "Crc32": "0x71DEBA5A", + "RomSize": 131072, + "PreferredRegion": "Domestic" + }, + { + "Name": "S.S. Lucifer: Man Overboard (GG)", + "Notes": "Codemasters mapper", + "Crc32": "0xD9A7F170", + "RomSize": 262144, + "Mapper": "Sega.CodemastersCartridge" + }, + { + "Name": "Sonic Chaos (SMS, Jun 30 1993 Prototype)", + "Notes": "Disallow memory control", + "Crc32": "0xD3AD67FA", + "RomSize": 524288, + "AllowMemoryControl": false + }, + { + "Name": "94 Super World Cup Soccer (SMS)", + "Notes": "Korean mapper", + "Crc32": "0x060D6A7C", + "RomSize": 262144, + "Mapper": "Sega.KoreanMapperCartridge" + }, + { + "Name": "Jang Pung II (SMS)", + "Notes": "Korean mapper", + "Crc32": "0x929222C4", + "RomSize": 524288, + "Mapper": "Sega.KoreanMapperCartridge" + }, + { + "Name": "Jang Pung 3 (SMS)", + "Notes": "Korean mapper", + "Crc32": "0x18FB98A3", + "RomSize": 1048576, + "Mapper": "Sega.KoreanMapperCartridge" + }, + { + "Name": "Janggun-ui Adeul (SMS)", + "Notes": "Korean sprite-flip mapper", + "Crc32": "0x192949D5", + "RomSize": 524288, + "Mapper": "Sega.KoreanSpriteMapperCartridge" + }, + { + "Name": "Sangokushi 3 (SMS)", + "Notes": "Korean mapper", + "Crc32": "0x97D03541", + "RomSize": 1048576, + "Mapper": "Sega.KoreanMapperCartridge" + }, + { + "Name": "4 Pak All Action (SMS)", + "Notes": "4 Pak mapper", + "Crc32": "0xA67F2A5C", + "RomSize": 1048576, + "Mapper": "Sega.Multicart4PakAllActionCartridge" + }, + { + "Name": "Cyborg Z (SMS)", + "Notes": "Korean MSX 8k mapper", + "Crc32": "0x77EFE84A", + "RomSize": 131072, + "Mapper": "Sega.KoreanMSX8kMapperCartridge" + }, + { + "Name": "Street Master (SMS)", + "Notes": "Korean MSX 8k mapper", + "Crc32": "0x83F0EEDE", + "RomSize": 131072, + "Mapper": "Sega.KoreanMSX8kMapperCartridge" + }, + { + "Name": "Wonsiin (SMS)", + "Notes": "Korean MSX 8k mapper", + "Crc32": "0xA05258F5", + "RomSize": 131072, + "Mapper": "Sega.KoreanMSX8kMapperCartridge" + }, + { + "Name": "SMS Bad Apple 1.00 (SMS)", + "Notes": "PAL only", + "Crc32": "0x38434560", + "RomSize": 4194304, + "PreferredTVStandard": "PAL" + }, + { + "Name": "Be No Sqr 1.01 (SMS)", + "Notes": "PAL only", + "Crc32": "0xEE701BE6", + "RomSize": 524288, + "PreferredTVStandard": "PAL" + } +] \ No newline at end of file diff --git a/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/MetadataDatabase.json.bytes.meta b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/MetadataDatabase.json.bytes.meta new file mode 100644 index 00000000..9e00ee0f --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/EssgeeUnity/emu/MetadataDatabase.json.bytes.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 908a963ec9eb62a4ea04b6a9ec91eb78 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/IMPORTENT.prefab b/AxibugEmuOnline.Client/Assets/Resources/IMPORTENT.prefab index f698d23f..603bd011 100644 --- a/AxibugEmuOnline.Client/Assets/Resources/IMPORTENT.prefab +++ b/AxibugEmuOnline.Client/Assets/Resources/IMPORTENT.prefab @@ -968,6 +968,10 @@ PrefabInstance: propertyPath: m_LocalPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 3502527855892815924, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchoredPosition.y + value: -108 + objectReference: {fileID: 0} - target: {fileID: 3531919738411886375, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} propertyPath: m_SizeDelta.x value: 0 @@ -2016,6 +2020,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 1387823396471379745, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1387823396471379745, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1387823396471379745, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1387823396471379745, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1387823396471379745, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1479571148959884843, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2392,6 +2416,34 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 1909329889542750706, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1909329889542750706, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1909329889542750706, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1909329889542750706, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1909329889542750706, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1909329889542750706, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1944104571275498507, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2040845743446371591, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_SizeDelta.x value: 0 @@ -3620,6 +3672,22 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 3968790751069521303, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3968790751069521303, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3968790751069521303, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3968790751069521303, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4004078168872525687, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3640,6 +3708,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4034522914461340411, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4034522914461340411, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4034522914461340411, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4034522914461340411, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4034522914461340411, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4034522914461340411, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4060995442801898471, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4704,6 +4796,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 8512262239172179582, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8512262239172179582, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8512262239172179582, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8512262239172179582, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8512262239172179582, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8598328300010342333, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 diff --git a/AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/LaunchUI.prefab b/AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/LaunchUI.prefab index a216b881..489bc210 100644 --- a/AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/LaunchUI.prefab +++ b/AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/LaunchUI.prefab @@ -814,6 +814,9 @@ PrefabInstance: - targetCorrespondingSourceObject: {fileID: 3226730524206505336, guid: ece591129eb9bcc48bd83ec153c98018, type: 3} insertIndex: -1 addedObject: {fileID: 4184602137809474294} + - targetCorrespondingSourceObject: {fileID: 3226730524206505336, guid: ece591129eb9bcc48bd83ec153c98018, type: 3} + insertIndex: -1 + addedObject: {fileID: 8664827731639454549} m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: ece591129eb9bcc48bd83ec153c98018, type: 3} --- !u!224 &1184851303049462769 stripped @@ -1488,6 +1491,248 @@ RectTransform: m_CorrespondingSourceObject: {fileID: 1998281097548910301, guid: 71eabba88b30a4945b153dbaa6237441, type: 3} m_PrefabInstance: {fileID: 2577300175051671458} m_PrefabAsset: {fileID: 0} +--- !u!1001 &3575709725216339833 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2814076563062444116} + m_Modifications: + - target: {fileID: 460203047818732930, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 460203047818732930, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 460203047818732930, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 460203047818732930, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 460203047818732930, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 460203047818732930, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 460203047818732930, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 471896259363812078, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 471896259363812078, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 471896259363812078, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 471896259363812078, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 471896259363812078, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 471896259363812078, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2512431393477943384, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2512431393477943384, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2512431393477943384, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2512431393477943384, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2512431393477943384, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2512431393477943384, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2512431393477943384, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3127083372996404082, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3161584559533241995, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3161584559533241995, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3161584559533241995, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3161584559533241995, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3161584559533241995, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3161584559533241995, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3161584559533241995, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5169807349761294599, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5169807349761294599, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5169807349761294599, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5169807349761294599, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5169807349761294599, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5169807349761294599, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_Pivot.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_SizeDelta.x + value: 144 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_SizeDelta.y + value: 104 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.x + value: -72 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_AnchoredPosition.y + value: -987 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6906796367924543454, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_Text + value: Master System / Master III + objectReference: {fileID: 0} + - target: {fileID: 9106117812833555594, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + propertyPath: m_Name + value: MasterSystem + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} +--- !u!224 &8664827731639454549 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 5305486536744057900, guid: 29303a37c43a05e48baf7b3fe43bfd09, type: 3} + m_PrefabInstance: {fileID: 3575709725216339833} + m_PrefabAsset: {fileID: 0} --- !u!1001 &4728837085048453021 PrefabInstance: m_ObjectHideFlags: 0 diff --git a/AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/SubMenuItemTemplates/Game_MasterSystem_Template.prefab b/AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/SubMenuItemTemplates/Game_MasterSystem_Template.prefab new file mode 100644 index 00000000..edf2d4fe --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/SubMenuItemTemplates/Game_MasterSystem_Template.prefab @@ -0,0 +1,1129 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &547097114322157613 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2959939562593878400} + - component: {fileID: 437203712799690500} + - component: {fileID: 4882225280214010061} + m_Layer: 5 + m_Name: RomGroup + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2959939562593878400 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 547097114322157613} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5615390190915218624} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &437203712799690500 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 547097114322157613} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fdacbe30e88f6a844a435595a4affdbb, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_StartCorner: 0 + m_StartAxis: 0 + m_CellSize: {x: 500, y: 200} + m_Spacing: {x: 0, y: 20} + m_Constraint: 1 + m_ConstraintCount: 1 + ItemTemplate: {fileID: 1998281097548910301, guid: e6df0d7c236795247971f0d1e691b068, type: 3} + ViewRect: {fileID: 5615390190915218624} + PauseUpdateView: 0 +--- !u!114 &4882225280214010061 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 547097114322157613} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 0 + m_VerticalFit: 2 +--- !u!1 &1731000361478154045 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 471896259363812078} + - component: {fileID: 4047536162787520316} + - component: {fileID: 6906796367924543454} + - component: {fileID: 7379165731187569985} + m_Layer: 5 + m_Name: Name + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &471896259363812078 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1731000361478154045} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3161584559533241995} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 33} + m_Pivot: {x: 0, y: 1} +--- !u!222 &4047536162787520316 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1731000361478154045} + m_CullTransparentMesh: 1 +--- !u!114 &6906796367924543454 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1731000361478154045} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 33a3bdf8f6bd1ec4eba7c4bc58183212, type: 3} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 300 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: NAME +--- !u!114 &7379165731187569985 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1731000361478154045} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cfabb0440166ab443bba8876756fdfa9, type: 3} + m_Name: + m_EditorClassIdentifier: + m_EffectColor: {r: 0, g: 0, b: 0, a: 0.3137255} + m_EffectDistance: {x: 3, y: -3} + m_UseGraphicAlpha: 1 +--- !u!1 &2384302913435809247 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3127083372996404082} + - component: {fileID: 6945246414914211772} + - component: {fileID: 6172144285760254677} + m_Layer: 5 + m_Name: Root + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3127083372996404082 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2384302913435809247} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 460203047818732930} + - {fileID: 3161584559533241995} + m_Father: {fileID: 5305486536744057900} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 130} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &6945246414914211772 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2384302913435809247} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 0 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &6172144285760254677 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2384302913435809247} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &3538343756569101823 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5169807349761294599} + - component: {fileID: 7825479500896033466} + - component: {fileID: 7987100532788937847} + - component: {fileID: 4168298989964156774} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5169807349761294599 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3538343756569101823} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3161584559533241995} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 4} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7825479500896033466 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3538343756569101823} + m_CullTransparentMesh: 1 +--- !u!114 &7987100532788937847 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3538343756569101823} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &4168298989964156774 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3538343756569101823} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &5385582025794088653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 460203047818732930} + - component: {fileID: 3728605797866308165} + - component: {fileID: 1144802487456110281} + - component: {fileID: 7017134925330126122} + m_Layer: 5 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &460203047818732930 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5385582025794088653} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4631375053668232476} + - {fileID: 6233968584065934053} + m_Father: {fileID: 3127083372996404082} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 0.5} +--- !u!222 &3728605797866308165 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5385582025794088653} + m_CullTransparentMesh: 1 +--- !u!114 &1144802487456110281 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5385582025794088653} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: b12ca21105df97a469be3cf97a4f5fc1, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &7017134925330126122 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5385582025794088653} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 144 + m_PreferredHeight: 104 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &5418383961348466497 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8062875795445748770} + - component: {fileID: 2662717078255122285} + - component: {fileID: 3625047787372487136} + m_Layer: 5 + m_Name: SelectArrow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8062875795445748770 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5418383961348466497} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6233968584065934053} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 63, y: 70} + m_Pivot: {x: 0, y: 0.5} +--- !u!222 &2662717078255122285 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5418383961348466497} + m_CullTransparentMesh: 1 +--- !u!114 &3625047787372487136 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5418383961348466497} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1023481969782777897, guid: d518d00d4940e854bbe45d9ef891401a, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &5941102631143440070 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2512431393477943384} + - component: {fileID: 8619900709659458996} + - component: {fileID: 9003373412835913538} + - component: {fileID: 598358273028336866} + m_Layer: 5 + m_Name: Descript + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2512431393477943384 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5941102631143440070} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3161584559533241995} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 33} + m_Pivot: {x: 0, y: 1} +--- !u!222 &8619900709659458996 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5941102631143440070} + m_CullTransparentMesh: 1 +--- !u!114 &9003373412835913538 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5941102631143440070} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 33a3bdf8f6bd1ec4eba7c4bc58183212, type: 3} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 300 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: SNK NeoGeo +--- !u!114 &598358273028336866 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5941102631143440070} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cfabb0440166ab443bba8876756fdfa9, type: 3} + m_Name: + m_EditorClassIdentifier: + m_EffectColor: {r: 0, g: 0, b: 0, a: 0.3137255} + m_EffectDistance: {x: 3, y: -3} + m_UseGraphicAlpha: 1 +--- !u!1 &6355781530872251761 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4631375053668232476} + - component: {fileID: 178555959028296911} + - component: {fileID: 8521572219737141023} + - component: {fileID: 5380294627991656309} + - component: {fileID: 7817320956777133495} + - component: {fileID: 5660897083404887179} + m_Layer: 5 + m_Name: shadowIcon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &4631375053668232476 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6355781530872251761} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 460203047818732930} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &178555959028296911 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6355781530872251761} + m_CullTransparentMesh: 1 +--- !u!114 &8521572219737141023 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6355781530872251761} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: b12ca21105df97a469be3cf97a4f5fc1, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &5380294627991656309 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6355781530872251761} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f8b2ed11d675446c5a49da1ea296d490, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Version: 300 + m_EffectMaterial: {fileID: 21305736874167728, guid: aee96bc531e6eba468ec405e536f515f, type: 2} + m_EffectFactor: 0 + m_ColorFactor: 0 + m_BlurFactor: 0 + m_EffectMode: 0 + m_ColorMode: 1 + m_BlurMode: 3 + m_AdvancedBlur: 1 + m_ShadowBlur: 1 + m_ShadowStyle: 0 + m_ShadowColor: {r: 0, g: 0, b: 0, a: 1} + m_EffectDistance: {x: 1, y: -1} + m_UseGraphicAlpha: 1 + m_EffectColor: {r: 1, g: 1, b: 1, a: 1} + m_AdditionalShadows: [] +--- !u!114 &7817320956777133495 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6355781530872251761} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0848bff101191904ead4bb831f7084db, type: 3} + m_Name: + m_EditorClassIdentifier: + m_BlurFactor: 1 + m_Style: 3 + m_AdditionalShadows: [] + m_EffectColor: {r: 1, g: 1, b: 1, a: 0} + m_EffectDistance: {x: 8, y: 8} + m_UseGraphicAlpha: 0 +--- !u!95 &5660897083404887179 +Animator: + serializedVersion: 7 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6355781530872251761} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 0b3ccf7414d2ead43be0cd33b6e1b53c, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_AnimatePhysics: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 +--- !u!1 &7067879617774535778 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5615390190915218624} + - component: {fileID: 889923332512703221} + - component: {fileID: 1675349766756430658} + m_Layer: 5 + m_Name: viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5615390190915218624 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7067879617774535778} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2959939562593878400} + m_Father: {fileID: 6233968584065934053} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &889923332512703221 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7067879617774535778} + m_CullTransparentMesh: 1 +--- !u!114 &1675349766756430658 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7067879617774535778} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &7311425894574767944 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3161584559533241995} + - component: {fileID: 9167458784761723490} + - component: {fileID: 2010379511303345659} + - component: {fileID: 1744265074350971135} + m_Layer: 5 + m_Name: InfoNode + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3161584559533241995 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7311425894574767944} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 471896259363812078} + - {fileID: 5169807349761294599} + - {fileID: 2512431393477943384} + m_Father: {fileID: 3127083372996404082} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &9167458784761723490 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7311425894574767944} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 20 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 3 + m_Spacing: 10 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!225 &2010379511303345659 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7311425894574767944} + m_Enabled: 1 + m_Alpha: 0 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!114 &1744265074350971135 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7311425894574767944} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 600 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &7421823347209277103 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6233968584065934053} + - component: {fileID: 9045566912386895324} + - component: {fileID: 1354521528220721166} + - component: {fileID: 8704788976101297821} + m_Layer: 5 + m_Name: RomGroupScroll + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6233968584065934053 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7421823347209277103} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5615390190915218624} + - {fileID: 8062875795445748770} + m_Father: {fileID: 460203047818732930} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0.000015258789, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &9045566912386895324 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7421823347209277103} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 2959939562593878400} + m_Horizontal: 0 + m_Vertical: 1 + m_MovementType: 0 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 5615390190915218624} + m_HorizontalScrollbar: {fileID: 0} + m_VerticalScrollbar: {fileID: 0} + m_HorizontalScrollbarVisibility: 0 + m_VerticalScrollbarVisibility: 0 + m_HorizontalScrollbarSpacing: 0 + m_VerticalScrollbarSpacing: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1354521528220721166 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7421823347209277103} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1d1e3e91ac34bc8468f357ee247ffb6a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_menuItemRoot: {fileID: 0} + SubMenuItemTemplate: {fileID: 0} + alphaGroup: {fileID: 0} + m_selectItemPosition: {x: 50, y: -51} + step: 50 + splitStep: 200 + m_selectArrow: {fileID: 8062875795445748770} + ArrowOffset: 60 + WidthFix: 280 + itemGroup: {fileID: 437203712799690500} + srollRect: {fileID: 9045566912386895324} +--- !u!225 &8704788976101297821 +CanvasGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7421823347209277103} + m_Enabled: 1 + m_Alpha: 1 + m_Interactable: 1 + m_BlocksRaycasts: 1 + m_IgnoreParentGroups: 0 +--- !u!1 &9106117812833555594 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5305486536744057900} + - component: {fileID: 1952221633680236903} + - component: {fileID: 2091811895805808559} + m_Layer: 5 + m_Name: Game_MasterSystem_Template + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5305486536744057900 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9106117812833555594} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3127083372996404082} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -72, y: -831} + m_SizeDelta: {x: 144, y: 104} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1952221633680236903 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9106117812833555594} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e2f2e38adaa854144b67512333b1b363, type: 3} + m_Name: + m_EditorClassIdentifier: + Icon: {fileID: 1144802487456110281} + Txt: {fileID: 6906796367924543454} + SubTitle: {fileID: 0} + spline: {fileID: 0} + Descript: {fileID: 9003373412835913538} + Root: {fileID: 3127083372996404082} + ShadowIcon: {fileID: 8521572219737141023} + InfoNode: {fileID: 2010379511303345659} + SubMenuItemGroup: {fileID: 1354521528220721166} + SelectScale: 1 + UnSelectScale: 1 + RomGroupRoot: {fileID: 8704788976101297821} + StarRom: 0 + Platform: 2 + SearchKey: +--- !u!114 &2091811895805808559 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9106117812833555594} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 200 + m_PreferredHeight: 230 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 diff --git a/AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/SubMenuItemTemplates/Game_MasterSystem_Template.prefab.meta b/AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/SubMenuItemTemplates/Game_MasterSystem_Template.prefab.meta new file mode 100644 index 00000000..eb6a6bdd --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/UIPrefabs/SubMenuItemTemplates/Game_MasterSystem_Template.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 29303a37c43a05e48baf7b3fe43bfd09 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/App.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/App.cs index aea378c1..e1319ce0 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/App.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/App.cs @@ -41,6 +41,7 @@ namespace AxibugEmuOnline.Client.ClientCore #region Mono public static TickLoop tickLoop; + public static AudioMgr audioMgr; private static CoroutineRunner coRunner; #if UNITY_PSP2 @@ -107,6 +108,7 @@ namespace AxibugEmuOnline.Client.ClientCore var go = new GameObject("[AppAxibugEmuOnline]"); GameObject.DontDestroyOnLoad(go); tickLoop = go.AddComponent(); + audioMgr = go.AddComponent(); coRunner = go.AddComponent(); diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgee.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgee.cs index b84a9cb7..82de24b7 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgee.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgee.cs @@ -1,4 +1,5 @@ using AxibugEmuOnline.Client; +using AxibugEmuOnline.Client.ClientCore; using AxibugProtobuf; using Essgee; using Essgee.Emulation; @@ -17,15 +18,15 @@ using System.Text; using UnityEngine; using UnityEngine.UI; -public class Essgeeinit : MonoBehaviour, IEmuCore +public class UEssgee : MonoBehaviour, IEmuCore { - public static Essgeeinit instance; + public static UEssgee instance; public static System.Diagnostics.Stopwatch sw = System.Diagnostics.Stopwatch.StartNew(); public static bool bInGame => instance?.emulatorHandler?.IsRunning == true ? true : false; public RomPlatformType Platform => mPlatform; - public uint Frame => throw new NotImplementedException(); + public uint Frame => (uint)emulatorHandler.AxiEmuRunFrame; public Texture OutputPixel => graphicsHandler.rawBufferWarper; @@ -34,7 +35,7 @@ public class Essgeeinit : MonoBehaviour, IEmuCore public static bool bLogicUpdatePause { get; private set; } #region - UEGVideoPlayer graphicsHandler; + public UEGVideoPlayer graphicsHandler; UEGSoundPlayer soundHandler; GameMetadataHandler gameMetadataHandler; GameMetadata lastGameMetadata; @@ -54,10 +55,7 @@ public class Essgeeinit : MonoBehaviour, IEmuCore instance = this; uegResources = new UEGResources(); uegLog = new UEGLog(); - InitAll(uegResources, Application.persistentDataPath); - //LoadAndRunCartridge("G:/psjapa.sms"); - //LoadAndRunCartridge("G:/Ninja_Gaiden_(UE)_type_A_[!].sms"); - //LoadAndRunCartridge("G:/SML2.gb"); + //InitAll(uegResources, App.PersistentDataPath(mPlatform)); } void OnDisable() @@ -102,15 +100,18 @@ public class Essgeeinit : MonoBehaviour, IEmuCore public MsgBool StartGame(RomFile romFile) { mPlatform = romFile.Platform; + + InitAll(uegResources, App.PersistentDataPath(mPlatform)); + bLogicUpdatePause = true; //保存当前正在进行的游戏存档 - if (!emulatorHandler.IsRunning) + if (emulatorHandler != null && !emulatorHandler.IsRunning) { emulatorHandler.SaveCartridge(); } - if (LoadAndRunCartridge(romFile.FileName)) + if (LoadAndRunCartridge(romFile.LocalFilePath)) return true; else return "Rom加载失败"; @@ -153,6 +154,12 @@ public class Essgeeinit : MonoBehaviour, IEmuCore public void AfterPushFrame() { } + + public void GetAudioParams(out int frequency, out int channels) + { + frequency = soundHandler.sampleRate; + channels = soundHandler.channle; + } #endregion void InitAll(IGameMetaReources metaresources, string CustonDataDir) @@ -814,6 +821,7 @@ public class Essgeeinit : MonoBehaviour, IEmuCore soundHandler.SubmitSamples(e.MixedSamples, e.ChannelSamples, e.MixedSamplesLength); } + #endregion } diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGKeyboard.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGKeyboard.cs index 5e633215..123cf91f 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGKeyboard.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGKeyboard.cs @@ -321,7 +321,7 @@ public class UEGKeyboard : MonoBehaviour { bool bHadNetData = false; int targetFrame; ReplayStep replayData; int frameDiff; bool inputDiff; - if (App.roomMgr.netReplay.TryGetNextFrame((int)Essgeeinit.instance.Frame, out replayData, out frameDiff, out inputDiff)) + if (App.roomMgr.netReplay.TryGetNextFrame((int)UEssgee.instance.Frame, out replayData, out frameDiff, out inputDiff)) { if (inputDiff) { @@ -338,7 +338,7 @@ public class UEGKeyboard : MonoBehaviour } //发送本地操作 - App.roomMgr.SendRoomSingelPlayerInput(Essgeeinit.instance.Frame, + App.roomMgr.SendRoomSingelPlayerInput(UEssgee.instance.Frame, DoLocalPressedKeys()); return bHadNetData; diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGResources.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGResources.cs index 46094e41..0fa71836 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGResources.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGResources.cs @@ -3,7 +3,7 @@ using UnityEngine; public class UEGResources : IGameMetaReources { - const string ResourceRoot = "Essgee.Unity/"; + const string ResourceRoot = "EssgeeUnity/emu/"; public bool GetCartMetadataDatabase(out string loadedData) { diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGSoundPlayer.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGSoundPlayer.cs index 434b3c28..d559ee90 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGSoundPlayer.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGSoundPlayer.cs @@ -1,26 +1,53 @@ +using AxibugEmuOnline.Client.ClientCore; using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; using UnityEngine; -public class UEGSoundPlayer : MonoBehaviour//, ISoundPlayer +public class UEGSoundPlayer : MonoBehaviour { [SerializeField] private AudioSource m_as; - private RingBuffer _buffer = new RingBuffer(4096); + private RingBuffer _buffer = new RingBuffer(44100 * 2); private TimeSpan lastElapsed; public double audioFPS { get; private set; } - float lastData = 0; - + public bool IsRecording { get; private set; } + [HideInInspector] + public int sampleRate = 44100; + [HideInInspector] + public int channle = 2; void Awake() { - AudioClip dummy = AudioClip.Create("dummy", 1, 2, AudioSettings.outputSampleRate, false); - //AudioClip dummy = AudioClip.Create("dummy", 1, 2, 44100, false); - dummy.SetData(new float[] { 1, 1 }, 0); - m_as.clip = dummy; - m_as.loop = true; - m_as.spatialBlend = 1; + // 获取当前音频配置 + AudioConfiguration config = AudioSettings.GetConfiguration(); + // 设置目标音频配置 + config.sampleRate = sampleRate; // 采样率为 44100Hz + config.numRealVoices = 32; // 设置最大音频源数量(可选) + config.numVirtualVoices = 512; // 设置虚拟音频源数量(可选) + config.dspBufferSize = 1024; // 设置 DSP 缓冲区大小(可选) + config.speakerMode = AudioSpeakerMode.Stereo; // 设置为立体声(2 声道) + App.audioMgr.SetAudioConfig(config); } + private Queue sampleQueue = new Queue(); + + + // Unity 音频线程回调 + void OnAudioFilterRead(float[] data, int channels) + { + for (int i = 0; i < data.Length; i++) + { + if (_buffer.TryRead(out float rawData)) + data[i] = rawData; + else + data[i] = 0; // 无数据时静音 + } + } + + public void Initialize() { if (!m_as.isPlaying) @@ -37,48 +64,19 @@ public class UEGSoundPlayer : MonoBehaviour//, ISoundPlayer } } - void OnAudioFilterRead(float[] data, int channels) - { - if (!Essgeeinit.bInGame) return; - int step = channels; - for (int i = 0; i < data.Length; i += step) - { - float rawFloat = lastData; - if (_buffer.TryRead(out float rawData)) - { - rawFloat = rawData; - } - - data[i] = rawFloat; - for (int fill = 1; fill < step; fill++) - data[i + fill] = rawFloat; - lastData = rawFloat; - } - } - public unsafe void SubmitSamples(short* buffer, short*[] ChannelSamples, int samples_a) { - var current = Essgeeinit.sw.Elapsed; + var current = UEssgee.sw.Elapsed; var delta = current - lastElapsed; lastElapsed = current; audioFPS = 1d / delta.TotalSeconds; - - //for (int i = 0; i < samples_a; i++) - //{ - // short left = BitConverter.ToInt16(buffer, i * 2 * 2); - // //short right = BitConverter.ToInt16(buffer, i * 2 * 2 + 2); - // _buffer.Write(left / 32767.0f); - // //_buffer.Write(right / 32767.0f); - //} - - for (int i = 0; i < samples_a; i += 2) + for (int i = 0; i < samples_a; i += 1) { _buffer.Write(buffer[i] / 32767.0f); - //_buffer.Write(buffer[i] / 32767.0f); } + App.audioMgr.WriteToRecord(buffer, samples_a); } - public void BufferWirte(int Off, byte[] Data) { } diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGVideoPlayer.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGVideoPlayer.cs index 448c0f42..d92910f3 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGVideoPlayer.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGVideoPlayer.cs @@ -1,9 +1,11 @@ using System; +using Unity.Android.Gradle.Manifest; using UnityEngine; using UnityEngine.UI; public class UEGVideoPlayer : MonoBehaviour { + public Vector2Int mScreenSize { get; private set; } [SerializeField] private int mWidth; [SerializeField] @@ -88,7 +90,7 @@ public class UEGVideoPlayer : MonoBehaviour { mFrame = (ulong)frame_number; - var current = Essgeeinit.sw.Elapsed; + var current = UEssgee.sw.Elapsed; var delta = current - lastElapsed; lastElapsed = current; videoFPS = 1d / delta.TotalSeconds; @@ -97,6 +99,7 @@ public class UEGVideoPlayer : MonoBehaviour if (!bHadData) { + mScreenSize = new Vector2Int(width, height); mWidth = width; mHeight = height; bHadData = true; diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/MameEmulator/UMAME.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/MameEmulator/UMAME.cs index 722ed759..77b44e76 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/MameEmulator/UMAME.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/MameEmulator/UMAME.cs @@ -117,7 +117,14 @@ public class UMAME : MonoBehaviour, IEmuCore public IControllerSetuper GetControllerSetuper() { return mUniKeyboard.ControllerMapper; + } + + + public void GetAudioParams(out int frequency, out int channels) + { + mUniSoundPlayer.GetAudioParams(out frequency, out channels); } + #endregion bool LoadGame(string loadRom, bool bReplay = false) { @@ -224,6 +231,7 @@ public class UMAME : MonoBehaviour, IEmuCore fs.Close(); } + public Texture OutputPixel => mUniVideoPlayer.rawBufferWarper; public RawImage DrawCanvas => mUniVideoPlayer.DrawCanvas; diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/MameEmulator/UniInterface/UniSoundPlayer.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/MameEmulator/UniInterface/UniSoundPlayer.cs index 6b206190..d9678c83 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/MameEmulator/UniInterface/UniSoundPlayer.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/MameEmulator/UniInterface/UniSoundPlayer.cs @@ -11,14 +11,20 @@ public class UniSoundPlayer : MonoBehaviour, ISoundPlayer public double audioFPS { get; private set; } float lastData = 0; - void Awake() { - AudioClip dummy = AudioClip.Create("dummy", 1, 2, AudioSettings.outputSampleRate, false); - dummy.SetData(new float[] { 1, 1 }, 0); - m_as.clip = dummy; + //TODO 采样率需要更准确,而且和clip并没有关系 + var dummy = AudioClip.Create("dummy", 1, 1, AudioSettings.outputSampleRate, false); + dummy.SetData(new float[] { 1 }, 0); + m_as.clip = dummy; //just to let unity play the audiosource m_as.loop = true; m_as.spatialBlend = 1; + m_as.Play(); + } + public void GetAudioParams(out int frequency, out int channels) + { + frequency = m_as.clip.samples; + channels = m_as.clip.channels; } public void Initialize() diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/NesEmulator/AudioProvider.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/NesEmulator/AudioProvider.cs index b4736148..18c9a4a0 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/NesEmulator/AudioProvider.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/NesEmulator/AudioProvider.cs @@ -13,6 +13,7 @@ namespace AxibugEmuOnline.Client private SoundBuffer _buffer = new SoundBuffer(4096); public void Start() { + //TODO 閲囨牱鐜囬渶瑕佹洿鍑嗙‘锛岃屼笖鍜宑lip骞舵病鏈夊叧绯 var dummy = AudioClip.Create("dummy", 1, 1, AudioSettings.outputSampleRate, false); dummy.SetData(new float[] { 1 }, 0); m_as.clip = dummy; //just to let unity play the audiosource @@ -20,6 +21,11 @@ namespace AxibugEmuOnline.Client m_as.spatialBlend = 1; m_as.Play(); } + public void GetAudioParams(out int frequency, out int channels) + { + frequency = m_as.clip.samples; + channels = m_as.clip.channels; + } void OnAudioFilterRead(float[] data, int channels) { diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/NesEmulator/NesEmulator.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/NesEmulator/NesEmulator.cs index 9589f350..5dcce4c6 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/NesEmulator/NesEmulator.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/NesEmulator/NesEmulator.cs @@ -200,6 +200,11 @@ namespace AxibugEmuOnline.Client UnityEditor.AssetDatabase.SaveAssets(); } + public void GetAudioParams(out int frequency, out int channels) + { + AudioProvider.GetAudioParams(out frequency, out channels); + } + public Texture OutputPixel => VideoProvider.OutputPixel; public RawImage DrawCanvas => VideoProvider.Drawer; diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/IEmuCore.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/IEmuCore.cs index 0762293f..b2e721b2 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/IEmuCore.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/IEmuCore.cs @@ -38,7 +38,8 @@ namespace AxibugEmuOnline.Client /// 妯℃嫙鍣ㄦ牳蹇冩帹甯 bool PushEmulatorFrame(); /// 妯℃嫙鍣ㄦ牳蹇冩帹甯х粨鏉 - void AfterPushFrame(); + void AfterPushFrame(); + public void GetAudioParams(out int frequency, out int channels); Texture OutputPixel { get; } RawImage DrawCanvas { get; } } diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppEmu.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppEmu.cs index ee2b4477..d28da729 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppEmu.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppEmu.cs @@ -60,6 +60,15 @@ namespace AxibugEmuOnline.Client.Manager case RomPlatformType.Igs: case RomPlatformType.Neogeo: m_emuCore = GameObject.Instantiate(Resources.Load("MAME/UMAME")).GetComponent(); + break; + case RomPlatformType.MasterSystem: + case RomPlatformType.GameGear: + case RomPlatformType.GameBoy: + case RomPlatformType.GameBoyColor: + case RomPlatformType.ColecoVision: + case RomPlatformType.Sc3000: + case RomPlatformType.Sg1000: + m_emuCore = GameObject.Instantiate(Resources.Load("EssgeeUnity/EssgeeUnity")).GetComponent(); break; } diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppSettings/ScreenScaler.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppSettings/ScreenScaler.cs index 94e7576f..c6ae9483 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppSettings/ScreenScaler.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppSettings/ScreenScaler.cs @@ -111,6 +111,14 @@ namespace AxibugEmuOnline.Client case RomPlatformType.Neogeo: case RomPlatformType.Igs: return UMAME.instance.mUniVideoPlayer.mScreenSize; + case RomPlatformType.MasterSystem: + case RomPlatformType.GameGear: + case RomPlatformType.GameBoy: + case RomPlatformType.GameBoyColor: + case RomPlatformType.ColecoVision: + case RomPlatformType.Sc3000: + case RomPlatformType.Sg1000: + return UEssgee.instance.graphicsHandler.mScreenSize; default: throw new System.NotImplementedException($"鏈疄鐜扮殑骞冲彴:{platform}"); } } diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/RomLib/RomFile.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/RomLib/RomFile.cs index fb9d7332..86181238 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/RomLib/RomFile.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/RomLib/RomFile.cs @@ -24,17 +24,49 @@ namespace AxibugEmuOnline.Client { switch (Platform) { - case RomPlatformType.Nes: return false; + case RomPlatformType.Nes: + case RomPlatformType.MasterSystem: + case RomPlatformType.GameGear: + case RomPlatformType.GameBoy: + case RomPlatformType.GameBoyColor: + case RomPlatformType.ColecoVision: + case RomPlatformType.Sc3000: + case RomPlatformType.Sg1000: + return false; case RomPlatformType.Igs: case RomPlatformType.Cps1: case RomPlatformType.Cps2: case RomPlatformType.Neogeo: + case RomPlatformType.ArcadeOld: return true; default: throw new NotImplementedException($"鏈疄鐜扮殑骞冲彴{Platform}"); } } } + public string FileExtentionName + { + get + { + switch (Platform) + { + case RomPlatformType.Nes: return ".nes"; + + case RomPlatformType.MasterSystem: //return ".sms"; + case RomPlatformType.GameGear: + case RomPlatformType.GameBoy: //return ".gb"; + case RomPlatformType.GameBoyColor: //return ".gbc"; + case RomPlatformType.ColecoVision: + case RomPlatformType.Sc3000: + case RomPlatformType.Sg1000: + throw new NotImplementedException($"璇ュ钩鍙颁娇鐢ㄦ牳蹇冨唴zip瑙e帇{Platform}"); + + + default: throw new NotImplementedException($"鏈疄鐜扮殑骞冲彴{Platform}"); + } + } + } + bool m_hasLocalFile; public bool HasLocalFile { @@ -274,7 +306,8 @@ namespace AxibugEmuOnline.Client var currentEntry = zip.GetNextEntry(); if (currentEntry == null) break; - if (!currentEntry.Name.ToLower().EndsWith(".nes")) continue; + //褰撳墠骞冲彴鍗曟枃浠秗om鎵╁睍鍚嶅垽鏂 + if (!currentEntry.Name.ToLower().EndsWith(FileExtentionName)) continue; var buffer = new byte[1024]; MemoryStream output = new MemoryStream(); @@ -294,8 +327,8 @@ namespace AxibugEmuOnline.Client } throw new Exception("Not Valid Rom Data"); - } - + } + public void SetWebData(HttpAPI.Resp_RomInfo resp_RomInfo) { webData = resp_RomInfo; diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/AudioMgr.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/AudioMgr.cs new file mode 100644 index 00000000..cf052d65 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/AudioMgr.cs @@ -0,0 +1,273 @@ +锘縰sing AxibugEmuOnline.Client.ClientCore; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using UnityEngine; + +namespace AxibugEmuOnline.Client +{ + public class AudioMgr : MonoBehaviour + { + /// + /// 鎵嬪姩璁剧疆AudioCfg 涓昏鐢ㄤ簬妯℃嫙鍣ㄥ悇鏍稿績閲囨牱鐜囧榻 + /// + /// + public void SetAudioConfig(AudioConfiguration config) + { + // 搴旂敤鏂扮殑闊抽閰嶇疆 + if (AudioSettings.Reset(config)) + { + Debug.Log("Audio settings updated successfully."); + Debug.Log("Sample Rate: " + config.sampleRate + "Hz"); + Debug.Log("Speaker Mode: " + config.speakerMode); + } + else + { + Debug.LogError("Failed to update audio settings."); + } + } + + /// + /// 鍒囨崲璁惧锛堣摑鐗欙級鍚庨噸鏂版挱鏀捐儗鏅煶涔 + /// + /// + void OnAudioConfigurationChanged(bool deviceWasChanged) + { + //鍑芥暟浠呭鐞嗚澶囧彉鍖栫殑鎯呭喌锛岄潪璁惧鍙樺寲涓嶅啀鏈嚱鏁板鐞嗭紝閬垮厤鏍稿績閲囨牱鐜囧彉鍖栧拰鏈寰幆璋冪敤 + if (deviceWasChanged) + { + AudioConfiguration config = AudioSettings.GetConfiguration(); + AudioSettings.Reset(config); + //TODO 閲嶆柊鎾斁闊虫晥锛屼絾鏄疍SP涓嶇敤锛岃嫢鏈塙I BGM锛屽悗缁 杩欓噷鍔犻噸鎾 + } + } + + + #region 褰曢煶鍔熻兘瀹炵幇 + + WaveHeader waveHeader; + FormatChunk formatChunk; + DataChunk dataChunk; + + public bool IsRecording { get; private set; } + + public void BeginRecordGameAudio() + { + App.emu.Core.GetAudioParams(out int frequency, out int channels); + BeginRecording(frequency, channels); + } + + public void StopRecordGameAudio() + { + SaveRecording(GetSavePath()); + } + + string GetSavePath() + { + string dir = $"{App.PersistentDataPath(App.emu.Core.Platform)}/AxiSoundRecord"; + if (!Directory.Exists(dir)) + { + Directory.CreateDirectory(dir); + } + return $"{dir}/{App.tickLoop.GetDateTimeStr()}"; + } + + void BeginRecording(int frequency, int channels) + { + if (IsRecording) + { + OverlayManager.PopTip("宸叉湁姝e湪杩涜鐨勫綍闊斥︹"); + return; + } + waveHeader = new WaveHeader(); + formatChunk = new FormatChunk(frequency, channels); + dataChunk = new DataChunk(); + waveHeader.FileLength += formatChunk.Length(); + IsRecording = true; + OverlayManager.PopTip("褰曢煶寮濮"); + } + + void SaveRecording(string filename) + { + if (!IsRecording) + { + OverlayManager.PopTip("娌℃湁褰曢煶鏁版嵁"); + return; + } + + using (FileStream file = new FileStream(filename, FileMode.Create, FileAccess.Write, FileShare.ReadWrite)) + { + file.Write(waveHeader.GetBytes(), 0, (int)waveHeader.Length()); + file.Write(formatChunk.GetBytes(), 0, (int)formatChunk.Length()); + file.Write(dataChunk.GetBytes(), 0, (int)dataChunk.Length()); + } + IsRecording = false; + OverlayManager.PopTip("褰曢煶缁撴潫"); + } + + public unsafe void WriteToRecord(short* stereoBuffer, int lenght) + { + if (!IsRecording) return; + dataChunk.AddSampleData(stereoBuffer, lenght); + waveHeader.FileLength += (uint)lenght; + } + #endregion + } + + class WaveHeader + { + const string fileTypeId = "RIFF"; + const string mediaTypeId = "WAVE"; + + public string FileTypeId { get; private set; } + public uint FileLength { get; set; } + public string MediaTypeId { get; private set; } + + public WaveHeader() + { + FileTypeId = fileTypeId; + MediaTypeId = mediaTypeId; + FileLength = 4; /* Minimum size is always 4 bytes */ + } + + public byte[] GetBytes() + { + List chunkData = new List(); + + chunkData.AddRange(Encoding.ASCII.GetBytes(FileTypeId)); + chunkData.AddRange(BitConverter.GetBytes(FileLength)); + chunkData.AddRange(Encoding.ASCII.GetBytes(MediaTypeId)); + + return chunkData.ToArray(); + } + + public uint Length() + { + return (uint)GetBytes().Length; + } + } + + class FormatChunk + { + const string chunkId = "fmt "; + + ushort bitsPerSample, channels; + uint frequency; + + public string ChunkId { get; private set; } + public uint ChunkSize { get; private set; } + public ushort FormatTag { get; private set; } + + public ushort Channels + { + get { return channels; } + set { channels = value; RecalcBlockSizes(); } + } + + public uint Frequency + { + get { return frequency; } + set { frequency = value; RecalcBlockSizes(); } + } + + public uint AverageBytesPerSec { get; private set; } + public ushort BlockAlign { get; private set; } + + public ushort BitsPerSample + { + get { return bitsPerSample; } + set { bitsPerSample = value; RecalcBlockSizes(); } + } + + public FormatChunk() + { + ChunkId = chunkId; + ChunkSize = 16; + FormatTag = 1; /* MS PCM (Uncompressed wave file) */ + Channels = 2; /* Default to stereo */ + Frequency = 44100; /* Default to 44100hz */ + BitsPerSample = 16; /* Default to 16bits */ + RecalcBlockSizes(); + } + + public FormatChunk(int frequency, int channels) : this() + { + Channels = (ushort)channels; + Frequency = (ushort)frequency; + RecalcBlockSizes(); + } + + private void RecalcBlockSizes() + { + BlockAlign = (ushort)(channels * (bitsPerSample / 8)); + AverageBytesPerSec = frequency * BlockAlign; + } + + public byte[] GetBytes() + { + List chunkBytes = new List(); + + chunkBytes.AddRange(Encoding.ASCII.GetBytes(ChunkId)); + chunkBytes.AddRange(BitConverter.GetBytes(ChunkSize)); + chunkBytes.AddRange(BitConverter.GetBytes(FormatTag)); + chunkBytes.AddRange(BitConverter.GetBytes(Channels)); + chunkBytes.AddRange(BitConverter.GetBytes(Frequency)); + chunkBytes.AddRange(BitConverter.GetBytes(AverageBytesPerSec)); + chunkBytes.AddRange(BitConverter.GetBytes(BlockAlign)); + chunkBytes.AddRange(BitConverter.GetBytes(BitsPerSample)); + + return chunkBytes.ToArray(); + } + + public uint Length() + { + return (uint)GetBytes().Length; + } + } + + class DataChunk + { + const string chunkId = "data"; + + public string ChunkId { get; private set; } + public uint ChunkSize { get; set; } + public List WaveData { get; private set; } + + public DataChunk() + { + ChunkId = chunkId; + ChunkSize = 0; + WaveData = new List(); + } + + public byte[] GetBytes() + { + //寰呬紭鍖 + List chunkBytes = new List(); + + chunkBytes.AddRange(Encoding.ASCII.GetBytes(ChunkId)); + chunkBytes.AddRange(BitConverter.GetBytes(ChunkSize)); + byte[] bufferBytes = new byte[WaveData.Count * 2]; + Buffer.BlockCopy(WaveData.ToArray(), 0, bufferBytes, 0, bufferBytes.Length); + chunkBytes.AddRange(bufferBytes.ToList()); + + return chunkBytes.ToArray(); + } + + public uint Length() + { + return (uint)GetBytes().Length; + } + + public unsafe void AddSampleData(short* stereoBuffer, int lenght) + { + for (int i = 0; i < lenght; i++) + { + WaveData.Add(stereoBuffer[i]); + } + ChunkSize += (uint)(lenght * 2); + } + } +} diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/AudioMgr.cs.meta b/AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/AudioMgr.cs.meta new file mode 100644 index 00000000..59c8fea4 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/AudioMgr.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 4c60dbc75f26d614fb42df5e58e1d29e \ No newline at end of file diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/TickLoop.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/TickLoop.cs index e1869a61..cc620443 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/TickLoop.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/MonoCom/TickLoop.cs @@ -124,5 +124,10 @@ namespace AxibugEmuOnline.Client AveNetDelay = NetDelays.Average(w => w); } } + + internal object GetDateTimeStr() + { + return DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"); + } } }