Jump to content
LaunchBox Community Forums

Auto Hotkey Scripts


Lordmonkus

Recommended Posts

On 8/10/2017 at 2:31 PM, Omen said:

This will put CxBx Reloaded into full screen after launching. You can change the app title to whatever you want, to make it work with other emulators.


#NoEnv

WinWaitActive , Cxbx-Reloaded
SetKeyDelay, -1, 110
Send {Alt Down}{Enter}{Alt Up}
Return

 

Hey everyone, wanted to see if anyone can help me out on this. I'm trying to get Cxbx-Reloaded to go fullscreen with AHK. However, somewhere along the way Cxbx changed it so that the window title is "Cxbx-Reloaded (Date)" for each version. Is there a way to change the script so that I can still use it even with newer versions? (Besides just copy/pasting the version name into the window title)

  • Like 1
Link to comment
Share on other sites

FYI for anyone wondering what the above is doing - "SetTitleMatchMode, 2" changes it to a "contains" title search rather than an exact/complete match. I had to figure this out a little while back when I was working on a script for Retroarch and discovered that it calls the window "Retroarch [core name] [version number]" which will break a script any time you update the core (if you're using an exact name) because the version number will change. With SetTitleMatchMode, 2 I can use, for example "WinWait, Retroarch VICE" instead of "WinWait, Retroarch VICE x64 3.0 ce4524d"; that's if I wanted it to only affect the VICE core - if I wanted it for everything just using "Retroarch" would work. Pretty handy.

  • Like 2
Link to comment
Share on other sites

On 11/17/2017 at 8:04 AM, jayjay said:

Iv been Improving on AHK. Here's a better version of the shutdown above:

Normal:

 


#SingleInstance Force

Joy1::
if GetKeyState("Joy3")
if GetKeyState("Joy5")
if GetKeyState("Joy6")
Goto, shut_down
Return

Joy3::
if GetKeyState("Joy1")
if GetKeyState("Joy5")
if GetKeyState("Joy6")
Goto, shut_down
Return


Joy5::
if GetKeyState("Joy1")
if GetKeyState("Joy3")
if GetKeyState("Joy6")
Goto, shut_down
Return

Joy6::
if GetKeyState("Joy1")
if GetKeyState("Joy3")
if GetKeyState("Joy5")
Goto, shut_down
Return

shut_down:
{
KeyWait, Joy1

Gui, -Caption +ToolWindow
Gui, Margin, 0, 0
Gui, Add, Picture, , Shutdown.png
Gui, Show
Loop 
	{ 
		Loop  
		{
			If GetKeyState("joy1")
			{
			shutdown, 5
               		}
		
		else
			If GetKeyState("joy2") 
			{	
			Gui, Cancel
			Return
			}
		}
	}
}
Return

  

With Transparency:


#SingleInstance Force

Joy1::
if GetKeyState("Joy3")
if GetKeyState("Joy5")
if GetKeyState("Joy6")
Goto, shut_down
Return

Joy3::
if GetKeyState("Joy1")
if GetKeyState("Joy5")
if GetKeyState("Joy6")
Goto, shut_down
Return


Joy5::
if GetKeyState("Joy1")
if GetKeyState("Joy3")
if GetKeyState("Joy6")
Goto, shut_down
Return

Joy6::
if GetKeyState("Joy1")
if GetKeyState("Joy3")
if GetKeyState("Joy5")
Goto, shut_down
Return

shut_down:
{
KeyWait, Joy1

CustomColor = EEAA99
Gui, +LastFound +AlwaysOnTop -Caption +ToolWindow 
Gui, Color, %CustomColor%
Gui, Add, Picture, ,Shutdown.png
WinSet, TransColor, %CustomColor% 
Gui, Show
Loop 
	{ 
		Loop  
		{
			If GetKeyState("joy1")
			{
			shutdown, 5
               		}
		
		else
			If GetKeyState("joy2") 
			{	
			Gui, Cancel
			Return
			}
		}
	}
}
Return

Transparency.thumb.png.5800f394ddd5faf72e03b4cccf86a8dd.png

Normal.thumb.png.0e1e9033d0112f8e4dc7a5601db1a505.png

Obviously my artwork could use some work. Its just a png. Name the png Shutdown.png and store it in the same directory as the script.

Hi, I have used your script to pop up an exit dialog when I want to quit a game. One question though: When the dialog is called it will minimize a game instead of displaying over the game. Is this what you are experiencing? Is there a way around it?

Edited by isilkin
Link to comment
Share on other sites

On 12/15/2018 at 5:32 AM, isilkin said:

Hi, I have used your script to pop up an exit dialog when I want to quit a game. One question though: When the dialog is called it will minimize a game instead of displaying over the game. Is this what you are experiencing? Is there a way around it?

I dont use this anymore as we can now shutdown through Bigbox. It might have something to do with the emulators being in full screen mode. But to be honest Im not entirely sure. Sorry I cant be much help. 

Link to comment
Share on other sites

My apologies if this has been solved/answered before, but I haven't found the answer, yet.

Is there a script to make the Mupen64plus core in RetroArch start with the GL graphics driver when starting an N64 game?

Thanks

Edited by radio5
Link to comment
Share on other sites

On 12/17/2018 at 12:04 PM, jayjay said:

I dont use this anymore as we can now shutdown through Bigbox. It might have something to do with the emulators being in full screen mode. But to be honest Im not entirely sure. Sorry I cant be much help. 

It would still be nice to have a dialog before exiting the game like consoles do. Oh well maybe one day front ends will be more console like. Also I have done some research and it is very difficult do create such a script with autohotkey to be universal for all games and emulators. Someone smarter than me has to do it.

Link to comment
Share on other sites

On 12/17/2018 at 12:04 PM, jayjay said:

I dont use this anymore as we can now shutdown through Bigbox. It might have something to do with the emulators being in full screen mode. But to be honest Im not entirely sure. Sorry I cant be much help. 

I agree with you but I think there maybe a workaround. I used to run Maximus arcade. I know I know it is old. But it ran all emulators within itself sort of like a sandbox so it had the ability to exit games easily and it had control over any opened window bc it was a parent to it. Again it is beyond my coding skills.

Link to comment
Share on other sites

  • 2 months later...

Does anyone know how to set a two button close AHK script for keyboard?

Right now I'm using this and it works, It would be nice to have a two button toggle if possible.

; This section closes Sega Model 2 Emulator when pressing Escape
$p::
{
    Process, Close, {{{StartupEXE}}}
}

 

Link to comment
Share on other sites

54 minutes ago, Morris95 said:

Does anyone know how to set a two button close AHK script for keyboard?

Right now I'm using this and it works, It would be nice to have a two button toggle if possible.

; This section closes Sega Model 2 Emulator when pressing Escape
$p::
{
    Process, Close, {{{StartupEXE}}}
}

 

You can try this:

 

~1 & 2::
{
    Process, Close, {{{StartupEXE}}}
}

 

(Being the ~ symbol the way of telling the system that does not matter the order in which you press them, and 1 and 2 the buttons you want to press at the same time)

 

Link to comment
Share on other sites

It worked!!! Thanks for the quick reply, I have a Alpha-Cade cab with a x64 pc in my build, this will come in handy, because i don't want any accidental game closures from players pressing only one button to close the game. My script for one of my emu's looks like this..

; This section closes Sega Model 2 Emulator when pressing Escape
~p & o::
{
    Process, Close, {{{StartupEXE}}}
}

Link to comment
Share on other sites

On 8/10/2017 at 2:31 PM, Omen said:

This will put CxBx Reloaded into full screen after launching. You can change the app title to whatever you want, to make it work with other emulators.


#NoEnv

WinWaitActive , Cxbx-Reloaded
SetKeyDelay, -1, 110
Send {Alt Down}{Enter}{Alt Up}
Return

 

Hey, thanks for this, but for some odd reason this only works once in a while for me, and whenever it does launch full screen it takes the sound out lol. I can live with no sound atm bc it might have to do with my UHD630. Its weird though, it is like a random chance that it will launch full screen but most the time still get a small window..  Any idea?

Also, do you know an ahk to close the emulator with ESC key?

Edited by eirrocmh
Link to comment
Share on other sites

2 hours ago, JoeViking245 said:

Thought the window becomes active, it may need a second to accept input.  Try it with a slight pause.


#NoEnv

WinWaitActive , Cxbx-Reloaded
Sleep, 1000  ;1000 = 1 second
SetKeyDelay, -1, 110
Send {Alt Down}{Enter}{Alt Up}
Return

 

Shit! Worked! Lol thanks a ton that was buggin the hell out of me. Appreciate the help :)

(Ps Let me know if there is an AHK for closing cxbx in the future, thanks!)

  • Like 1
Link to comment
Share on other sites

So lads, lets get the phoenix multi emulator running today we have the Rocketlauncher Examples AHK's here how to run. What I need is help converting these AHK scripts to work within launchbox for 3DO Interactive and Atari Jaguar.

 

Since Phoenix cant be CLI-Command we need to have 2 seperate copies one for Jaguar and one for 3DO

 

3DO

MEmu := "Phoenix"
MEmuV := "v1.1"
MURL := ["http://www.arts-union.ru/node/23"]
MAuthor := ["djvj"]
MVersion := "2.0.4"
MCRC := "BD4A0D04"
iCRC := "104E182B"
MID := "635034268914342592"
MSystem := ["3DO Interactive Multiplayer"]
;----------------------------------------------------------------------------
; Notes:
; This emu only supports iso images
; Set SelectGameMode if you have any problems with the emu opening the game
; If your bios file is called fz10_rom.bin, rename it to fz10.rom, it should be placed in the same dir as the emu exe.
; On first launch, Phoenix will ask you to point it to the fz10.rom. After you do that, exit the emu and select a game in your Front End and it should work.
; If you do not have an English windows, set the language you use for the MLanguage setting in RocketLauncherUI. Currently only Spanish/Portuguese is supported.
;
; Phoenix stores its config in the registry @ HKEY_CURRENT_USER\Software\FreeDO\FreeDO Emulator
;----------------------------------------------------------------------------

StartModule()
BezelGUI()
FadeInStart()

Fullscreen := moduleIni.Read("Settings", "Fullscreen","true",,1)
ControlDelay := moduleIni.Read("Settings", "ControlDelay","20",,1) ; raise this if the module is getting stuck somewhere
KeyDelay := moduleIni.Read("Settings", "KeyDelay","-1",,1) ; raise this if the module is getting stuck

dialogOpen := ("dialog.open") ; Looking up local translation

If bezelEnabled
BezelStart(If Fullscreen = "true" ? "" : "fixResMode")

;hideEmuObj := Object(dialogOpen . " ahk_class #32770",0,"Phoenix ahk_class Qt5QWindowIcon",1) ; Hide_Emu will hide these windows. 0 = will never unhide, 1 = will unhide later
7z(romPath, romName, romExtension, 7zExtractPath)

SetControlDelay, %ControlDelay%
SetKeyDelay(KeyDelay)

If romExtension in .7z,.rar,.zip
ScriptError("Pheonix does not support archived or cue files. Only ""iso"", ""img"", and ""bin"" files can be loaded. Either enable 7z support, or extract your games first.")

HideEmuStart() ; This fully ensures windows are completely hidden even faster than winwait

; Your XML file to be altered in a variable
FileRead, xml, %emuPath%\phoenix.config.xml
romPath2 = %romPath%/%romName%%romExtension%
romPath3 = %romPath%
StringReplace, romPath2, romPath2, \, /, UseErrorLevel
StringReplace, romPath3, romPath3, \, /, UseErrorLevel

If (!StringUtils.Contains(xml,"</CD-ROM>","CD-ROM")) {
ScriptError("You don't have any games stored in phoenix.config.xml")
}



; Use regex to setup the game to load
ToReplace =
(
<CD-ROM [^>]*
)
Replacement =
(
<CD-ROM expanded="true" attach="%romPath2%" last-path="%romPath3%"
)
xml := StringUtils.RegExReplace(xml,ToReplace,Replacement )

FileDelete, %emuPath%\phoenix.config.xml
FileAppend, %xml%, %emuPath%\phoenix.config.xml

Run(executable, emuPath)
DetectHiddenWindows, on

WinWait("ahk_class Qt5QWindowIcon")
WinWaitActive("ahk_class Qt5QWindowIcon")
;WinMenuSelectItem, ahk_class Qt5QWindowPopupDropShadow,, 2&, 1&

Send, {Alt}{Right}{Enter}{Enter} ; power on roms

If Fullscreen = true
Send, {F11} ; fullscreen

Sleep, 1000

BezelDraw()
HideEmuEnd()
FadeInExit()
Process("WaitClose", executable)
7zCleanUp()
BezelExit()
FadeOutExit()
ExitModule()

CloseProcess:
FadeOutStart()
WinClose("ahk_class Qt5QWindowIcon") ; Removing Phoenix from the title because the emulator shows statistics in the title while a game is playing
Return 
Jaguar

MEmu := "Phoenix"
MEmuV := "v1.1"
MURL := ["http://www.arts-union.ru/node/23"]
MAuthor := ["djvj"]
MVersion := "2.0.4"
MCRC := "BD5A0D04"
iCRC := "109E182B"
MID := "635038268914342592"
MSystem := ["Panasonic 3DO","Atari Jaguar"]
;----------------------------------------------------------------------------
; Notes:
; This emu only supports iso images
; Set SelectGameMode if you have any problems with the emu opening the game
; If your bios file is called fz10_rom.bin, rename it to fz10.rom, it should be placed in the same dir as the emu exe.
; On first launch, Phoenix will ask you to point it to the fz10.rom. After you do that, exit the emu and select a game in your Front End and it should work.
; If you do not have an English windows, set the language you use for the MLanguage setting in RocketLauncherUI. Currently only Spanish/Portuguese is supported.
;
; Phoenix stores its config in the registry @ HKEY_CURRENT_USER\Software\FreeDO\FreeDO Emulator
;----------------------------------------------------------------------------

StartModule()
BezelGUI()
FadeInStart()

Fullscreen := moduleIni.Read("Settings", "Fullscreen","true",,1)
ControlDelay := moduleIni.Read("Settings", "ControlDelay","20",,1) ; raise this if the module is getting stuck somewhere
KeyDelay := moduleIni.Read("Settings", "KeyDelay","-1",,1) ; raise this if the module is getting stuck

dialogOpen := ("dialog.open") ; Looking up local translation

If bezelEnabled
BezelStart(If Fullscreen = "true" ? "" : "fixResMode")

;hideEmuObj := Object(dialogOpen . " ahk_class #32770",0,"Phoenix ahk_class Qt5QWindowIcon",1) ; Hide_Emu will hide these windows. 0 = will never unhide, 1 = will unhide later
7z(romPath, romName, romExtension, 7zExtractPath)

SetControlDelay, %ControlDelay%
SetKeyDelay(KeyDelay)

If romExtension in .7z,.rar,.zip
ScriptError("Pheonix does not support archived or cue files. Only ""iso"", ""img"", and ""bin"" files can be loaded. Either enable 7z support, or extract your games first.")

HideEmuStart() ; This fully ensures windows are completely hidden even faster than winwait

; Your XML file to be altered in a variable
FileRead, xml, %emuPath%\phoenix.config.xml
romPath2 = %romPath%/%romName%%romExtension%
romPath3 = %romPath%
StringReplace, romPath2, romPath2, \, /, UseErrorLevel
StringReplace, romPath3, romPath3, \, /, UseErrorLevel

If (!StringUtils.Contains(xml,"</CARTRIDGE>","CD-ROM")) {
ScriptError("You don't have any games stored in phoenix.config.xml")
}



; Use regex to setup the game to load
ToReplace =
(
<CARTRIDGE [^>]*
)
Replacement =
(
<CARTRIDGE expanded="true" attach="%romPath2%" last-path="%romPath3%"
)
xml := StringUtils.RegExReplace(xml,ToReplace,Replacement )

FileDelete, %emuPath%\phoenix.config.xml
FileAppend, %xml%, %emuPath%\phoenix.config.xml

Run(executable, emuPath)
DetectHiddenWindows, on

WinWait("ahk_class Qt5QWindowIcon")
WinWaitActive("ahk_class Qt5QWindowIcon")
;WinMenuSelectItem, ahk_class Qt5QWindowPopupDropShadow,, 2&, 1&

Send, {Alt}{Right}{Enter}{Enter} ; power on roms

If Fullscreen = true
Send, {F11} ; fullscreen

Sleep, 1000

BezelDraw()
HideEmuEnd()
FadeInExit()
Process("WaitClose", executable)
7zCleanUp()
BezelExit()
FadeOutExit()
ExitModule()

CloseProcess:
FadeOutStart()
WinClose("ahk_class Qt5QWindowIcon") ; Removing Phoenix from the title because the emulator shows statistics in the title while a game is playing
Return 

 

The Phoenix XML itself which dictates what to run

 

<?xml version="1.0" encoding="utf-8"?>
<root Platform="3DO">
    <Settings current="3">
        <Global>
            <Platform-3DO>
                <Input hide-cursor="false">
                    <Device name="Joy">j5a6@0@-1,j5a6@0@1,j5a5@0@-1,j5a5@0@1,j5b2,j5b0,j5b1,j5b6,j5b7,j5b4,j5b5</Device>
                </Input>
                <Options>
                    <Item index="Render" value="0" />
                    <Item index="Video Mode" value="0" />
                    <Item index="Low Accuracy" value="false" />
                    <Item index="Post CCB" value="false" />
                    <Item index="ARM Scale" value="0" />
                    <Item index="Multy Task DSP" value="false" />
                    <Item index="Multy Task CEL" value="false" />
                    <Item index="CD-ROM Speed" value="0" />
                    <Item index="CEL Rate" value="0" />
                </Options>
            </Platform-3DO>
            <Platform-Jaguar>
                <Input hide-cursor="false">
                    <Device name="Joy">j4a6@0@-1,j4a6@0@1,j4a5@0@-1,j4a5@0@1,j4b2,j4b0,j4b1,j4b7,j4b6</Device>
                    <Device name="Joy">j7a6@0@-1,j7a6@0@1,j7a5@0@-1,j7a5@0@1,j7b2,j7b0,j7b1,j7b7,j7b6</Device>
                </Input>
                <Options>
                    <Item index="ThreadedDSP" value="false" />
                    <Item index="ThreadedGPU" value="false" />
                </Options>
            </Platform-Jaguar>
        </Global>
        <Video keep-aspect="false" vsynk="false" exback="false" borders="false" screen-shader="0" texture-filter="0" texture-script="0" fbo-scale="1" texture-scale="1" screen-shader-proc="" texture-script-proc="" />
        <Audio swap-chennels="false" volume="100" />
        <Others key-frame="1" no-autosave="false" />
        <Window>
            <Geometry>01d9d0cb00010000000003940000022d000006af000004090000039c0000024c000006a700000401000000000000</Geometry>
        </Window>
    </Settings>
    <Library>
        <Platform-3DO>
            <CD-ROM expanded="true" attach="F:/Roms/Panasonic 3DO/Blade Force (USA).bin" last-path="F:/Roms/Panasonic 3DO">
                <Dump path="F:/Roms/Panasonic 3DO/Alfred Hitchcock Presents (Japan).bin" size="55574528" fast-md5="9abfd0e553424a6b155b43835ea46763" md5="10392e1c1b14c504dfc00df94a20b44c" sh1="ddf628fced768d3df384155d475064002971482a" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/AutoBahn Tokio (Japan).bin" size="125829120" fast-md5="b4352ec3bb946c994834eb4b0da2ca16" md5="feca66bc083930abac08e1e462613768" sh1="258ddc1112cbefba2870a0f3dbf71fe4f95129e8" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Ballz - The Director's Cut (USA).bin" size="314572800" fast-md5="83b614c13fcdc4463c9cfe74d5683ba6" md5="eab847a7c5a38ad0b45c5c3b08a26500" sh1="a59359e60b66117f9c42c6a85b6db40a756ccfd0" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Alone in the Dark (USA).bin" size="367001600" fast-md5="4a91145d3aab63288bc74f4d32708df4" md5="778d7e1a92458b5461dca19c5d8a26d0" sh1="6ca5d0348da4e12cf3eec64b502ec9d1ddc3c909" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Guardian War (USA).bin" size="230686720" fast-md5="ba79d223d527fdce999dae458319cfad" md5="33ad6fcc14b990a54edb1c2125335cf2" sh1="4ee4f8831ff7009507a9bda7232faf1ed65c2f4d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Mad Dog McCree (USA).bin" size="367001600" fast-md5="af4c83bc97ace22bc9d60f130f4ee673" md5="a2dbe53f8bd0f614ec191a1c7c28234a" sh1="5b5cc7eb667e918ee3eb8888595b0e1346b00c32" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Lost Eden (USA).bin" size="668991488" fast-md5="19d6a7469cc53ec31cd8bbb2e7f1aef3" md5="44301d125a417670b404fee53c7dd0f4" sh1="87a7fad7985a1278ab323cb733fca13bd7830b8b" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Syndicate (USA).bin" size="112197632" fast-md5="69ae8cd93ece1cfb43a0c88d69aaff0b" md5="bb96962eeafded7722d10d09720f8157" sh1="d3eecc4a9e3f6b1a93554ebe713d76a355f9f933" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/3D Atlas (USA).bin" size="671088640" fast-md5="c6ec879a1fede2456fc3a25f3728a250" md5="a2f26c6ae99605a0221367b2c8d8ed9f" sh1="c8c2284a8dba9a0a7d31255d86eb35263823151f" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Alone in the Dark 2 (USA).bin" size="587202560" fast-md5="fee6b559ecb4b9935b4469cfc7503696" md5="4400a53ec851f1e89113a3b18c21bebd" sh1="fb9e60852e11d092f8390aaba32fb4b6dd68b4ab" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Bust-A-Move (USA).bin" size="143654912" fast-md5="42499dcb01e86f25ef455ca049c99a75" md5="b8b27e26462c82f74654488d2c7a5cd0" sh1="64a78c9031bdbf682e07dab2f86f94a0d6928445" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Armageddon (Korea).bin" size="608174080" fast-md5="db66b9a73111cbdd5d97b9b8ee6f8032" md5="381322a1f9c95c6485ce492d528cc5d8" sh1="df85fbd67ac5a20816f86821e4cf6ed3efb06e84" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Putt-Putt's Fun Pack (USA).bin" size="83886080" fast-md5="1c0f6e88fa6f05088566332cb216cbd0" md5="b5553c1db276b74dcf3a98e9532fdd04" sh1="eb5163c5c953e015061cf7274b1a63ab15005570" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Super Real Mahjong PIV + Aishou Shindan (Japan).bin" size="157286400" fast-md5="3e9574ec8db09188bded9929ec125875" md5="a08d06ce47774c232d4a0d998417ecc5" sh1="395829eb34248d5b88c78b28c6d5e35806d7b5d7" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/20th Century Video Almanac (USA).bin" size="670040064" fast-md5="3134ce4a4ce6ba63a686941aa5f99658" md5="7c174d9a9a5a04fa2a15d7decaf8cac7" sh1="2fb1f1381df1fe783b5af00796557b09b472e4c8" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Super Real Mahjong P.V (Japan).bin" size="471859200" fast-md5="292857c8e796c183e4cee3b7890e2b7c" md5="d702d9e9609544dcc060af2529973e55" sh1="2fafb436a75332a8bfd65f9b9ecbf41d4cc74f6b" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Mad Dog II - the Lost Gold (USA).bin" size="565182464" fast-md5="8c134dbd4c26573e1758c56ffc39a9ef" md5="0b2f725e219fb5cee73f3b5a2023f4a7" sh1="d046f88b0faaa6d98730c66fb4370de1da056433" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Corpse Killer (USA).bin" size="655360000" fast-md5="cede7aec799aacd4b40cde104254b5f8" md5="d3224e05cbb9aed893f2a7f2c3ef002d" sh1="c04a49d21ebdb9af15ccb22c429cfaaa636ba5c7" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Virtuoso (USA).bin" size="367001600" fast-md5="9eafe563c7ab3041fdb6526d3d725495" md5="24d1143cb80a6ffff3add7fa1423c2de" sh1="8f2b2769077724710ff2216855e6069bce8b2e03" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Total Eclipse (USA).bin" size="367001600" fast-md5="8533b42ba00eb63d633db0c8087e08c6" md5="239fc22fd4a12f55fdce7d3f09284608" sh1="880e054d0745704e97f027cdba7709fcecd18ca6" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Horde, The (USA).bin" size="671088640" fast-md5="f7ecb965b86a334108eabbdc42b152ed" md5="70e5839f9e2025eca8f5b9ba99be53c5" sh1="c294065258c12002f0ce3358785292d3e418440e" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Waialae Country Club (USA).bin" size="398458880" fast-md5="2a898b67c672c262afb03897b62f9455" md5="2033c5f81e17619936bc72190589d06a" sh1="b46b0787e2ce0a6bfae3b4fb1d4b814b4bafc480" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Royal Pro Wrestling - Jikkyou Live!! (Japan).bin" size="419430400" fast-md5="769c70ea4828c9cb241a456f78e16aa1" md5="cb7d39b00b8dc24f6e861dde254b7961" sh1="e2d70408604627c33e6792661e05a726a04cdbe8" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Insect War (Japan).bin" size="356515840" fast-md5="d2606583afc54b7ad007104f3a7af0d8" md5="27185ead0a2195529124d7412e11cc12" sh1="bf85a3639da249ae324cd169a2d3f01baae2d9ba" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Olympic Soccer (USA).bin" size="570425344" fast-md5="3662df6e338d67ba042cadc1d0a9ccb9" md5="8025a89c1460bf99b6f4ea51d142a488" sh1="001cfe2359aea7b85e20badf6d97a83258db5b57" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Mathemagics - An Interactive Learning Cube (USA).bin" size="650117120" fast-md5="1e4cd3c506a38a6f4308d16872e3c330" md5="5926b10171d5f5ffa19daf7443cb6125" sh1="410966dfa849eabb8ccf0a215ac24d13251673f4" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/World Cup Golf - Hyatt Dorado Beach (USA).bin" size="671088640" fast-md5="f8af313e2402690540c58d2106bfee08" md5="4b59c4a112793dab795d10f2ac10f29d" sh1="53d13fcdb82f4d3c2ec4a733ae7fe360fb5b1735" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Oyaji Hunter Mahjong (Japan).bin" size="560988160" fast-md5="0b84f2e88f05485c4a641484d96e40e3" md5="269c3a8dd164e79d81c94e2e00e0288f" sh1="d73412fcf700be9f91a0f347005374afb493fb72" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Masters Harukanaru Augusta 3 (Japan).bin" size="645922816" fast-md5="f7a329db2db11edc0349261b03a12161" md5="8ddd01f74d735f5aece563b2a9188faf" sh1="da82a2fed43809b4e34fc1993b25ae7e40e35628" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/MegaRace (USA).bin" size="671088640" fast-md5="7a50214f8606150677800f9dc18e4ad6" md5="43ae0b41df51bb04ae15a8912573693d" sh1="7341c056545e1fc00dbd92cf48d6128cc3ca1f75" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Peter Frankl - Puzzle no Tou (Japan).bin" size="427819008" fast-md5="8e007721c9ebbdcf88842d5360a39d51" md5="40b9b2b42b60ab153d64affece418306" sh1="a0493bb96e87c47130808c59a624232341962f67" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Supreme Warrior - Ying Heung (USA) (Disc 2).bin" size="671088640" fast-md5="ceb214f457ba588402392034230c4da8" md5="985c9c468c7612a10624d96327cf6f7c" sh1="676ec2f3ecf76efd44114b15017ba295dc17626a" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Dragon Tycoon Edge (Japan).bin" size="675282944" fast-md5="e1a30804071432af207e954415c553a7" md5="610c03717f251b23bc1ec4602aaedb98" sh1="0100d962edd5406a7e4a99e80ce743dd794e7092" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Cyberdillo (USA).bin" size="178257920" fast-md5="5e7d25994e235f6e4876ff7777aac97a" md5="d97c9164b9d66c1fbae43cf43f43c974" sh1="6937ecaedd5dc82b2193862fb10e1ba0d5095b1b" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Cowboy Casino - Interactive Poker (USA).bin" size="272629760" fast-md5="cc2b7c85ec788ff0bdcb23b99c8cfd93" md5="8c6bd42b1c6e32bf56c57db02bd98291" sh1="18b2dbe6b376970fd8ffaff972c33beb8212dd30" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Theme Park (USA).bin" size="197132288" fast-md5="7e1a1ad141404a689616fb31f2cbeb87" md5="60654992d7724200b919cc62c3eeea19" sh1="6f485ab275996fa8e2d01cb991d226aa131135cf" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Drug Wars (USA).bin" size="598736896" fast-md5="f35ef2fefadfbe9c1f32a159eee11d32" md5="795866e69715101acf259f95f457bc1b" sh1="d32d73b05d75a96ff60574be93d8bd78444d1788" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Family Feud (USA).bin" size="440401920" fast-md5="14b79a1fdbdabcc1b5c53580ecfe58dd" md5="ddeeea38acddf76a18178ca7ea73c63d" sh1="4a29bb2e0ba9c1b5e203a502647a98dab10fe7e4" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Soccer Kid (USA).bin" size="555745280" fast-md5="b3b3b0851831c7d02799552f5ad56a58" md5="bc2a7f493038fcb93d486d4dd5990d4f" sh1="0d2e59d8b800d0a3fb5b9080d5faa6f0b4571875" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Star Fighter (USA, Europe).bin" size="461373440" fast-md5="dd0e743d51d0b3d8692fe1397f5f4eb7" md5="f4ad083479786660306c3522e000dffe" sh1="d9ea068fd3a218c49f673f6eef7c0cef73f1f399" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Mahjong Kyou Jidai - Cogal Houkago Hen (Japan).bin" size="524288000" fast-md5="b0ffabb0237565ea18e4c849a2033e4d" md5="0a58aa43dda478c73bea77b0f5cd683b" sh1="6cdac381bcca816d9b7744aad11016fb72f09bed" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Fatty Bear's Birthday Surprise (USA).bin" size="83886080" fast-md5="3088f27462ebef01c179011bb1baed4c" md5="040a06398c9209ef518c43efbba949a4" sh1="088eae518bdf72f63bb9fbfb63257dc2772ef645" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Who Shot Johnny Rock (USA).bin" size="435159040" fast-md5="241e0505b3090158fd5fd9e3b371c731" md5="2197d49b517ede680de5941974c7ae51" sh1="3fbc5a135c0df5aa665fd4136d969c709b584908" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/F1GP (Japan).bin" size="244318208" fast-md5="27716dd1384e637ae36543bc5937ffbe" md5="13656ccd23edac2cd535b9c49342c009" sh1="277396859773dd3d69747bcad47c42dd98c5754a" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Battle Blues (Korea).bin" size="608174080" fast-md5="c9d19d40ce7fd5b0fcff5cc05c410995" md5="86c61b8e5a3ae42432b15876736f8828" sh1="b08d65fc26321a8190f5d05ee3e3b0b92b2b85f8" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Iron Angel of the Apocalypse (USA).bin" size="377487360" fast-md5="633f0f944a0051c6759952f06f830f06" md5="ed902a9a93ac559e8ef8d02f23921e7e" sh1="34495837686f2e3319d373617bac7bc159056e7e" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Space Hulk - Vengeance of the Blood Angels (USA).bin" size="419430400" fast-md5="980844a6cc26882a46a316fda3530e25" md5="e99b4b71e6459b00e463ed40dfadaf24" sh1="7f9ec83befcb66bf612f613fef878c9c18da511a" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Shadow - War of Succession (USA).bin" size="241172480" fast-md5="dfd61643cdf9ba4cad3197a74f65d8d6" md5="06ff8322bbb6c27a8f635f01a0e555c7" sh1="fb3189cfbf441ff92fa65ad17b519e31753496d7" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Plumbers Don't Wear Ties (USA).bin" size="616562688" fast-md5="0f7964b1d53111fc1b14b35f6641890c" md5="7172b42ceb9bf6dac50359edf7c6c9d2" sh1="8ece2d5007249f6343edeee426bb584ec51278e2" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Jurassic Park Interactive (USA).bin" size="398458880" fast-md5="2536bf786f05af221038313a3e28f9aa" md5="e5b82bf783cbfbb23993513d1830b7b9" sh1="8898f3ef18d008f7ae68bf3c037f83c1a9c8dda8" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Lemmings (USA).bin" size="421527552" fast-md5="58c3ab9473f76c04d1e3cf3d543c2354" md5="b530f6252c3f60ea2b953f7746622ac8" sh1="52185793c7460eae9c8233964c7ca96453a014ba" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Shockwave 2 - Beyond the Gate (USA) (Disc 1).bin" size="655360000" fast-md5="8dafbd7eea92a62eaa2a3ddb069d13de" md5="5a4e20a62728d1b8641dcdf4a61e7739" sh1="1a52e62ae0a2109ef9f4eb5db6e4cf8b057bec32" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Ultraman Powered (Japan).bin" size="629145600" fast-md5="f196ed40611b0705d66b38ffd5292ffc" md5="077794987ff9e250050d6d1f20e70474" sh1="a332c671055f3c745d79973f0076fad049d9bece" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Night Trap (USA) (Disc 1).bin" size="675840000" fast-md5="517431f23c497ab0236d66bc78d8e089" md5="880f20738dd7bfc367d0d364aebd66c0" sh1="155c1539b84f6d6bd9e66b26f268b9ee474b5e37" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Fun 'n Games (USA).bin" size="580911104" fast-md5="6e15dafa581ea4218eeac9025a4e0f97" md5="9b00226bd99b82577c219c96819b92e5" sh1="50540184b7b1b23b55e12e94114fb81923f55e38" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Wing Commander III - Heart of the Tiger (USA) (Disc 4).bin" size="671088640" fast-md5="423cf51a1969e851fbd7f561027d3a95" md5="83750ad4826b6ce23f9f5b601d1363df" sh1="d267dbae023fe1223412464c5e1e1abb79fb0425" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Killing Time (USA).bin" size="675282944" fast-md5="6790c3c0f6f2f2978450f65500553fc4" md5="e222ed1389a44bca38983482ceddb422" sh1="f8d89d1d2265a040d47302181f7eee7992a25157" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Cannon Fodder (USA).bin" size="293601280" fast-md5="4c3f68906de390a6eabcabe1da85adb7" md5="a22efc07fbd188fff15a6834712346b4" sh1="666c81001ad7937ca3d4983d4fa59dfb1c17d8ae" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/DeathKeep (USA).bin" size="541065216" fast-md5="2454ed3f6cae6c14769539f78b14d8e0" md5="21ea82cf778869e71217fe73de4eafba" sh1="74938534b2cab994ed72316d4d84a85fcedc6a83" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Icebreaker (USA).bin" size="104857600" fast-md5="ea616642c9a7ce8084e3894d9a17e41f" md5="42919fa2139d52b00eadf33317eb27f0" sh1="10ecf5fb6181dc50850c77100d2fb67727a74497" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Onee-san to Isshoo! Shanken Paradise (Japan).bin" size="524288000" fast-md5="163940951478345e30c246e9cb7410d5" md5="a6f62a3aabe3aadb74824e5c7de77eb8" sh1="0ba3b33a964d9eacffb54d0bf23313b78d50b0b9" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Out of this World (USA).bin" size="335544320" fast-md5="4e0b0d6acbed1d0ac99d85ae8ff46ec3" md5="3f3e1b4e182559dbd51e8912b8c92544" sh1="ec503d4265e41cde9363ccf19aa0065958b1efed" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Wing Commander III - Heart of the Tiger (USA) (Disc 3).bin" size="671088640" fast-md5="93849f067efd679bd7cbc3f4021c951d" md5="cb5f9b73bc157ecbe36671769aee9cc9" sh1="14c5d9f2eb295e69fcd9c9570236c1ab07f77373" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Daedalus Encounter, The (USA) (Disc 3).bin" size="671088640" fast-md5="a53d3b4f158f36da6307494edaa5b400" md5="645deb855b28875b31dc5c134913e987" sh1="cbde55b554d4b220c782abb7f1e4885d80b404ae" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Gridders (USA).bin" size="503316480" fast-md5="2127cbbb16cd5579d8c0691a6dd570ef" md5="2f155b299a12b91b0e7f727d5c9012de" sh1="fb86215fefaa401ef4c052913c0cd28a9a3c07cd" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Incredible Machine, The (USA).bin" size="406847488" fast-md5="f9b04c8303a0efb28247048ad6c2114f" md5="4b814a50e1a2c44cd83d80de03c0b65d" sh1="042fd2ff09da70367be85b78d797432918d183b6" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Demolition Man (USA).bin" size="460324864" fast-md5="1875ea260f7828e5ee62c13624cc986c" md5="31804e416121a264de3f7a90a4b7c35f" sh1="6542e3d7413474395b2f2fa311fef580ed5d9f44" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Crayon Shin-chan - Puzzle Daimaou no Nazo (Japan).bin" size="335544320" fast-md5="90d25ff67e3100dd254293dff1348965" md5="bf6a2b28e454d296987ea1550c7e1e7b" sh1="64d5c1a844edbea456448d9f09a2f8130208cf1c" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Wing Commander III - Heart of the Tiger (USA) (Disc 1).bin" size="671088640" fast-md5="619f78b38459950aeed8e9c66bd9d943" md5="3d06fa288c0cf640f1309dc64949dfaf" sh1="e3d0afc6a5a19f6af4f5626d5757f165baf2b3a3" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Wing Commander III - Heart of the Tiger (USA) (Disc 2).bin" size="671088640" fast-md5="565a8bec94f18908181815922de00473" md5="f1826f4f7b5dbae6d48ebe65dacd3f44" sh1="b3030b013baf87cb2c77e57c7664364ea3ad77f1" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Perfect General, The (USA).bin" size="367001600" fast-md5="3faf8a9073a7f976c5293a6c8a922865" md5="3cde33e6b8f8fab6feee98e8b687d954" sh1="e85ac3716345e4d5fa296624e864e73c05d87a80" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Space Shuttle (USA).bin" size="512753664" fast-md5="00b239536be8eec88ad94ffcf79f72a5" md5="e9241ab14beb9d12f399730f00b21dfd" sh1="8c5e6a5997d4cac1bfa552f51ffe795ba3b6d0e2" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Quarantine (USA).bin" size="110100480" fast-md5="04dc0cfc325f515435adbd844c76433f" md5="74aee79b50db5e9d0251b06b8d38f670" sh1="634683e14c67f43b04520a190e85a176c159bf9d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Samurai Shodown (USA, Europe).bin" size="498073600" fast-md5="8afbd3d09fce4744b35c39f3d2eb5fc8" md5="44fe5bbdef41a93299539d3ee8d74892" sh1="24ec2b20e1da56494761d970d031abecb7fcb1f9" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Tokimeki Mahjong Paradise Special - Koi no Tenpai Beat (Japan).bin" size="671088640" fast-md5="35d9f010f11d5bc951150b9bd910ec82" md5="194b10989f6cbb6c63ffee156fdac91a" sh1="103ca3692053fe62f6ed39c6efa8aa49e082731d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Sesame Street - Numbers (USA).bin" size="650117120" fast-md5="7b6ce88a80dbaf62e938f5104a2b973e" md5="9460ff3f364207950c489ba336afa69e" sh1="e8df73070d60f3079d9b42040aa0bbd39b450755" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/J-League Virtual Stadium '95 (Japan).bin" size="199229440" fast-md5="1d973d457358e0e0910927cccba1cc58" md5="d5b0a1ad987750cec8b469b73782fb4e" sh1="f1dbb0adf3f2f339f588d9b02aba684b459ff981" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Twinkle Knights (Japan).bin" size="671088640" fast-md5="23ebda661add7c664616669faeb3916a" md5="fb30faa9f2c10e1f300923a2b82ad7f9" sh1="504c8e60861918b527439e99b5682a8b34fc1d7d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Star Wars - Rebel Assault (USA, Europe).bin" size="461373440" fast-md5="163aebcb043c325aaa5426e01b56e6a9" md5="04249e2430a40e27a79e3178ecdebec8" sh1="eb46b9aead20ec309a3f9ce8b55baea89db75a1c" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Belzerion (Japan).bin" size="524288000" fast-md5="8f35e75d0ea2f598d5d6da21dd55a50c" md5="d4bc566d1fc371aa1ed899f157a7aacd" sh1="ba50477dfd330969c51730af8a2c46c1c3069926" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Trip'd (USA, Europe).bin" size="85983232" fast-md5="b82ea27043a3cdf41096825ad6db143a" md5="3b61d7b367526bb2d0f0f511291ccbd8" sh1="8660e596ede247eb3bcc65af7cfa96666f43b7fb" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Shelley Duvall's It's A Bird's Life (USA).bin" size="351272960" fast-md5="fb5f3d8ca3b85560e8622bc4a522ac31" md5="d1242379e24256f0cc51e91c904f691b" sh1="eb89135f96bf085864693333070c5b052fb3090f" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Dragon Lore - The Legend Begins (USA, Europe) (Disc 2).bin" size="675840000" fast-md5="bbcca0884f449d123c2ee5c539608637" md5="a921792137bd9ba44921445d92769849" sh1="425e977bf52cd37e858bf6a4c7357a0db2e9d05e" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Phoenix 3 (USA).bin" size="629145600" fast-md5="0da811a327361f9a3d7dca63ad503f30" md5="3f528b58196799791876601dbd2fd863" sh1="a3a466e2068cef7716468195e6793063b34d2318" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Battle Pinball (Japan).bin" size="146800640" fast-md5="85290433351ec147eb38662bc3053f2b" md5="a37f613cfa5872699aeb66eb52fabb7c" sh1="2660311e974697c4c239cf3ba2ff899233262cf4" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Myst (USA).bin" size="650117120" fast-md5="7943ab5e6d9d45bd6ce7c44603809517" md5="b47198692ed04109e1631e7909d16127" sh1="662ebe50faeab06858975e548ae2cdb465898a70" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Space Pirates (USA).bin" size="622854144" fast-md5="88e054529eacab265bb0da5042c93319" md5="bb648e86dc08525f4ac5baf2aa09d338" sh1="3bd626b1ad39375232036b65c68486be680ebe18" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Toon Time...in the classroom (USA).bin" size="671088640" fast-md5="dc6bd9729e50c670d9e0bbfa2e21b50c" md5="5d54e46aceb0168fd52d6c6f12a80f00" sh1="e8e72fcea27a2fdcc8935f32c95bfdfb6e3e1484" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/FIFA International Soccer (USA).bin" size="618659840" fast-md5="364218bcc7d5b4ab621f26aaaef2c8e0" md5="72695e892cf4a8d2b3aea5fbf262136b" sh1="1cfb76c16cfb2b7e94c9d93e06b8b0b7cb2c7bfc" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Space Ace (USA).bin" size="419430400" fast-md5="6782a1099e48614d2dcc3b8b432cc37b" md5="1c58d336395d8345c8ef4292ba281e7b" sh1="bd959b4d808b09783578df5d349580a286f30082" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Shockwave - Operation JumpGate (USA, Europe).bin" size="314572800" fast-md5="4ac927e8eacddcf4ad686a29f63ba478" md5="fa6fb138bb5b8a449e6b8b571c782a44" sh1="bac2b1161880b98e956ab9fd52ca11cb42685428" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/PGA Tour 96 (USA).bin" size="629145600" fast-md5="db14520917bdbfdc6074f9e53852f6e3" md5="d0bdb99fd5e659403d4e26b66df0d09f" sh1="dded23e801922621229a6cd0be577e845de74d3e" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Pyramid Intruder (Japan).bin" size="482344960" fast-md5="92665180ce2cdee4aef0aae5127756fe" md5="5e2a7680063a5f0fef0188de0c244218" sh1="031e9ff05980883aed8941948e234d1accc35df3" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Foes of Ali (USA).bin" size="199229440" fast-md5="303a2231e949c3a2b0e3ef4aa9bc9f1d" md5="0c076ae4cfd6222f8ec2e92a2b8390d6" sh1="f29e969d2cd6f1d286434c258db81e7386841ade" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/D (USA, Europe) (Disc 2).bin" size="487587840" fast-md5="b9e0500a8e403df65abc6dec43148088" md5="7caaac2bd822434d82c59753229f2dee" sh1="1a83f2fbf03dea011b71305d52a1131e5dfe3603" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Creature Shock (USA) (Disc 2).bin" size="671088640" fast-md5="e180d866d8413a6c4876471ab4148aa5" md5="fafa732689bfe8c4fe812fe8caff42a6" sh1="b5a341a7c4ba869b85a6f77e12f9419b7838f875" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Bishoujo Senshi Sailor Moon S (Japan).bin" size="597688320" fast-md5="37a28e000f0689362530e85370f509a7" md5="1a4369d9fd9cae9881c7fda11a1202ad" sh1="4b8c2121260935952006ce50a694a30da99150dd" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Flying Nightmares (USA).bin" size="629145600" fast-md5="861dd651c2f5e569ef9cd899437d8e0e" md5="e7b95e2e3a7a7681836e92ca7ebb6917" sh1="e338a745d1b4baab83efa3c5e5fa35f5e4634aba" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Brain Dead 13 Starring Fritz (USA) (Disc 1).bin" size="671088640" fast-md5="7ddb4ede3d64d872873107e55299d4c3" md5="e66820d2ba948443798fb1e54f5f16ad" sh1="7a29990c6cb254fa81d62ffc1ef8c66ae73842b9" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/PO'ed (USA, Europe).bin" size="419430400" fast-md5="85842da3d298ec346715b1748fa2d047" md5="506fdb057ed4cbbf0d253d6ca71bf0a3" sh1="99da3de99e90c6f26e6b48923c8aabf4d8da0991" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/NeuroDancer - Journey Into The Neuronet (USA).bin" size="629145600" fast-md5="aed7bbcc9a77cf961bdaa157ba4da4fd" md5="fb69c8c9a9d2f5b1276fc1cdfd6db15c" sh1="2de65ca78e8dc9dcbd6cbc8dc0f019cb012e790c" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Nice Body - All-Star Suiei Taikai (Japan).bin" size="272629760" fast-md5="a18af8501d68e344aec950bcbab9177a" md5="365ce224c826d0ef69fc322332e5820a" sh1="48314c360ef0f9d99402b5c465f3d5d8bcb0471a" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Star Control II (USA, Europe).bin" size="671088640" fast-md5="64d092ca8227cac13bf9a99f9220b12b" md5="b2d43c14331d10485dcd90adac2eba92" sh1="5c74536364cbcc5660d24b73c4ee56b0723a43b9" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Last Bounty Hunter, The (USA).bin" size="589299712" fast-md5="d3345245f978f76f9b5ec971559703c7" md5="8e087ae935f10f5d460481b568fb4319" sh1="fce1be2f128beb4e3b72624f797f5439ace42af9" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Furopon World (Japan).bin" size="404750336" fast-md5="b2c4e739ece5e46114e544834e174ec9" md5="ad0164b6983a53607f0efe4fd091218f" sh1="59cc3715c86d63f9e1c8a9d0e6f266a12ea51c16" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Kingdom - The Far Reaches (USA, Europe).bin" size="675282944" fast-md5="0808264a2496535c4b42783f5d01cdd9" md5="1770ac998a4bffa27190f91a5ab3a901" sh1="d28c4e60ed6cbf3a296c0fdd0546fa3f35675caf" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Blade Force (USA).bin" size="314572800" fast-md5="16e3144bdcc799b075fd4ca25488ebfd" md5="a9031dcc9e1bd7e894f6ebc90650d5df" sh1="ab57d7763e2cb84099d5a3f5287b5500df124ce5" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Strahl (USA).bin" size="660602880" fast-md5="5ed298b03929aa4cee72310c226bd8f5" md5="d158d3c0c1d38efcd0946a5b394bb1e9" sh1="de5f43191a143be1a7ad717ce7f324633d24545e" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Robinson's Requiem (USA).bin" size="314572800" fast-md5="f27715d5bf50558d2b9d45f78eb7d5b7" md5="8c51fbad5900607bfcc00ad8aaf76562" sh1="6bdd36ba025a157e91729cd2aeb7565f4d23b1ba" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Carrier - Fortress at Sea (USA).bin" size="629145600" fast-md5="c394eb5d4477470c552c67c037e88f0c" md5="67ad5bc5c58e1fc4ed5b0acd486a7f85" sh1="4b956b17b376bb34300ae8cb96d2abd5e19b6087" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Daedalus Encounter, The (USA) (Disc 2).bin" size="671088640" fast-md5="323a41ee7b395884696c767be14c710c" md5="03c7e35f8ffb6b0a1baa139bcd7dca44" sh1="f2708339aef78a5e6070a2b8ee6d5b693688544b" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Hello Kitty Asobi no Mochabako (Japan).bin" size="209715200" fast-md5="bebf3785ecc253c48c9d0f5012a1d75f" md5="132bbe5fc15d18d54f9e15d93c15cd62" sh1="b109fa3fd165119f2ba9b0dae95021681c87fd72" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Shootout at Old Tucson (USA).bin" size="125829120" fast-md5="c959ac859734a6f1ac887dce62790dea" md5="8ef6df3b70d02aa0d57ce7b445193c71" sh1="ccefad9023bda78502b3b48fa4b7db29d2cb6c39" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Gex (USA, Europe).bin" size="403701760" fast-md5="1b132b88b9db9a6461b20f145e0be918" md5="807837f47f999b1f6c2d3e2d2ca1d585" sh1="03eaf1fcf0e0f21699007ed1ca6acf30edac6eae" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Sid Meier's C.P.U. Bach (USA).bin" size="235929600" fast-md5="b2c1ada19a8918d549502e7c23b9c11e" md5="39d5f3c17698f3d8058515d112c56ff7" sh1="b19e24c5365b4ad1de5be34809a2d9fbfdd230b6" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Zhadnost - The Peoples Party (USA, Europe).bin" size="650117120" fast-md5="c8ba92399f69997114b91b077921c292" md5="3c4c8a644417e3d030fcc39ae7202127" sh1="9443ee8c11656c2f548b4f1566e2e95f50223a4d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/StarBlade (USA).bin" size="576716800" fast-md5="4028cd82f9e0528fcc2f9bb4f4f61e38" md5="125b267c7d9a821dab86c2cee29cce86" sh1="610a15d749b82c3707c0b6fca91fd165b4c6d2af" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Pro Yakyuu Virtual Stadium - Professional Baseball (Japan).bin" size="629145600" fast-md5="4f08f97da5d7f29333b342b03245f57f" md5="7f5c860a565117aefc91bb9604ae2ea3" sh1="f9c74a6d464f100c990b8cd5059bdfd0e6e81768" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Wolfenstein 3D (USA).bin" size="115343360" fast-md5="49ea525d2d2782be032fe646ee739c56" md5="88963cb0582def095fb04a3d2736502b" sh1="66491b1f563f0b9ce98eb13856e36d217ed592ba" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Shockwave 2 - Beyond the Gate (USA) (Disc 2).bin" size="655360000" fast-md5="5f0d251af8fed2b5ac301278a58e13c0" md5="2b3a921eacbf901ceb17660e103132af" sh1="4a86557a37fbf52b84116886c00f7f165f5379b1" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Digital Dreamware (USA).bin" size="440401920" fast-md5="a4438214a98dd83ca04f0a1f03791437" md5="0556b91c0977748f065b244b24141c74" sh1="c53839eff3e3c3f0062e94583951928050349478" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Onee-san to Isshoo! Kise Kae Paradise (Japan).bin" size="617611264" fast-md5="325017dc2f8d6eab6009210504798c49" md5="167d48b87923763be94407996110efcf" sh1="e3cb5b198a12ce2b2f84776e06be184a6df61bf4" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Daedalus Encounter, The (USA) (Disc 1).bin" size="671088640" fast-md5="99220440e20678fb8806ac002533a375" md5="797155d44602a87082d04170e0dd3a51" sh1="94611f0ffcbbf5918e3490dac906e2eff5076d8a" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Mahjong Kyou Jidai - AV Gal Seifuku Hen (Japan).bin" size="349175808" fast-md5="5e10cc58f8af401a2086add03b147271" md5="5eccdebaae93c264d07e47cc412286a5" sh1="3fb710ce06259339f91859395140fe14a579f093" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Striker - World Cup Special (Europe).bin" size="419430400" fast-md5="49ae24a0e25d3c8df690b310c46c3a2f" md5="73e8766a5b58238c1c7733eed319b454" sh1="cd684325def72a3f5ef59ac3b200c138abb25a05" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Super Street Fighter II Turbo (USA).bin" size="310378496" fast-md5="9e3dc60e51a3cf207e02c7ae021fc6ca" md5="cdce42335ea7e8e15aeea59b3785c4e9" sh1="20507edbca01d0f5c3f9426374d28fd1ddc2d995" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Return Fire (USA).bin" size="471859200" fast-md5="acc0d2b5a20f7d67ad17dca353e05820" md5="5c12ecaa8be6f55faa48766a0c862371" sh1="4a3bd00bb9cb116eedafcb137d61373827285c0d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Way of the Warrior (USA).bin" size="322961408" fast-md5="ef24e319d1d67c482023257c8e28c4dc" md5="f3845534641cb7b7f74795cbb8200ea4" sh1="f892370d2488934f7fdb1da86d1de384bea8103a" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Wicked 18 (USA).bin" size="406847488" fast-md5="8e6ea81134e642e779617fbf70bd5141" md5="a3b800b538c1fc79779afbfdd69d15f5" sh1="8cf894b42ec46a9e4d1a3b800d88413b09b198bc" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/PaTaank (USA, Europe).bin" size="513802240" fast-md5="499c648f02550e29ae530fe258d37dc6" md5="331df9d6538958a111c300f32b272cc2" sh1="5208ff3ab22c55d75aa2c0033526552c0202b780" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Seal of the Pharaoh (USA).bin" size="524288000" fast-md5="170c0fbbb4e888e6d1a2cee94b235519" md5="c7d404567c402c4e1a0c6bbfb4089eb7" sh1="c7902e42acca06c5256ca9a024b8e400ab41e970" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Uchuu Seifutsu Furopon-kun (Japan).bin" size="171966464" fast-md5="7b9ee90bdea51354cfd9d8ddd7429973" md5="8b60bcaf8db6d324302aaecfd67bab55" sh1="f7ca8da8da70619edf4af2a47d44dc70864cb539" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/VR Stalker (USA).bin" size="367001600" fast-md5="61b036c432ff315f01987872b6fb30bd" md5="6e26ca8ab1d6ea304a530be4171a1b08" sh1="07f8617e7abe954c011e43ef71853d9c2c115cf7" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Crash 'n Burn (USA).bin" size="629145600" fast-md5="5df7f21286290b2b4e9bd939f747f985" md5="0817f2357d8409394ba9c376bb299014" sh1="39b63ee81a8b04b7855a5b55cf554a9d32794d8f" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Slopestyle - An Interactive Learning Cube (USA).bin" size="629145600" fast-md5="e2572ffa99748df56f581dff2dbbad0e" md5="cb62f815616cb333d9b904d727fc319f" sh1="c93d1c3d57612e5d2d479572bbbda7986e977149" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Dragon Lore - The Legend Begins (USA, Europe) (Disc 1).bin" size="675840000" fast-md5="8ba4f646dc0e3d4693fc63a39510608e" md5="c3b1fd9da29553eb514ce0c373124ad0" sh1="6d605c9c7d916ef7868f5caaec873252866d1f00" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Pebble Beach Golf Links (USA).bin" size="377487360" fast-md5="a8902fec26581490b47df8ffda490e23" md5="1ec7243f4f8b2c88838c855c535587e3" sh1="1b7aeb0c69ecb680d1776e402706dc89f0c90e9f" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Dragon's Lair (USA).bin" size="209715200" fast-md5="fce026f4f61cdd81eeef650ef15d3fe8" md5="c047173bb9f996e67447bc3e85a332be" sh1="5c7116ad2a458eb211d056813d03008e7bf8c186" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Fatty Bear's Funpack (USA).bin" size="83886080" fast-md5="825f887812d7b037c824ee67d2301499" md5="a3a70ac48a8cb3c8da55619cd563f7c1" sh1="6172f704de0b4e5632ac99ec368cfd36e0060a1d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/V Goal Soccer '96 (Japan).bin" size="272629760" fast-md5="44d286f2374304bea44788c7d0974c36" md5="41db00f4ee8feb2ec6287930cdaa11e6" sh1="cc36a226f00f6733b7b7c8534bffe133a6aece67" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Quarterback Attack - The Professional Quarterback Simulator (USA).bin" size="675282944" fast-md5="01229c626990ec7942aee8faeba74363" md5="05dd23ad773ee9caf461e15ebfc9dab1" sh1="ec6c6b243702d79e1fcf70de760b87b213b8adfa" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Iron Angel of the Apocalypse - The Return (USA).bin" size="671088640" fast-md5="a167e9c46f5dd2755a4f34801b33a912" md5="9724c71f90568cb12adc4086465e93e1" sh1="0b028fe1ed18f45f6487b5e8a6fae7e58e57c037" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Snow Job Starring Tracy Scoggins (USA) (Disc 2).bin" size="659554304" fast-md5="c2e2e32e5a9e1297c501100563e30429" md5="08b40ca018881b00614c9867b79fbcf0" sh1="afdf092cac136c0dc5bdba9fdc019c8b8512fc8e" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Murphy Dayo Zenin Shuugou!! (Japan).bin" size="660602880" fast-md5="815277f4496da4e69e6607f81feef986" md5="75f3cee87c385c4d8e32620a8f6a1449" sh1="59619d83d7a767d957752398603828cc1a6ec979" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Need for Speed, The (USA, Europe).bin" size="671088640" fast-md5="01f296d203db034450867cc2b3d3e107" md5="29d377603d4ddbdbdba606ee1596c677" sh1="82729a637e66014daab818ac1d7c602495791d5b" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Panzer General (USA, Europe).bin" size="629145600" fast-md5="c4096ff109204825aa0ab7e6da4d0e34" md5="7ac98db16c7b844680aa2f14e3070567" sh1="b16b020c5f42e17401a5ba7fbcafd785768a445c" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Shockwave - Invasion Earth 2019 (USA).bin" size="650117120" fast-md5="b1c23e874707023cc8313cd7563ced1f" md5="bc86af869d5e278bf593ce96a53872f0" sh1="0a602e10722ebaa26fc9261f6111988ac4b9ff7d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/N.O.B. - Neo Organic Bioform (Japan).bin" size="471859200" fast-md5="1dac2f705b3bf6eb5294eb7415bcc017" md5="095e83dd99f8edd2e804f00a8198be49" sh1="8eeb4962821d983ef54d8f2859d658604f41806f" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/BattleSport (USA).bin" size="440401920" fast-md5="ce422a47cfb96ed8f2be28ca664bddba" md5="f41cc17c2b91c58e64affb6990b578af" sh1="a33760c3cfb51cb15a5715aef6663b1fd1c1e2fe" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/John Madden Football (USA).bin" size="419430400" fast-md5="d4085d0e3d48acf17d0fd80314e0ece0" md5="d552ab7dc56f42503d1e7c5a708bee45" sh1="25a238d85a68a0d419125ddbf27594a70184607c" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Pro Stadium (Japan).bin" size="419430400" fast-md5="496ea779b18d4d359f646ae856fb32e6" md5="25782c9c758dafad4a5cb1c497164813" sh1="9f18427d7938b8329587884dc9ed04406634fd9b" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Novastorm (USA).bin" size="639631360" fast-md5="2610a6981df9f3d5c8530e8c13225894" md5="d2c8fd06003620d19a6b74a91c4e982d" sh1="a1d11c6b8adf29e08a1a423d0ea95938f31e2ff2" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/J-League Virtual Stadium (Japan).bin" size="671088640" fast-md5="f778e9b6c7d610fcd24449fad3becbbd" md5="b637f7ef2b3fa60c817b5e35c20eee51" sh1="9258749a61128676ebf5cf53dbd6ae82e04fcfd7" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Creature Shock (USA) (Disc 1).bin" size="671088640" fast-md5="234df9c4259fd6105d0f9618bdfd1b75" md5="f43f55b485a4bb53fa8e6ead7ad41d16" sh1="6152ce414121c619ff8047735fd1fc00670c7985" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Yuu Yuu Hakusho (Japan).bin" size="492830720" fast-md5="4e128005b42a6515f1abcc589b396d27" md5="76a18e3955ea46e38747e964164ed623" sh1="1421894c8d1c7fadac6239ab923cd99383781111" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Life Stage, The - Virtual House (USA).bin" size="408944640" fast-md5="0df51abbd507d2b1163eadd5cfde6575" md5="3943117557e6b7242e0f87660d2128df" sh1="9b7c85a0aa515c6f87a086fbc161d77f0f43136f" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Rise of the Robots (USA).bin" size="581959680" fast-md5="36172d2d7c06469177ea57e465c7972b" md5="8ef0affc67a2c857a83630b6329a6f23" sh1="63743618a9d9cc495fc4faedc5864a9ed8a8b5e2" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Off-world Interceptor (USA, Europe).bin" size="524288000" fast-md5="1ec2293e749a719896e82c5d6cc747cb" md5="49585e5b49375b7817f770e020f611a8" sh1="c895de49b7fee3bad4a50263bc766a532fbdc15d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Hell - A Cyberpunk Thriller (USA).bin" size="671088640" fast-md5="657d14a576fe1d3651c7029fda2a896f" md5="d6a513cf6d0c03776c51b4f3b485b9c7" sh1="2932a83d8a2cfe9d8a341818a6b71c2e77bc0498" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Psychic Detective (USA) (Disc 2).bin" size="629145600" fast-md5="bb3f94631c46aa335303d2907654bd13" md5="6ab9b9b93d8a22690757e1c45611893b" sh1="1754bb3b1abea4fd9e609bfaaf0dd7f22e94064e" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Psychic Detective (USA) (Disc 3).bin" size="650117120" fast-md5="33e86a23d5b63adf5d795a0439d1455d" md5="3899e281abc53e0216cf7b1ca6120e4c" sh1="14f55a5ab600fc3d884ba829cc013560725d2e42" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Olympic Summer Games (USA).bin" size="545259520" fast-md5="7d8c7b24d74768a82cb7900d40c4ff02" md5="0031c7a0b92d218a33c7d403bab905ad" sh1="53f1cb607df3a6ebede66225e9a218a004abb5cc" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Super Wing Commander (USA).bin" size="566231040" fast-md5="c5f036475a9fc03a4ed9d78718baf14c" md5="aec334ed6471dc1c193b7003d1987010" sh1="88ca8a9f9cec53c32e6928760cc27022aac542ff" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Lost Files of Sherlock Holmes, The (USA).bin" size="671088640" fast-md5="fe52b08319a335160c5835e6b1a17657" md5="b84b1317e25c1d4b3b4e01159f2e735c" sh1="769622403abae2383c21b4d88736ea13c7e3de66" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Psychic Detective (USA) (Disc 1).bin" size="655360000" fast-md5="d384d0bb36ca307669b1078ae0a4f698" md5="01971886387c0ba25a8e3f6e8352e0f8" sh1="ee570b0b31a05ec98f56bd691f8d7b1f0702d7ff" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Doctor Hauzer (Japan).bin" size="262144000" fast-md5="b60a799a3d2f5c0785099e25d853c937" md5="7f3a96e27aa7934ee72935616b1dffa0" sh1="76469b9cb337da6a74d8bd03724f9749e1e6c47d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Return Fire - Maps O' Death (USA).bin" size="524288000" fast-md5="9d2269b8d3216d02ac21aa9d50a526b5" md5="f9434bffef66e0e927ad4f863469acf2" sh1="36cac2e028e2bbc32bfaea419f86bfe53dd8d9fa" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Putt-Putt Joins the Parade (USA).bin" size="83886080" fast-md5="94d125080796cf32dfe5c4c7163fcd7f" md5="57077a024c2b4990351d23d802a9946b" sh1="c098435a280b588e606d0b878fbceb6c2f7d19ce" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Club 3DO - Station Invasion (USA).bin" size="673185792" fast-md5="db244d7e24788039c58f8f44f73f0233" md5="6099a12e8f66e31e4432737bc848d956" sh1="8446520fab51fcbc2eb932745abd73f6d3fc5c93" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Snow Job Starring Tracy Scoggins (USA) (Disc 1).bin" size="659554304" fast-md5="e7d9c20566b8d73773e9f47b62255668" md5="bebe857e51a03ac90d5e1eddb5ecd528" sh1="7032f952a990a8382713453ddcc3bc21aec65fcb" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Lucienne's Quest (USA).bin" size="199229440" fast-md5="0dfd6a790e018473fefcb8573e9cebcf" md5="54a828ee4c0684cf5634a578225051e4" sh1="9cdc0a393f6d41a8e6c7fd1c0c068ff7d0932b0a" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Captain Quazar (USA).bin" size="675840000" fast-md5="8ea472e2fc5d45e27832cda471e800dc" md5="24abd902dda41f21b7c3e5d876b98c20" sh1="c6ae38967faa11898cabb444f2159d4857983911" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/DinoPark Tycoon (USA).bin" size="550502400" fast-md5="a5b707208fbcc2053cb8106dd2cf2016" md5="e3937ffb48bbdec8bd234038e23687df" sh1="499f866a6812412533ff952b961a05b6100cf84c" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Totsugeki Kikan! Megadasu!! (Japan).bin" size="149946368" fast-md5="85094b563a6f534ac9eb6729a162d8d7" md5="28a95d6b3bb9847d473ab8271fe3280a" sh1="6be9da536383cfde2f579da17a296378ba90a671" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/San Diego Zoo Presents...The Animals!, The (USA).bin" size="675282944" fast-md5="33d34a90f972f6c2a7ce2bb706514a14" md5="574e1df902c5b37db61878a3bcbbdad0" sh1="5c37692afc5ed97984f19a7f5167e5f8bb1b636b" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Slayer (USA).bin" size="309329920" fast-md5="414d14ab57e6fb2baedcb6f317ed99fc" md5="572c88912d7a41ff38cff4f14cb2fc6a" sh1="78d0a6dacf5ed3e352f151b9f203b5b37bba2327" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Slam 'N Jam '95 (USA).bin" size="104857600" fast-md5="890f3772599d2a80f2ad99ea830680b8" md5="4e3952347f2b838051fa4c22767ec6bf" sh1="4d71dfbe7d6cf3ea53e0d6cf647aefe3d8d17f45" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Mazer (USA).bin" size="235929600" fast-md5="ef105b62f0e0e8e9af38a2b337a4cbfe" md5="7672f74fa7f7dba7f9a6867ddf6cffd8" sh1="cbf4d91f179e9445a04e9c82b61b4c860f8fec7b" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Immercenary (USA).bin" size="675840000" fast-md5="d173d28720f881883d9c6cfd2d0f2afd" md5="1dbabc722f51b02b86d0d803dd2bb2fb" sh1="ab43e85a5ff722c12798246f6dc74335a1005afe" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Shanghai - Triple-Threat (USA).bin" size="104857600" fast-md5="8046ba7a114e37cb0f13ff645cc298fa" md5="2666e7eac773ba8ca7a66d1030f03419" sh1="36fe4916bc02c0f2c550992c03bf2a459e2e281c" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Idol Mahjong Final Romance 2 - Hyper Edition (Japan).bin" size="167772160" fast-md5="042f7db11139549f86b48abbf6957f86" md5="51bbdf2fa4b5838df13890a20a31a4ee" sh1="ae9ed4cf5e61d35d5441291c720dfbea5559907d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Escape from Monster Manor - A Terrifying Hunt for the Undead (USA).bin" size="471859200" fast-md5="63a21ebb51ee4ae4fa2522a9bbbd7947" md5="b6aaeba8af3c00eec762357baf609991" sh1="844f8a64d1ff12ffc700e983651e3f5d72deea65" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Scramble Cobra (USA).bin" size="665845760" fast-md5="c3f6f89c719a78ce20890f780f764368" md5="7d00662ec80d851fb6cf67b97ab16a53" sh1="f5bfb32f0a473dea87bb72f1ed76f4189dc876fb" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Supreme Warrior - Ying Heung (USA) (Disc 1).bin" size="671088640" fast-md5="314fbdebf01ab7f01b2fd65ca0e00ba1" md5="afa359b3a8d59a691cefad9049c69cd6" sh1="bb4871031dd05b7490bbf8587883ff4bda39b30f" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Jammit (USA).bin" size="309329920" fast-md5="0849a0768525df3e695d3a536cc0325c" md5="d0b4cde66e101a31471f85fba52d5bde" sh1="7cc2e3927f616c069db686ab76bc403a1b8f48c3" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Casper (USA).bin" size="209715200" fast-md5="540070ac66e38b1a7b26b51f8b5cd869" md5="09c4c840d6aa9e3cc3830e08062264de" sh1="f5867a6a13f730c21322361de2d98da99a63bb19" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Taiketsu! Rumii Zu (Japan).bin" size="536870912" fast-md5="680356ef0cdc11b929edab36ef9a51cf" md5="624435bdceee8ba96ad05c6dcc291a34" sh1="d1f34338deece7c8ebcc3b8bdcd3574208dda94f" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Doom (USA).bin" size="209715200" fast-md5="75c7b280b4486d618fd2364371f28901" md5="385f8007f0512b639e75a45b768f837c" sh1="63976929080fa11b2e056b6b6a5122353dfaac72" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Putt-Putt Goes to the Moon (USA).bin" size="104857600" fast-md5="4b594bb67e168d986eeaf9b3aa8ce146" md5="931b84a79c7ac2f0dcffcaa2be21e73a" sh1="12be70b033a8c7a15c3372c503463c3aca7f1f9e" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Oceans Below (USA).bin" size="660602880" fast-md5="0c9872f8475a3afbc2aa13fcc5efb9c7" md5="75ea0e32b735fe7eaea4a5c2d0b248ed" sh1="b8164c21db531688da850677de149cda048a9b49" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Firewall (Korea).bin" size="587202560" fast-md5="75ee9c00c05ffd8d4a057803b970b51c" md5="6de1147978f51c9380af30f61e48502e" sh1="1381520a2ca846b317c7ad2b35f5b43f03d1c331" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Crime Patrol (USA).bin" size="571473920" fast-md5="417dd388684a30db5c770c5d6b935a2d" md5="b9e552f2914a83efa72809a9e68a9d32" sh1="f6654ea3bea50f06ac619172677fe5c455ed22f4" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Johnny Bazookatone (USA).bin" size="429916160" fast-md5="10463d4eb07de19739d222199276b23e" md5="d08a188a83b9ac9c5d1ac11b55422ca5" sh1="59838a47eed4b80bc5718264a6324597dc2dbbd0" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/BC Racers (USA, Europe).bin" size="327155712" fast-md5="ef2870267cadd5df20b6e88861e2d0dc" md5="10e55ffd92b212ea93b11dca72baef76" sh1="f083385cb0ad3db46452c1d8d7cd25b686e4953f" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Dragon Lore - The Legend Begins (USA, Europe) (Disc 3).bin" size="675840000" fast-md5="4596158f7b203e633d6c7210590e0acb" md5="f5be7bbcc1e8f489fe4ce2bb33c23f5c" sh1="8f9e7b4791a30de4b0eed5602fdddff62ebf3c47" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Twisted - The Game Show (USA).bin" size="650117120" fast-md5="63c354f8255f6833eda90d2e193e8833" md5="e46730b35383668395656661ae40483f" sh1="551e2d93ab0b61f94140588e83f6cbd1d2118bba" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Mind Teazzer (USA).bin" size="629145600" fast-md5="39693af3f8f33c92105395460b6c0dd2" md5="2dc6e56ed6ab1071805a3c59db4feca8" sh1="0141bfc076a1db1ebad38762627fac9975e82be6" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Brain Dead 13 Starring Fritz (USA) (Disc 2).bin" size="440401920" fast-md5="2b0a3c525fb5cf7dc26f27820c4b49aa" md5="85c93ef90c467c6ab257ad405ef2c86d" sh1="4e41342c44387ed1924e939b514185847a5e4840" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Stellar 7 - Draxon's Revenge (USA).bin" size="304087040" fast-md5="b82940338b17ae64b46d5ee1eb35a6bc" md5="f8a29f373a066d12d5c4afbc3f9ea431" sh1="ca3de5de7410a7b27b5249c7785bc769eeda781a" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Real Pinball (USA).bin" size="50331648" fast-md5="66c56ba348af28bc75d952ea4c2c5b68" md5="5a17abacb5eaf27077eb45cb1ca8f194" sh1="e2d548c8d16324c572729d754d7207137349b4ce" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Primal Rage (USA, Europe).bin" size="339738624" fast-md5="292c04dac346a3273d0e244c0db1bfb7" md5="06f3a90ea09265ffe173f1de7dac18a5" sh1="dc911dafd294ef02418c7550c25f7cf7b25207ac" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Flashback - The Quest for Identity (USA).bin" size="262144000" fast-md5="6e2a0dc2cf576a5663f28eb068058ac6" md5="4a6a5aeffb9abf3d9028db8c108aa354" sh1="d0c1c7e4272f4944059c4140e0f3c0e6372e9441" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Defcon 5 - Incoming (Europe).bin" size="471859200" fast-md5="78d3104c625402660fd5079f7985734f" md5="e70e093a0231294966acf1aa6b78e2c2" sh1="6dbd7d65ffc4f4d3e3965dad0fa0ce5954fd8c4d" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Battle Chess (USA).bin" size="272629760" fast-md5="13cdcd92f471aea0f130939d2beee14c" md5="63cac013bff1a1b5d85a1265c9d616bf" sh1="fa92a9566e47bf02fc1e7b7ada65a6a8dff4846b" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Cyberia (USA).bin" size="660602880" fast-md5="fa1711a29c69a4ee33dad21ed5848a25" md5="29b3a27ca0706c6e4d055bbd5ac61518" sh1="00ecc3a9af392f454df1a23ddf52050162442d18" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Burning Soldier (USA).bin" size="524288000" fast-md5="022a53f336dbba15e051f256da16b26d" md5="10dae24403c92359123b8cd870cdfdc2" sh1="cdd306d2000908b96e83d8e83fa835c0ad39dc41" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Sewer Shark (USA).bin" size="675840000" fast-md5="ad92dbd669ffd0fe61c44dc530408ee1" md5="077945193620d9f0466de6d0b619a52f" sh1="e21b541120ad96a0b19ef445462febff623b0809" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Short Warp - Warp's Short Game Colection (Japan).bin" size="335544320" fast-md5="7acf9460036b8cfa64fe3b07fe4b43b6" md5="6b3d13464d07bc806859a3f9ac0655c6" sh1="2dc0495d113af3e682ce01854a0d8bbe73bf3a25" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Night Trap (USA) (Disc 2).bin" size="549453824" fast-md5="f14aa2a893936a80e555a12b21070bfe" md5="5a7b13e2ac1b22201b2fe37682a4020c" sh1="b9a17e4cdab7f9812b32467f4caf0b8ef9e38983" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/D (USA, Europe) (Disc 1).bin" size="540016640" fast-md5="45af614eed3381e597bbb0c4fa72ca2e" md5="4e87ddca045ddabcc77beedbcd54b164" sh1="aa700fc1a67fd8ec2f64654b79539ba0713cac42" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Road Rash (USA).bin" size="671088640" fast-md5="89c02efe97e5ae7163bb254128de4f12" md5="9af372e7c548d799751a1e720cc965b5" sh1="f21338c403a997108f0ef753024d36faa8bc792b" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Microcosm (USA).bin" size="359661568" fast-md5="bbcf09c28cf7c73e49b4a61c050b0b9c" md5="7aa05554df50dce047db54593d54083c" sh1="611e1b268d0f42eb68dfbe262965d48e2f45dd59" corrupted="" />
                <Dump path="F:/Roms/Panasonic 3DO/Daedalus Encounter, The (USA) (Disc 4).bin" size="671088640" fast-md5="2d12066cdab59a8bb58f06a078dc9d97" md5="73e83d5cf38633d2f33ec66d4ebeed20" sh1="45fc963e73d48f39387840410f5410ab52999ce9" corrupted="" />
            </CD-ROM>
            <BIOS expanded="true" attach="F:/Emulators/ph-win64/3DO/BIOS/3DO bios.rom" last-path="F:/Emulators/ph-win64/3DO/BIOS">
                <Dump path="F:/Emulators/ph-win64/3DO/BIOS/3DO bios.rom" size="1048576" fast-md5="51f2f43ae2f3508a14d9f56597e2d3ce" md5="51f2f43ae2f3508a14d9f56597e2d3ce" sh1="3c912300775d1ad730dc35757e279c274c0acaad" />
            </BIOS>
            <FONT-ROM expanded="false" attach="" />
            <FMV-ROM expanded="false" attach="" />
            <NVRAM expanded="false" attach="" />
            <Machine-Save-States expanded="false" />
            <Records expanded="false" />
        </Platform-3DO>
        <Platform-Jaguar>
            <CARTRIDGE expanded="true" attach="F:/Roms/Atari Jaguar/Alien vs Predator (World).j64" last-path="F:/Roms/Atari Jaguar">
                <Dump path="F:/Roms/Atari Jaguar/Bubsy in Fractured Furry Tales (World).j64" size="2097152" fast-md5="c3ad2c75c5339125661845720da3895d" md5="c3ad2c75c5339125661845720da3895d" sh1="752d6e1ed185f9db49230f42319a573a44e32397" />
                <Dump path="F:/Roms/Atari Jaguar/Air Cars (World).j64" size="2097152" fast-md5="45e12558e1b9eda1b66b86f68f995f2a" md5="45e12558e1b9eda1b66b86f68f995f2a" sh1="533c497761cc802624708108bc9ef6e7c4f40296" />
                <Dump path="F:/Roms/Atari Jaguar/Atari Karts (World).j64" size="4194304" fast-md5="cb492f093cd9e22a913d158741e8f00a" md5="cb492f093cd9e22a913d158741e8f00a" sh1="9c96e6c2195ce56aa930e677a041b35bd9b8bc7e" />
                <Dump path="F:/Roms/Atari Jaguar/Attack of the Mutant Penguins (World).j64" size="2097152" fast-md5="3ab524a6a18f79b5e7fd0bb189fe8170" md5="3ab524a6a18f79b5e7fd0bb189fe8170" sh1="01dc37e7a9d03246a93bcb8c6a3116cb6391ed31" />
                <Dump path="F:/Roms/Atari Jaguar/Brutal Sports Football (World).j64" size="2097152" fast-md5="ce6005897ff5e9aa4e992c76628b21c6" md5="ce6005897ff5e9aa4e992c76628b21c6" sh1="cdfefdf28dd9127f7a9425088a1ee3ea88dfb618" />
                <Dump path="F:/Roms/Atari Jaguar/Cannon Fodder (World).j64" size="2097152" fast-md5="4aa320637ffc598d7d9db44085a88df2" md5="4aa320637ffc598d7d9db44085a88df2" sh1="0c195676be099f4594ce1d5a38303f6cce899dc5" />
                <Dump path="F:/Roms/Atari Jaguar/Alien vs Predator (World).j64" size="4194304" fast-md5="96bc77cfd1b2df85b5e6ae05594e74b0" md5="96bc77cfd1b2df85b5e6ae05594e74b0" sh1="fd8c89250ebc1e403838b2e589d1f69e3fe2fe02" />
                <Dump path="F:/Roms/Atari Jaguar/Battle Sphere Gold (World).j64" size="4194304" fast-md5="06f3a61fb712c581aee3599f3a61fa61" md5="06f3a61fb712c581aee3599f3a61fa61" sh1="49716a6a3a4c6abeea36040f26c4e8cf2a545df7" />
                <Dump path="F:/Roms/Atari Jaguar/Missile Command 3D (World).j64" size="2097152" fast-md5="3dd8ee48afb83629c87ec0b6de790c25" md5="3dd8ee48afb83629c87ec0b6de790c25" sh1="3ea9053a63a3b0165ccec91e85f0e699a998dc0a" />
                <Dump path="F:/Roms/Atari Jaguar/Power Drive Rally (World).j64" size="2097152" fast-md5="98119ea7434fc21ea7b2462c5c602b50" md5="98119ea7434fc21ea7b2462c5c602b50" sh1="75ee0ab0daba31284a1dff27f3c247885f5a427a" />
                <Dump path="F:/Roms/Atari Jaguar/Syndicate (World).j64" size="2097152" fast-md5="b81af314f10a547680e17d3797db0c81" md5="b81af314f10a547680e17d3797db0c81" sh1="a226086571c857f3796fd664bbc2c8fe99c78224" />
                <Dump path="F:/Roms/Atari Jaguar/Zoop! (World).j64" size="1048576" fast-md5="014e52819fc3d8ecbd0a1e71b80feb42" md5="014e52819fc3d8ecbd0a1e71b80feb42" sh1="52ec786f7536ab043dc24725af94068cad2b0ec3" />
                <Dump path="F:/Roms/Atari Jaguar/Val d'Isere Skiing and Snowboarding (World).j64" size="2097152" fast-md5="1f1145e1042b8cc062c417798392d251" md5="1f1145e1042b8cc062c417798392d251" sh1="02253d93eef375c8334f1f77a2d8b72fff7a94c6" />
                <Dump path="F:/Roms/Atari Jaguar/Ruiner Pinball (World).j64" size="2097152" fast-md5="c162738bf2c602144d78987498c68a49" md5="c162738bf2c602144d78987498c68a49" sh1="e0db2fdea7f95743c1ef452b7d289f5fe8158e33" />
                <Dump path="F:/Roms/Atari Jaguar/Theme Park (World).j64" size="2097152" fast-md5="0d5f81f48dffa2b511460a9852aa3b4a" md5="0d5f81f48dffa2b511460a9852aa3b4a" sh1="24da4fe776ae9daa86cf643c703ec0f399c77521" />
                <Dump path="F:/Roms/Atari Jaguar/Kasumi Ninja (World).j64" size="4194304" fast-md5="7ad345dbfa5a7cd66b579b2dffa6ddd0" md5="7ad345dbfa5a7cd66b579b2dffa6ddd0" sh1="2327112b9c6f9b0e49c55def0adb8119ee39ce29" />
                <Dump path="F:/Roms/Atari Jaguar/Soccer Kid (World).j64" size="2097152" fast-md5="c803a3d9bb7c64c599143c0f6b1cab96" md5="c803a3d9bb7c64c599143c0f6b1cab96" sh1="a738a2df47f09c3bfdeddfc01b35f3e8b5c5d99c" />
                <Dump path="F:/Roms/Atari Jaguar/Hyper Force (World).j64" size="2097152" fast-md5="21a2abca6e1b8c3fd6b9ab2cc155db42" md5="21a2abca6e1b8c3fd6b9ab2cc155db42" sh1="037396347d65d1a8b56e7db361d737ab2070118f" />
                <Dump path="F:/Roms/Atari Jaguar/Skyhammer (World).j64" size="4194304" fast-md5="04c85be97daf4308135d245e68d4774d" md5="04c85be97daf4308135d245e68d4774d" sh1="34a9941459e3b66c836f25b3ef55303734b9583e" />
                <Dump path="F:/Roms/Atari Jaguar/Club Drive (World).j64" size="2097152" fast-md5="403e9c8bf868213d1daae54f1be62cb2" md5="403e9c8bf868213d1daae54f1be62cb2" sh1="6588f7d677463d0ef10cf905d44a2581fd9dd055" />
                <Dump path="F:/Roms/Atari Jaguar/Cybermorph (World).j64" size="2097152" fast-md5="1c2e3d172151dcae3b3fc9a23084dcf2" md5="1c2e3d172151dcae3b3fc9a23084dcf2" sh1="e00ab55f555fd1fe63b4fce66a9b8ffe3485963e" />
                <Dump path="F:/Roms/Atari Jaguar/Total Carnage (World).j64" size="4194304" fast-md5="5f14d7c3da4e0f26f736158ffb95ce05" md5="5f14d7c3da4e0f26f736158ffb95ce05" sh1="4566b33799a7c65b3e9643383d0282172ff619a5" />
                <Dump path="F:/Roms/Atari Jaguar/Fever Pitch Soccer (World).j64" size="2097152" fast-md5="86c5cb8ac559b4f3a1e9aa883b06f98c" md5="86c5cb8ac559b4f3a1e9aa883b06f98c" sh1="5be3da69a64b779d064d139968fadbe1c475c715" />
                <Dump path="F:/Roms/Atari Jaguar/Protector - Special Edition (World).j64" size="2097152" fast-md5="3774ee26339adfc0bad07091d29c361b" md5="3774ee26339adfc0bad07091d29c361b" sh1="ddea86820dcaa1a67bd82cf8023f9b3c494357b0" />
                <Dump path="F:/Roms/Atari Jaguar/Towers II (World).j64" size="2097152" fast-md5="fd8551c8791cbee9b31bd3218670a718" md5="fd8551c8791cbee9b31bd3218670a718" sh1="f8c14fab50ab04a025d15c3410a6698f6e4c61d3" />
                <Dump path="F:/Roms/Atari Jaguar/Defender 2000 (World).j64" size="4194304" fast-md5="939f2446e70d8b26f17b21e065aa7a30" md5="939f2446e70d8b26f17b21e065aa7a30" sh1="13a4084bd5be1cca21d83d4c26b5b8e5cf1a3e30" />
                <Dump path="F:/Roms/Atari Jaguar/Flashback - The Quest for Identity (World).j64" size="2097152" fast-md5="d46b75d5a28fda75bf2d6d79f12c9f27" md5="d46b75d5a28fda75bf2d6d79f12c9f27" sh1="824613451be0b99020fc02e5dba15c45e76fc8c2" />
                <Dump path="F:/Roms/Atari Jaguar/SuperCross 3D (World).j64" size="2097152" fast-md5="5f4752e493bfc18ac8df1647bbc1fdbf" md5="5f4752e493bfc18ac8df1647bbc1fdbf" sh1="c71e0bc9eeed8670c6e7ccc7a0fe3b815d7bac83" />
                <Dump path="F:/Roms/Atari Jaguar/Double Dragon V - The Shadow Falls (World).j64" size="2097152" fast-md5="b50249bf2924af134b45f59218e9b5dd" md5="b50249bf2924af134b45f59218e9b5dd" sh1="d66b4e5f9ac27d53f0d781c741e420698630b9fc" />
                <Dump path="F:/Roms/Atari Jaguar/White Men Can't Jump (World).j64" size="4194304" fast-md5="22dd3645e3ea99f303694eb5f157ce06" md5="22dd3645e3ea99f303694eb5f157ce06" sh1="4d16596ac2d991435599e1fe03292adfb25c346d" />
                <Dump path="F:/Roms/Atari Jaguar/Troy Aikman NFL Football (World).j64" size="2097152" fast-md5="f5fcfb1b9a1e00bc5dcd6cc9fbe56577" md5="f5fcfb1b9a1e00bc5dcd6cc9fbe56577" sh1="4c6a6432ea0bc198f900f4ebdb8a3a7a34475d84" />
                <Dump path="F:/Roms/Atari Jaguar/Evolution - Dino Dudes (World).j64" size="2097152" fast-md5="d934acb23e0d9ee46d2a050146b876b0" md5="d934acb23e0d9ee46d2a050146b876b0" sh1="179b511464abcda5a5de9f971bd5cb5775d8c313" />
                <Dump path="F:/Roms/Atari Jaguar/Ultra Vortek (World).j64" size="4194304" fast-md5="31517113add13d1ff766a4c2a58f4675" md5="31517113add13d1ff766a4c2a58f4675" sh1="e3bd433bc4a573f3b05652239a6614c3878a04d1" />
                <Dump path="F:/Roms/Atari Jaguar/Tempest 2000 (World).j64" size="2097152" fast-md5="602bc9953d3737b1ba52b2a0d9932f7c" md5="602bc9953d3737b1ba52b2a0d9932f7c" sh1="3828d2f953224d06b5fe7ab3644d6a75fdfe79e3" />
                <Dump path="F:/Roms/Atari Jaguar/Zero 5 (World).j64" size="2097152" fast-md5="08b31fae8cbd44ac65d44baf1a0545a2" md5="08b31fae8cbd44ac65d44baf1a0545a2" sh1="b68de2cd49cb70e92f2415837edfa7ab46770a78" />
                <Dump path="F:/Roms/Atari Jaguar/Iron Soldier (World).j64" size="2097152" fast-md5="e9aac34f010aae4d0c781a34975d2aaf" md5="e9aac34f010aae4d0c781a34975d2aaf" sh1="8bdefc60dd1734315e1c145e29abf41800f908cb" />
                <Dump path="F:/Roms/Atari Jaguar/Flip Out! (World).j64" size="4194304" fast-md5="c43b914dde64b514e137852f56b415b1" md5="c43b914dde64b514e137852f56b415b1" sh1="61d4db841c090ae3104eb20b6087160ff80e7a12" />
                <Dump path="F:/Roms/Atari Jaguar/NBA Jam T.E. (World).j64" size="4194304" fast-md5="a302ef18eedcb6c07dd7ea139c849eb7" md5="a302ef18eedcb6c07dd7ea139c849eb7" sh1="b9c8ff2d26fe1e91ecd6d59b9f3f76c5b5650f26" />
                <Dump path="F:/Roms/Atari Jaguar/Worms (World).j64" size="2097152" fast-md5="1a87f2f7a32d3e3a8e8d922a0c5aa6af" md5="1a87f2f7a32d3e3a8e8d922a0c5aa6af" sh1="641b07f93e8df03ab8b9bf1e8dc56e2889f247f8" />
                <Dump path="F:/Roms/Atari Jaguar/Hover Strike (World).j64" size="2097152" fast-md5="51d65ce8171daf0a255a30b44dac07cf" md5="51d65ce8171daf0a255a30b44dac07cf" sh1="94e615e7a57f7c08645322870121bb32310298f5" />
                <Dump path="F:/Roms/Atari Jaguar/Raiden (World).j64" size="2097152" fast-md5="7f7afc98ec2d88eb20c56582dc8b4351" md5="7f7afc98ec2d88eb20c56582dc8b4351" sh1="9d2f894da3f25944c2f33e3a109ae8d0d951d329" />
                <Dump path="F:/Roms/Atari Jaguar/Dragon - The Bruce Lee Story (World).j64" size="2097152" fast-md5="ddb3eb3359adb163b771c62e62b6df9d" md5="ddb3eb3359adb163b771c62e62b6df9d" sh1="da7f5dac4317ab0258f54da436abb8d89e530f27" />
                <Dump path="F:/Roms/Atari Jaguar/Wolfenstein 3D (World).j64" size="2097152" fast-md5="3584cb83461c8666a3f28ea0c431a3db" md5="3584cb83461c8666a3f28ea0c431a3db" sh1="ee553176f0a32683b517b84b12c6fae13c15c3d0" />
                <Dump path="F:/Roms/Atari Jaguar/Sensible Soccer - International Edition (World).j64" size="2097152" fast-md5="6344be281acb1c86819a310c6a147aa6" md5="6344be281acb1c86819a310c6a147aa6" sh1="f0914be41331e3045bbc04225044dc3c73fd9de1" />
                <Dump path="F:/Roms/Atari Jaguar/I-War (World).j64" size="2097152" fast-md5="5a66b96ede209f251b00e0e06723826c" md5="5a66b96ede209f251b00e0e06723826c" sh1="3db485aaa28a817f468739a85e3f25741c3855ad" />
                <Dump path="F:/Roms/Atari Jaguar/Pinball Fantasies (World).j64" size="2097152" fast-md5="94583ce1270f05f13b32a9ff0e8909db" md5="94583ce1270f05f13b32a9ff0e8909db" sh1="4733cf2ede2713467f2a80b052ab94edf6dfe534" />
                <Dump path="F:/Roms/Atari Jaguar/Pitfall - The Mayan Adventure (World).j64" size="4194304" fast-md5="c8ad07df9fd386abadb2c0cac7381657" md5="c8ad07df9fd386abadb2c0cac7381657" sh1="25611b1cff1384db72cc5422dbe70555e5bbd32c" />
                <Dump path="F:/Roms/Atari Jaguar/Super Burnout (World).j64" size="2097152" fast-md5="5f3a11bc3452fddf82c6548742467a35" md5="5f3a11bc3452fddf82c6548742467a35" sh1="9a58bc0c8843fd00a2871c01b91fec206408bf80" />
                <Dump path="F:/Roms/Atari Jaguar/Zool 2 (World).j64" size="2097152" fast-md5="780c0dd04407145b1c436adea406b5ac" md5="780c0dd04407145b1c436adea406b5ac" sh1="32ff3811f8f6df8a2bb56165c62227a3a480e55c" />
                <Dump path="F:/Roms/Atari Jaguar/Trevor McFur in the Crescent Galaxy (World).j64" size="2097152" fast-md5="bafebcbf5a0973fcf5c130c56ffeabb2" md5="bafebcbf5a0973fcf5c130c56ffeabb2" sh1="88e86085932af10dfb8c94032f73a5992a30b55c" />
                <Dump path="F:/Roms/Atari Jaguar/Checkered Flag (World).j64" size="2097152" fast-md5="c77ba1af9705265d4c0070541a5c4787" md5="c77ba1af9705265d4c0070541a5c4787" sh1="4d0cc8d248a8bd0fc4b8169c5d5772e59c073c59" />
                <Dump path="F:/Roms/Atari Jaguar/Doom (World).j64" size="4194304" fast-md5="3a5878ea3f391174becc37b037318804" md5="3a5878ea3f391174becc37b037318804" sh1="20ddf412e42a50d526cbbb6411bf0ec4516db283" />
                <Dump path="F:/Roms/Atari Jaguar/Rayman (World).j64" size="4194304" fast-md5="c0ebfa0c65145bc59ca3bad632d85a39" md5="c0ebfa0c65145bc59ca3bad632d85a39" sh1="d22912992fd966365a1221886e0fc5303ef04a59" />
                <Dump path="F:/Roms/Atari Jaguar/Fight for Life (World).j64" size="4194304" fast-md5="bde3014aaebe4e7a0783a6c5fc921c14" md5="bde3014aaebe4e7a0783a6c5fc921c14" sh1="686176f5a7bdaef690d853523a338beb8a93d244" />
            </CARTRIDGE>
            <BIOS expanded="true" attach="F:/Emulators/ph-win64/Jaguar/BIOS/[BIOS] Atari Jaguar (World).j64" last-path="F:/Emulators/ph-win64/Jaguar/BIOS">
                <Dump path="F:/Emulators/ph-win64/Jaguar/BIOS/[BIOS] Atari Jaguar (World).j64" size="131072" fast-md5="bcfe348c565d9dedb173822ee6850dea" md5="bcfe348c565d9dedb173822ee6850dea" sh1="f8991b0c385f4e5002fa2a7e2f5e61e8c5213356" />
            </BIOS>
            <Machine-Save-States expanded="true" />
            <Records expanded="false" />
        </Platform-Jaguar>
    </Library>
    <Window>
        <MainGeometry>01d9d0cb00010000000000fd0000012600000721000003d2000001050000014500000719000003ca000000000000</MainGeometry>
        <MainState>000000ff00000000fd00000002000000000000010000000234fc0200000001fb0000001000660069006c0065002d006c00690062010000003e000002340000005e00ffffff00000001000002c400000227fc0200000001fb00000010007400610073006b002d006c006900620000000049000002270000005e00ffffff000005110000023400000004000000040000000800000008fc000000020000000000000001000000180070006c006100740066006f0072006d002d0062006100720200000000ffffffff0000000000000000000000020000000200000010006d00610069006e002d0062006100720100000000ffffffff00000000000000000000001200700072006f006d006f002d0062006100720000000221ffffffff0000000000000000</MainState>
    </Window>
    <Audio Mute="false" />
    <Debug Prof="false" ProfExtra="true" />
</root>

 

Edited by Solo
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...