From 266f02e9d008eef9af7c40f258657a32efe1acfb Mon Sep 17 00:00:00 2001 From: stephena Date: Tue, 19 Feb 2008 12:33:07 +0000 Subject: [PATCH] More updates for 4A50 bankswitching support; I think it's very close now. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1397 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/common/FrameBufferGL.cxx | 14 +- stella/src/common/FrameBufferSoft.cxx | 10 +- stella/src/emucore/Cart.cxx | 4 +- stella/src/emucore/Cart3F.hxx | 6 +- stella/src/emucore/Cart4A50.cxx | 138 +-- stella/src/emucore/Cart4A50.hxx | 15 +- stella/src/emucore/Cart4K.cxx | 4 +- stella/src/emucore/DefProps.hxx | 459 +++++----- stella/src/emucore/M6532.cxx | 51 +- stella/src/emucore/M6532.hxx | 15 +- stella/src/emucore/TIA.cxx | 12 +- stella/src/emucore/TIA.hxx | 15 +- stella/src/emucore/m6502/src/System.cxx | 13 +- stella/src/emucore/m6502/src/System.hxx | 27 +- stella/src/emucore/stella.pro | 1050 +++++++++++++++-------- stella/src/gui/Dialog.cxx | 3 +- 16 files changed, 1146 insertions(+), 690 deletions(-) diff --git a/stella/src/common/FrameBufferGL.cxx b/stella/src/common/FrameBufferGL.cxx index 93858ee9c..799461939 100644 --- a/stella/src/common/FrameBufferGL.cxx +++ b/stella/src/common/FrameBufferGL.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: FrameBufferGL.cxx,v 1.96 2008-02-06 13:45:19 stephena Exp $ +// $Id: FrameBufferGL.cxx,v 1.97 2008-02-19 12:33:02 stephena Exp $ //============================================================================ #ifdef DISPLAY_OPENGL @@ -293,11 +293,6 @@ bool FrameBufferGL::setVidMode(VideoMode mode) myImageDim.x = (myScreenDim.w - myImageDim.w) / 2; myImageDim.y = (myScreenDim.h - myImageDim.h) / 2; - GLdouble orthoWidth = (GLdouble) - (myImageDim.w / myWidthScaleFactor); - GLdouble orthoHeight = (GLdouble) - (myImageDim.h / myHeightScaleFactor); - SDL_GL_SetAttribute( SDL_GL_RED_SIZE, myRGB[0] ); SDL_GL_SetAttribute( SDL_GL_GREEN_SIZE, myRGB[1] ); SDL_GL_SetAttribute( SDL_GL_BLUE_SIZE, myRGB[2] ); @@ -344,7 +339,7 @@ bool FrameBufferGL::setVidMode(VideoMode mode) p_glMatrixMode(GL_PROJECTION); p_glLoadIdentity(); - p_glOrtho(0.0, orthoWidth, orthoHeight, 0.0, 0.0, 1.0); + p_glOrtho(0.0, myImageDim.w, myImageDim.h, 0.0, 0.0, 1.0); p_glMatrixMode(GL_MODELVIEW); p_glLoadIdentity(); @@ -440,7 +435,7 @@ void FrameBufferGL::postFrameUpdate() { // Texturemap complete texture to surface so we have free scaling // and antialiasing - uInt32 w = myBuffer.width, h = myBuffer.height; + uInt32 w = myImageDim.w, h = myImageDim.h; p_glTexSubImage2D(myBuffer.target, 0, 0, 0, myBuffer.texture_width, myBuffer.texture_height, @@ -452,6 +447,9 @@ void FrameBufferGL::postFrameUpdate() p_glTexCoord2f(myBuffer.tex_coord[0], myBuffer.tex_coord[3]); p_glVertex2i(0, h); p_glEnd(); + // Overlay UI dialog boxes + + // Now show all changes made to the texture SDL_GL_SwapBuffers(); diff --git a/stella/src/common/FrameBufferSoft.cxx b/stella/src/common/FrameBufferSoft.cxx index 87d8a8bfe..78cc18345 100644 --- a/stella/src/common/FrameBufferSoft.cxx +++ b/stella/src/common/FrameBufferSoft.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: FrameBufferSoft.cxx,v 1.75 2008-02-06 13:45:19 stephena Exp $ +// $Id: FrameBufferSoft.cxx,v 1.76 2008-02-19 12:33:02 stephena Exp $ //============================================================================ #include @@ -701,11 +701,17 @@ void FrameBufferSoft::addDirtyRect(uInt32 x, uInt32 y, uInt32 w, uInt32 h) // Add a dirty rect to the UI rectangle list // TODO - intelligent merging of rectangles, to avoid overlap SDL_Rect temp; +#if 1 temp.x = myImageDim.x + x * myZoomLevel; temp.y = myImageDim.y + y * myZoomLevel; temp.w = w * myZoomLevel; temp.h = h * myZoomLevel; - +#else + temp.x = 0; + temp.y = 0; + temp.w = myScreenDim.w; + temp.h = myScreenDim.h; +#endif myRectList->add(&temp); // cerr << "addDirtyRect(): " diff --git a/stella/src/emucore/Cart.cxx b/stella/src/emucore/Cart.cxx index 787da9473..981856b07 100644 --- a/stella/src/emucore/Cart.cxx +++ b/stella/src/emucore/Cart.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Cart.cxx,v 1.36 2008-02-06 13:45:20 stephena Exp $ +// $Id: Cart.cxx,v 1.37 2008-02-19 12:33:03 stephena Exp $ //============================================================================ #include @@ -95,7 +95,7 @@ Cartridge* Cartridge::create(const uInt8* image, uInt32 size, else if(type == "3F") cartridge = new Cartridge3F(image, size); else if(type == "4A50") - cartridge = new Cartridge4A50(image); + cartridge = new Cartridge4A50(image, size); else if(type == "4K") cartridge = new Cartridge4K(image); else if(type == "AR") diff --git a/stella/src/emucore/Cart3F.hxx b/stella/src/emucore/Cart3F.hxx index a13b06183..cd2cbf5d4 100644 --- a/stella/src/emucore/Cart3F.hxx +++ b/stella/src/emucore/Cart3F.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Cart3F.hxx,v 1.12 2008-02-06 13:45:20 stephena Exp $ +// $Id: Cart3F.hxx,v 1.13 2008-02-19 12:33:03 stephena Exp $ //============================================================================ #ifndef CARTRIDGE3F_HXX @@ -35,7 +35,7 @@ class System; only used 8K this bankswitching scheme supports up to 512K. @author Bradford W. Mott - @version $Id: Cart3F.hxx,v 1.12 2008-02-06 13:45:20 stephena Exp $ + @version $Id: Cart3F.hxx,v 1.13 2008-02-19 12:33:03 stephena Exp $ */ class Cartridge3F : public Cartridge { @@ -44,7 +44,7 @@ class Cartridge3F : public Cartridge Create a new cartridge using the specified image and size @param image Pointer to the ROM image - @param size The size of the ROM image + @param size The size of the ROM image */ Cartridge3F(const uInt8* image, uInt32 size); diff --git a/stella/src/emucore/Cart4A50.cxx b/stella/src/emucore/Cart4A50.cxx index c131fe520..6e405d4f0 100644 --- a/stella/src/emucore/Cart4A50.cxx +++ b/stella/src/emucore/Cart4A50.cxx @@ -13,24 +13,28 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Cart4A50.cxx,v 1.9 2008-02-06 13:45:20 stephena Exp $ +// $Id: Cart4A50.cxx,v 1.10 2008-02-19 12:33:03 stephena Exp $ //============================================================================ #include +#include #include "Random.hxx" #include "System.hxx" +#include "M6532.hxx" #include "TIA.hxx" #include "Cart4A50.hxx" // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Cartridge4A50::Cartridge4A50(const uInt8* image) +Cartridge4A50::Cartridge4A50(const uInt8* image, uInt32 size) { // Copy the ROM image into my buffer - for(uInt32 addr = 0; addr < 65536; ++addr) - { - myImage[addr] = image[addr]; - } + // Supported file sizes are 32/64/128K, which are duplicated if necessary + if(size < 65536) size = 32768; + else if(size < 131072) size = 65536; + else size = 131072; + for(uInt32 slice = 0; slice < 131072 / size; ++slice) + memcpy(myImage + (slice*size), image, size); // Initialize RAM with random values class Random random; @@ -74,39 +78,48 @@ void Cartridge4A50::install(System& system) access.device = this; mySystem->setPageAccess(i >> shift, access); } + + // Mirror all access in TIA and RIOT; by doing so we're taking responsibility + // for that address space in peek and poke below. + mySystem->tia().install(system, *this); + mySystem->m6532().install(system, *this); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - uInt8 Cartridge4A50::peek(uInt16 address) { - uInt8 value = 0; + uInt8 value = 0;//mySystem->getDataBusState(); - if(!(address & 0x1000)) + if(!(address & 0x1000)) // Hotspots below 0x1000 { - // ReadHardware(); - checkBankSwitch(address, 0); + // Check for RAM or TIA mirroring + uInt16 lowAddress = address & 0x3ff; + if(lowAddress & 0x80) + value = mySystem->m6532().peek(address); + else if(!(lowAddress & 0x200)) + value = mySystem->tia().peek(address); + + checkBankSwitch(address); } else { - if((address & 0x1800) == 0x1000) + if((address & 0x1800) == 0x1000) // 2K region from 0x1000 - 0x17ff { - value = myIsRomLow ? - myImage[(address & 0x7ff) + mySliceLow] : - myRAM[(address & 0x7ff) + mySliceLow]; + value = myIsRomLow ? myImage[(address & 0x7ff) + mySliceLow] + : myRAM[(address & 0x7ff) + mySliceLow]; } - else if(((address & 0x1fff) >= 0x1800) && ((address & 0x1fff) <= 0x1dff)) + else if(((address & 0x1fff) >= 0x1800) && // 1.5K region from 0x1800 - 0x1dff + ((address & 0x1fff) <= 0x1dff)) { - value = myIsRomMiddle ? - myImage[(address & 0x7ff) + mySliceMiddle] : - myRAM[(address & 0x7ff) + mySliceMiddle]; + value = myIsRomMiddle ? myImage[(address & 0x7ff) + mySliceMiddle] + : myRAM[(address & 0x7ff) + mySliceMiddle]; } - else if((address & 0x1f00) == 0x1e00) + else if((address & 0x1f00) == 0x1e00) // 256B region from 0x1e00 - 0x1eff { - value = myIsRomHigh ? - myImage[(address & 0xff) + mySliceHigh] : - myRAM[(address & 0xff) + mySliceHigh]; + value = myIsRomHigh ? myImage[(address & 0xff) + mySliceHigh] + : myRAM[(address & 0xff) + mySliceHigh]; } - else if((address & 0x1f00) == 0x1f00) + else if((address & 0x1f00) == 0x1f00) // 256B region from 0x1f00 - 0x1fff { value = myImage[(address & 0xff) + 0xff00]; if(((myLastData & 0xe0) == 0x60) && @@ -124,33 +137,41 @@ uInt8 Cartridge4A50::peek(uInt16 address) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Cartridge4A50::poke(uInt16 address, uInt8 value) { - if(!(address & 0x1000)) + if(!(address & 0x1000)) // Hotspots below 0x1000 { - // WriteHardware(); - checkBankSwitch(address, value); + // Check for RAM or TIA mirroring + uInt16 lowAddress = address & 0x3ff; + if(lowAddress & 0x80) + mySystem->m6532().poke(address, value); + else if(!(lowAddress & 0x200)) + mySystem->tia().poke(address, value); + + checkBankSwitch(address); } else { - if((address & 0x1800) == 0x1000) + if((address & 0x1800) == 0x1000) // 2K region at 0x1000 - 0x17ff { if(!myIsRomLow) myRAM[(address & 0x7ff) + mySliceLow] = value; } - else if(((address & 0x1fff) >= 0x1800) && ((address & 0x1fff) <= 0x1dff)) + else if(((address & 0x1fff) >= 0x1800) && // 1.5K region at 0x1800 - 0x1dff + ((address & 0x1fff) <= 0x1dff)) { if(!myIsRomMiddle) myRAM[(address & 0x7ff) + mySliceMiddle] = value; } - else if((address & 0x1f00) == 0x1e00) + else if((address & 0x1f00) == 0x1e00) // 256B region at 0x1e00 - 0x1eff { if(!myIsRomHigh) myRAM[(address & 0xff) + mySliceHigh] = value; } - else if((address & 0x1f00) == 0x1f00) + else if((address & 0x1f00) == 0x1f00) // 256B region at 0x1f00 - 0x1fff { if(((myLastData & 0xe0) == 0x60) && ((myLastAddress >= 0x1000) || (myLastAddress < 0x200))) - mySliceHigh = (mySliceHigh & 0xf0ff) | ((address & 0x8) << 8) | ((address & 0x70) << 4); + mySliceHigh = (mySliceHigh & 0xf0ff) | ((address & 0x8) << 8) | + ((address & 0x70) << 4); } } @@ -159,93 +180,96 @@ void Cartridge4A50::poke(uInt16 address, uInt8 value) } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void Cartridge4A50::checkBankSwitch(uInt16 address, uInt8 value) +void Cartridge4A50::checkBankSwitch(uInt16 address) { - // Not bankswitching in the normal sense + uInt8 databus = mySystem->getDataBusState(); + // This scheme contains so many hotspots that it's easier to just check // all of them - if(((myLastData & 0xe0) == 0x60) && + if(((myLastData & 0xe0) == 0x60) && // Switch lower/middle/upper bank ((myLastAddress >= 0x1000) || (myLastAddress < 0x200))) { - if((address & 0x0f00) == 0x0c00) + if((address & 0x0f00) == 0x0c00) // Enable 256B of ROM at 0x1e00 - 0x1eff { myIsRomHigh = true; mySliceHigh = (address & 0xff) << 8; } - else if((address & 0x0f00) == 0x0d00) + else if((address & 0x0f00) == 0x0d00) // Enable 256B of RAM at 0x1e00 - 0x1eff { myIsRomHigh = false; mySliceHigh = (address & 0x7f) << 8; } - else if((address & 0x0f40) == 0x0e00) + else if((address & 0x0f40) == 0x0e00) // Enable 2K of ROM at 0x1000 - 0x17ff { myIsRomLow = true; mySliceLow = (address & 0x1f) << 11; } - else if((address & 0x0f40) == 0x0e40) + else if((address & 0x0f40) == 0x0e40) // Enable 2K of RAM at 0x1000 - 0x17ff { myIsRomLow = false; mySliceLow = (address & 0xf) << 11; } - else if((address & 0x0f40) == 0x0f00) + else if((address & 0x0f40) == 0x0f00) // Enable 1.5K of ROM at 0x1800 - 0x1dff { myIsRomMiddle = true; mySliceMiddle = (address & 0x1f) << 11; } - else if((address & 0x0f50) == 0x0f40) + else if((address & 0x0f50) == 0x0f40) // Enable 1.5K of RAM at 0x1800 - 0x1dff { myIsRomMiddle = false; mySliceMiddle = (address & 0xf) << 11; } - else if((address & 0x0f00) == 0x0400) + + // Stella helper functions + else if((address & 0x0f00) == 0x0400) // Toggle bit A11 of lower block address { mySliceLow = mySliceLow ^ 0x800; } - else if((address & 0x0f00) == 0x0500) + else if((address & 0x0f00) == 0x0500) // Toggle bit A12 of lower block address { mySliceLow = mySliceLow ^ 0x1000; } - else if((address & 0x0f00) == 0x0800) + else if((address & 0x0f00) == 0x0800) // Toggle bit A11 of middle block address { mySliceMiddle = mySliceMiddle ^ 0x800; } - else if((address & 0x0f00) == 0x0900) + else if((address & 0x0f00) == 0x0900) // Toggle bit A12 of middle block address { mySliceMiddle = mySliceMiddle ^ 0x1000; } } - if((address & 0xf75) == 0x74) + if((address & 0xf75) == 0x74) // { myIsRomHigh = true; - mySliceHigh = value << 8; + mySliceHigh = databus << 8; } - else if((address & 0xf75) == 0x75) + else if((address & 0xf75) == 0x75) // { myIsRomHigh = false; - mySliceHigh = (value & 0x7f) << 8; + mySliceHigh = (databus & 0x7f) << 8; } - else if((address & 0xf7c) == 0x78) + else if((address & 0xf7c) == 0x78) { - if((value & 0xf0) == 0) + if((databus & 0xf0) == 0) // Zero page 0xf8 (lower block address of ROM) { myIsRomLow = true; - mySliceLow = (value & 0xf) << 11; + mySliceLow = (databus & 0xf) << 11; } - else if((value & 0xf0) == 0x40) + else if((databus & 0xf0) == 0x40) // Zero page 0xf9 (lower block address of RAM) { myIsRomLow = false; - mySliceLow = (value & 0xf) << 11; + mySliceLow = (databus & 0xf) << 11; } - else if((value & 0xf0) == 0x90) + else if((databus & 0xf0) == 0x90) // Zero page 0xfa (middle block address of ROM) { myIsRomMiddle = true; - mySliceMiddle = ((value & 0xf) | 0x10) << 11; + mySliceMiddle = ((databus & 0xf) | 0x10) << 11; } - else if((value & 0xf0) == 0xc0) + else if((databus & 0xf0) == 0xc0) // Zero page 0xfb (middle block address of RAM) { myIsRomMiddle = false; - mySliceMiddle = (value & 0xf) << 11; + mySliceMiddle = (databus & 0xf) << 11; } } } diff --git a/stella/src/emucore/Cart4A50.hxx b/stella/src/emucore/Cart4A50.hxx index f29683c31..4f460e03a 100644 --- a/stella/src/emucore/Cart4A50.hxx +++ b/stella/src/emucore/Cart4A50.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Cart4A50.hxx,v 1.10 2008-02-06 13:45:20 stephena Exp $ +// $Id: Cart4A50.hxx,v 1.11 2008-02-19 12:33:03 stephena Exp $ //============================================================================ #ifndef CARTRIDGE4A50_HXX @@ -36,8 +36,8 @@ class System; RAM or ROM. The last 256 byte segment always points to the last 256 bytes of ROM. - @author Stephen Anthony - @version $Id: Cart4A50.hxx,v 1.10 2008-02-06 13:45:20 stephena Exp $ + @author Stephen Anthony & Eckhard Stolberg + @version $Id: Cart4A50.hxx,v 1.11 2008-02-19 12:33:03 stephena Exp $ */ class Cartridge4A50 : public Cartridge { @@ -46,8 +46,9 @@ class Cartridge4A50 : public Cartridge Create a new cartridge using the specified image @param image Pointer to the ROM image + @param size The size of the ROM image */ - Cartridge4A50(const uInt8* image); + Cartridge4A50(const uInt8* image, uInt32 size); /** Destructor @@ -147,11 +148,11 @@ class Cartridge4A50 : public Cartridge /** Check all possible hotspots */ - void checkBankSwitch(uInt16 address, uInt8 value); + void checkBankSwitch(uInt16 address); private: - // The 64K ROM image of the cartridge - uInt8 myImage[65536]; + // The 128K ROM image of the cartridge + uInt8 myImage[128*1024]; // The 32K of RAM on the cartridge uInt8 myRAM[32768]; diff --git a/stella/src/emucore/Cart4K.cxx b/stella/src/emucore/Cart4K.cxx index 52bbb5145..c5292416a 100644 --- a/stella/src/emucore/Cart4K.cxx +++ b/stella/src/emucore/Cart4K.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Cart4K.cxx,v 1.12 2008-02-06 13:45:20 stephena Exp $ +// $Id: Cart4K.cxx,v 1.13 2008-02-19 12:33:03 stephena Exp $ //============================================================================ #include @@ -76,7 +76,7 @@ void Cartridge4K::poke(uInt16, uInt8) } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void Cartridge4K::bank(uInt16 bank) +void Cartridge4K::bank(uInt16) { // Doesn't support bankswitching } diff --git a/stella/src/emucore/DefProps.hxx b/stella/src/emucore/DefProps.hxx index b722f4604..71c16f972 100644 --- a/stella/src/emucore/DefProps.hxx +++ b/stella/src/emucore/DefProps.hxx @@ -8,10 +8,10 @@ regenerated and the application recompiled. */ -#define DEF_PROPS_SIZE 2986 +#define DEF_PROPS_SIZE 2985 static const char* DefProps[DEF_PROPS_SIZE][21] = { - { "000509d1ed2b8d30a9d94be1b3b5febb", "", "", "Jungle Jane (2003) (Greg Zumwalt) (Pitfall! Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "000509d1ed2b8d30a9d94be1b3b5febb", "Greg Zumwalt", "", "Jungle Jane (2003) (Greg Zumwalt) (Hack)", "Hack of Pitfall!", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0060a89b4c956b9c703a59b181cb3018", "CommaVid, Irwin Gaines - Ariola", "CM-008 - 712 008-720", "Cakewalk (1983) (CommaVid) (PAL)", "AKA Alarm in der Backstube", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "007d18dedc1f0565f09c42aa61a6f585", "CCE", "C-843", "Worm War I (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "008543ae43497af015e9428a5e3e874e", "Retroactive", "", "Qb (V2.09) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -23,7 +23,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "00e19ebf9d0817ccfb057e262be1e5af", "Atari, Ed Logg, Carol Shaw", "CX2639, CX2639P", "Othello (1981) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "00eaee22034aff602f899b684c107d77", "Rainbow Vision - Suntek", "SS-001", "Time Race (Rainbow Vision) (PAL)", "AKA Space Jockey", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "00f7985c20b8bdf3c557fac4d3f26775", "Aaron Curtis", "", "AStar (NTSC)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "012020625a3227815e47b37fd025e480", "Atari", "CX2632", "Better Space Invaders (1999) (Rob Kudla) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "012020625a3227815e47b37fd025e480", "Rob Kudla", "", "Better Space Invaders (1999) (Rob Kudla) (Hack) [a]", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "01293bd90a4579abb7aed2f7d440681f", "Century", "", "Snoopy (1983) (Century) (PAL)", "AKA Snoopy and the Red Baron", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "01297d9b450455dd716db9658efb2fae", "TechnoVision", "TVS1002", "Save Our Ship (1983) (TechnoVision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "012b8e6ef3b5fd5aabc94075c527709d", "Starpath Corporation, Dennis Caswell", "AR-4302", "Party Mix (1983) (Starpath)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "24", "", "", "", "" }, @@ -66,7 +66,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "04e737c9d53cd84bfd5ee679954e4706", "Jone Yuan Telephonic Enterprise Co", "", "Checkers (Jone Yuan) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "04fccc7735155a6c1373d453b110c640", "HES, David Lubar", "535", "My Golf (1990) (HES) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0519f395d5f7d76be813b834aa51c0be", "Atari, Ian Shepard", "CX2604", "Space War (1978) (Atari) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0546f4e6b946f38956799dd00caab3b1", "HES / Thomas Jentzsch", "", "My Golf (1990) (HES) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0546f4e6b946f38956799dd00caab3b1", "Thomas Jentzsch", "", "My Golf (Thomas Jentzsch)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "056f5d886a4e7e6fdd83650554997d0d", "Parker Brothers, Ed Temple", "931504", "Amidar (1982) (Parker Bros) (PAL)", "", "Uncommon", "", "", "A", "A", "", "", "", "", "", "", "", "", "", "", "" }, { "056ff67dd9715fafa91fb8b0ddcc4a46", "", "", "Frisco (Unknown) (PAL) (Hack)", "", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "05824fcbe615dbca836d061a140a50e0", "Jeffry Johnston", "", "Radial Pong - Version 9 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -75,7 +75,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "05b45ba09c05befa75ac70476829eda0", "Parker Brothers, Rex Bradford", "931507", "Star Wars - Jedi Arena (1983) (Parker Bros) (PAL)", "Uses the Paddle Controllers (swapped)", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "YES", "", "", "", "", "", "" }, { "05c60458ec69e7fe8b1be973852d84f1", "", "", "Test (1996) (J.V. Matthews) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "05ccf96247af12eef59698f1a060a54f", "Quelle", "600273", "King Arthur (1983) (Quelle) (PAL)", "AKA Dragonfire", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "05d61b925d3d2474bab83f0a79bb5df1", "", "", "Cosmic Ark Stars (1997) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "05d61b925d3d2474bab83f0a79bb5df1", "Eckhard Stolberg", "", "Cosmic Ark Stars (1997) (Eckhard Stolberg)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "05eb4347f0ec8f4783983ca35ffd8d1b", "", "", "Qb (2.06) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "05ebd183ea854c0a1b56c218246fbbae", "Atari, Dan Hitchens", "CX2656", "Swordquest - EarthWorld (1982) (Atari) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "05f11fb2e45c4e47424d3cb25414d278", "", "", "Boring (NTSC) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -83,7 +83,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "0614ed51acd027d531e7c85c4f435292", "", "", "Narnia (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0651216c4a4a9c9ac5ada3013a317c72", "Jone Yuan Telephonic Enterprise Co", "", "Fishing Derby (Jone Yuan) (4K) (Hack)", "", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "06742cf522f23797157f215a1dc8a1a9", "", "", "Healthbars (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0685bd0bcb975ceef7041749a5454a48", "Piero Cavina", "", "11 Sprite Demo (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0685bd0bcb975ceef7041749a5454a48", "Piero Cavina", "", "11 Sprite Demo (Piero Cavina) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "06953ed762220dba63d63930d4ad0cc3", "", "", "Star Fire - Eckhard WIP (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "069c17beb1e8e0557adb8539fdcf6cba", "", "", "Phantom II / Pirate (PAL60)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "" }, { "06b6c5031b8353f3a424a5b86b8fe409", "Activision, Mike Lorenzen - Ariola", "EAX-023 - 711 023-720", "Oink! (1983) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, @@ -101,7 +101,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "07973be3ecfd55235bf59aa56bdef28c", "Suntek", "SS-036", "Criminal Persuit (Suntek) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "079fe9103515d15bc108577e234a484d", "", "", "Multi-Color Demo 0 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "07a3af1e18b63765b6807876366f5e8a", "Joe Grand", "", "SCSIcide Pre-release 2 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "07c76f2d88552d20ad2c0ed7aef406c6", "", "", "Blob, The (Cody Pittman) (Halloween Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "07c76f2d88552d20ad2c0ed7aef406c6", "Cody Pittman", "", "Blob (Cody Pittman) (Hack)", "Hack of Halloween", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "07f42847a79e4f5ae55cc03304b18c25", "Froggo", "FG1008", "Sea Hawk (1987) (Froggo)", "AKA Seahawk", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "07f91e33e76f53bb9d2731fd5d8a35a5", "Atari", "CX2632", "Space Invaders (1978) (Atari) [t1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0805366f1b165a64b6d4df20d2c39d25", "Atari, Dan Hitchens", "CX2650", "Berzerk (1982) (Atari) (PAL)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -122,7 +122,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "08f853e8e01e711919e734d85349220d", "Atari, Jerome Domurat, Michael Sierchio", "CX2667", "RealSports Soccer (1983) (Atari) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0906c6e0e4bda9c10cfa4c5fc64d2f4b", "Retroactive", "", "Qb (V0.12) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "090f0a7ef8a3f885048d213faa59b2f8", "Carrere Video - Teldec", "USC1012", "M.A.D. (1983) (Carrere Video) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "09274c3fc1c43bf1e362fda436651fd8", "", "", "Acid Drop (NTSC Conversion) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "240", "", "", "" }, + { "09274c3fc1c43bf1e362fda436651fd8", "Thomas Jentzsch", "", "Acid Drop (TJ)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "8", "240", "", "", "" }, { "09388bf390cd9a86dc0849697b96c7dc", "Absolute Entertainment, Alex DeMeo", "AG-045-04, AK-045-04", "Pete Rose Baseball (1988) (Absolute)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0945081a6bd00345ff3d58eb7a07330a", "", "", "Stampede (Unknown) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0956285e24a18efa10c68a33846ca84d", "Dismac", "", "Viagem Espacial (Dismac)", "AKA Star Voyager", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -134,7 +134,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "09d19274c20768f842e8fae84b766abe", "", "", "Star Fire - Animated Patricles (06-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "09e1ecf9bd2a3030d5670dba7a65e78d", "Atari, James Andreasen", "CX2654", "Haunted House (1982) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "09f89bbfa2ab00f1964d200e12d7ced0", "Atari", "MA017600", "Diagnostic Test Cartridge 2.6 (1982) (Atari) (Prototype) (4K)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0a1b98937911d621b004b1617446d124", "", "", "Hangman Pac-Man Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0a1b98937911d621b004b1617446d124", "", "", "Hangman Pac-Man Biglist1 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0a981c03204ac2b278ba392674682560", "Atari, Bob Whitehead - Sears", "CX2651 - 99805, 49-75602", "Blackjack (1977) (Atari)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "0aa208060d7c140f20571e3341f5a3f8", "U.S. Games Corporation, Paul Newell, Tom Sloper", "VC1009", "Towering Inferno (1982) (U.S. Games)", "Uses the Joystick Controllers (swapped)", "", "", "", "", "", "", "YES", "", "", "", "", "30", "220", "YES", "", "" }, { "0abf64ca504a116adca80f77f85e00fb", "", "", "Cube Conquest (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -143,7 +143,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "0aceb7c3bd13fe048b77a1928ed4267d", "Imagic, Bob Smith", "IA3201P, EIX-011-04I", "Star Voyager (1982) (Imagic) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0ad9a358e361256b94f3fb4f2fa5a3b1", "Atari, Carol Shaw, Nick 'Sandy Maiwald' Turner - Sears", "CX2608 - 49-75165", "Super Breakout (1982 - 1981) (Atari)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "0ae3497e731ca0bf6a77b23441d9d9f9", "", "", "Analog Clock (V0.0) (20-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0af51ceb4aecc7a8fc89781ac44a1973", "Barry Laws Jr.", "", "Face Invaders Deluxe by Barry Laws Jr. (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0af51ceb4aecc7a8fc89781ac44a1973", "Barry Laws Jr.", "", "Face Invaders Deluxe (Barry Laws Jr.) (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0afe6ae18966795b89314c3797dd2b1e", "Atari - GCC, Mark Ackerman, Noellie Alito", "CX2692, CX2692P", "Moon Patrol (1983) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0b01909ba84512fdaf224d3c3fd0cf8d", "", "", "Revenge of the Apes (Planet of the Apes Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0b1056f1091cfdc5eb0e2301f47ac6c3", "Tigervision, Karl T. Olinger", "7-001", "King Kong (1982) (Tigervision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "20", "", "", "", "" }, @@ -182,11 +182,11 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "0dd4c69b5f9a7ae96a7a08329496779a", "Tigervision, Karl T. Olinger", "7-001", "King Kong (1982) (Tigervision) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0de53160a8b54c3aa5aed8d68c970b62", "Quelle", "806.174 9", "Fuchs & Schweinchen Schlau (1983) (Quelle) (PAL)", "AKA Oink!", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0dfbdadf8f1bc718e7e1bb3ccd5fef3d", "", "", "Mr. Pac-Man (New start tune) (El Destructo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0e0808227ef41f6825c06f25082c2e56", "", "", "Candi (Space Invaders Hack)[o1]", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0e0808227ef41f6825c06f25082c2e56", "", "", "Candi (Hack) [a]", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0e08cd2c5bcf11c6a7e5a009a7715b6a", "", "", "Boing! (PD) [a1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0e224ea74310da4e7e2103400eb1b4bf", "Atari, Peter C. Niday, Howard Scott Warshaw", "", "Mind Maze (1984) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0e7e73421606873b544e858c59dc283e", "Digivision", "", "Super Soccer (Digivision)", "AKA RealSports Soccer", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "0eebfb60d437796d536039701ec43845", "Fabrizio Zavagli / CommaVid", "", "Cakewalk (PAL Conversion) (Fabrizio Zavagli)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0eebfb60d437796d536039701ec43845", "Fabrizio Zavagli", "", "Cakewalk (Fabrizio Zavagli)", "NTSC Conversion", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0eecb5f58f55de9db4eedb3a0f6b74a8", "Xonox - Beck-Tech", "6210, 06002, 06004, 99002", "Ghost Manor (1983) (Xonox) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, { "0ef64cdbecccb7049752a3de0b7ade14", "Atari, Joe Decuir, Steve Mayer, Larry Wagner", "CX26163P", "Combat (32 in 1) (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, { "0f14c03050b35d6b1d8850b07578722d", "Jeffry Johnston", "", "Radial Pong - Version 10 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -211,10 +211,10 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "106855474c69d08c8ffa308d47337269", "Atari, John Howard Palevich", "CX26151", "Dark Chambers (1988) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "107cc025334211e6d29da0b6be46aec7", "Atari, Bob Smith - Sears", "CX2648 - 49-75161", "Video Pinball (1981) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1086ff69f82b68d6776634f336fb4857", "Activision, David Crane", "AG-009", "Bloody Human Freeway (Activision) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "10958cd0a1a81d599005f1797ab0e51d", "Eduardo", "", "Centipede 2k (2000) (PD)", "Hack of Centipede (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "10958cd0a1a81d599005f1797ab0e51d", "", "", "Centipede 2k (2000) (PD) (Hack)", "Hack of Centipede", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "10a3cd14e5dcfdde6ff216a14ce7b7dd", "Atari", "CX262, CX2627P", "Human Cannonball (1979) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "10f62443f1ae087dc588a77f9e8f43e9", "Atari, Carla Meninsky", "CX2637, CX2637P", "Dodge 'Em (1980) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "110ac8ecaf1b69f41bc94c59dfcb8b2d", "Imagic", "IA3200", "Demon Attack (1982) (Imagic) [t1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "110ac8ecaf1b69f41bc94c59dfcb8b2d", "", "", "Demon Attack (Unknown)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "111029770226b319524134193886a10e", "Hozer Video Games", "", "Gunfight 2600 - One Limit Reached! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "11330eaa5dd2629052fac37cfe1a0b7d", "128-in-1 Junior Console", "", "Human Cannonball (128-in-1 Junior Console) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "113cd09c9771ac278544b7e90efe7df2", "Atari, Ed Logg, Carol Shaw - Sears", "CX2639 - 49-75162", "Othello (1981) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -227,7 +227,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "1266b3fd632c981f3ef9bdbf9f86ce9a", "Activision, Bob Whitehead", "EAZ-034-04, EAZ-034-04I", "Private Eye (1983) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1267e3c6ca951ff1df6f222c8f813d97", "", "", "Dragonfire (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1278f74ca1dfaa9122df3eca3c5bcaad", "Rainbow Vision - Suntek", "SS-013", "Bi! Bi! (Rainbow Vision) (PAL)", "AKA Skindiver", "", "", "", "", "", "", "", "", "", "", "", "38", "250", "", "", "" }, - { "1287535256bf5dff404839ac9e25c3e7", "", "", "Alien Pac-Man (Rev 2) by PacManPlus (Alien Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "1287535256bf5dff404839ac9e25c3e7", "PacManPlus", "Rev 2", "Alien Pac-Man (PacManPlus) (Hack)", "Hack of Alien", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "12937db3d4a80da5c4452b752891252d", "Digitel", "", "Megamania (1983) (Digitel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "12bca8305d5ab8ea51fe1cfd95d7ab0e", "Epyx, Steven A. Baker, Tod Frye, Peter Engelbrite", "80561-00250", "Summer Games (1987) (Epyx) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "12cd04d3298633413a756795c49dc0c6", "Starpath Corporation, Stephen Harland Landrum", "AR-4400", "Dragonstomper (Preview) (1982) (Starpath)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -236,9 +236,9 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "131864e1d18d3406048700d3c0760417", "Atari", "CX26168", "Off the Wall (1989) (Atari) (PAL) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "133a4234512e8c4e9e8c5651469d4a09", "Atari, Andrew Fuchs, Jeffrey Gusman, Dave Jolly, Suki Lee", "CX26117", "Obelix (1983) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "133b56de011d562cbab665968bde352b", "Activision, John Van Ryzin", "AG-038-04", "Cosmic Commuter (1984) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1345e972dbe08ea3e70850902e20e1a5", "Greg Troutman", "", "Dark Mage (rough beta) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "1345e972dbe08ea3e70850902e20e1a5", "Greg Troutman", "", "Dark Mage (rough beta) (Greg Troutman) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "1351c67b42770c1bd758c3e42f553fea", "Digivision", "", "Keystone Kapers (Digivision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "135708b9a7dd20576c1b66ab2a41860d", "", "", "Hangman Man Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "135708b9a7dd20576c1b66ab2a41860d", "", "", "Hangman Man Biglist1 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "13584411da0a8d431991035423fdc0dc", "Jone Yuan Telephonic Enterprise Co", "", "Skiing (Jone Yuan) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1367e41858be525710eb04d0dab53505", "", "", "Zelda (2003) (Kyle Pittman) (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "136f75c4dd02c29283752b7e5799f978", "Atari, Dan Hitchens - Sears", "CX2650 - 49-75168", "Berzerk (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -247,7 +247,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "13a37cf8170a3a34ce311b89bde82032", "Atari - GCC, Mark Ackerman, Glenn Parker", "CX2684, CX2684P", "Galaxian (1983) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "13a991bc9c2ff03753aeb322d3e3e2e5", "Goliath", "", "Condor Attack (1983) (Goliath) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "13aa1f9ac4249947e4af61319d9a08f2", "Atari - GCC", "CX2680, CX2680P", "RealSports Tennis (1983) (Atari) (PAL) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "13abc32f803165c458bb086fa57195fb", "Christian Samuel", "", "E.T. The Extra-Testical by Christian Samuel (E.T. Hack)", "Hack of E.T. The Extra-Terrestrial (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "13abc32f803165c458bb086fa57195fb", "Christian Samuel", "", "E.T. The Extra-Testical (Christian Samuel) (Hack)", "Hack of E.T. The Extra-Terrestrial", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "13d8326bf5648db4dafce45d25e62ddd", "", "", "Atari Logo Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "13dfb095e519a555a5b60b7d9d7169f9", "", "", "Red Line Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "140909d204abd6841c64cdad4d7765b4", "", "", "Moving Blue Ladder Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -287,12 +287,12 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "16f494f20af5dc803bc35939ef924020", "Mark De Smet", "", "Video Simon (Mark De Smet)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "16fbb36a6124567405a235821e8f69ee", "", "", "Star Fire (28-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "170e7589a48739cfb9cc782cbb0fe25a", "M Network, Hal Finney", "MT5666", "Astroblast (1982) (Mattel)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "171cd6b55267573e6a9c2921fb720794", "Atari / Kurt Howe", "", "Adventure 34 by Kurt Howe (Adventure Hack)", "", "New Release (Hack)", "", "", "", "", "", "", "", "NONE", "", "", "", "", "", "", "" }, - { "1733772165d7b886a94e2b4ed0f74ccd", "", "", "Boring Journey Escape (Journey - Escape Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "230", "", "", "" }, - { "1738b2e3f25ab3eef3cecb95e1d0d957", "", "", "Hangman Monkey Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "171cd6b55267573e6a9c2921fb720794", "Kurt Howe", "", "Adventure 34 (Kurt Howe) (Hack)", "Hack of Adventure", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1733772165d7b886a94e2b4ed0f74ccd", "", "", "Boring Journey Escape (Hack)", "Hack of Journey - Escape", "Hack", "", "", "", "", "", "", "", "", "", "", "", "230", "", "", "" }, + { "1738b2e3f25ab3eef3cecb95e1d0d957", "", "", "Hangman Monkey Biglist1 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "17512d0c38f448712f49f36f9d185c4e", "Retroactive", "", "Qb (Release Candidate #1) (Retroactive)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "17515a4d0b7ea5029ffff7dfa8456671", "Piero Cavina", "", "Multi-Sprite Demo V1.1 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "176d3fba7d687f2b23158098e103c34a", "", "", "Combat AI (16-02-2003) (Zach Matley)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "176d3fba7d687f2b23158098e103c34a", "Zach Matley", "", "Combat AI (16-02-2003) (Zach Matley)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "177504abd4260c4265e1338955e9fa47", "HCC Software", "", "Pitfall! (Steroids Hack)", "Hack of Pitfall! (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "17754da584db6f22838eea255e68b31e", "", "", "Death Derby (v0010) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "17ba72433dd41383065d4aa6dedb3d91", "", "", "SCSIcide (09-06-2001) (Joe Grand)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -303,7 +303,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "17ee23e5da931be82f733917adcb6386", "Salu, Dennis M. Kiss", "460758", "Acid Drop (1992) (Salu) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, { "1802cc46b879b229272501998c5de04f", "Atari, Christopher H. Omarzu", "CX26104", "Big Bird's Egg Catch (1983) (Atari)", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "", "", "" }, { "180c234496f31a8671226277e0afbf2f", "", "", "Greeting Cart Mario And Luigi(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "183020a80848e06a1238a1ab74079d52", "", "", "Missile Command (Amiga Mouse) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "183020a80848e06a1238a1ab74079d52", "Thomas Jentzsch", "", "Missile Command (Amiga Mouse) (2002) (TJ) (PAL)", "Uses Amiga Mouse Controller", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "1862fca4f98e66f363308b859b5863af", "Atari", "", "128-in-1 Junior Console (Chip 1) (1991) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, { "18760f1f9ca5e18610115cf7b815b824", "", "", "Star Fire (23-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "18b28b386abdadb3a700ac8fb68e639a", "Manuel Polik", "", "Gunfight 2600 (MP) (PAL)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -373,25 +373,25 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "1f2ae0c70a04c980c838c2cdc412cf45", "Atari - GCC", "CX2698", "Rubik's Cube (1984) (Atari)", "AKA Atari Video Cube", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1f349dd41c3f93c4214e5e308dccb056", "", "", "Virtual Pet Demo 2 (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1f40eefc7447336ae6cd8ffa5eb325be", "Atari, Chris Crawford", "", "Wizard (1980) (Atari) (Prototype) (4K) [a]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1f562b89d081e36d58e6fc943512ec05", "", "", "Hangman Man Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1f562b89d081e36d58e6fc943512ec05", "", "", "Hangman Man Biglist2 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1f5a2927a0b2faf87540b01d9d7d7fd1", "Pet Boat", "", "Tennis (Pet Boat) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1f60e48ad98b659a05ce0c1a8e999ad9", "", "", "Mondo Pong V2 (Piero Cavina) (PD)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "1f773a94d919b2a3c647172bbb97f6b4", "Atari, Peter C. Niday", "CX26115", "Dumbo's Flying Circus (1983) (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1fa58679d4a39052bd9db059e8cda4ad", "Imagic, Dan Oliver", "03208", "Laser Gates (1983) (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "200309c8fba0f248c13751ed4fc69bab", "Jeffry Johnston", "", "Radial Pong - Version 1 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2008c76deba5953201ef75a09b2ff7dc", "", "", "Fortress (21-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "200a9d2a7cb4441ce4f002df6aa47e38", "Eduardo", "", "Doomzerk (PD)", "Hack of Berzerk (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "200a9d2a7cb4441ce4f002df6aa47e38", "", "", "Doomzerk (PD) (Hack)", "Hack of Berzerk", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2016726db38ad6a68b4c48ba6fe51557", "Piero Cavina, Erik Mooney", "", "INV 2 (Piero Cavina, Erik Mooney)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "203049f4d8290bb4521cc4402415e737", "Tigervision, Robert H. O'Neil", "7-007", "Polaris (1983) (Tigervision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "203abb713c00b0884206dcc656caa48f", "Imagic, Bob Smith", "03207, IZ-001-04", "Moonsweeper (1983) (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "203b1efc6101d4b9d83bb6cc1c71f67f", "Quelle", "685.996 1", "Teller-Jonglieren! (1983) (Quelle) (PAL)", "AKA Dancing Plate", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "205070b6a0d454961dd9196a8e81d877", "", "", "Hangman Monkey Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "205070b6a0d454961dd9196a8e81d877", "", "", "Hangman Monkey Biglist2 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "205f4e080db97d3641a780c8c40261ef", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2091af29b4e7b86914d79d9aaa4cbd20", "CBS Electronics", "4L1802", "Donkey Kong Junior (1983) (CBS Electronics) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "20dca534b997bf607d658e77fbb3c0ee", "Mythicon, Bill Bryner, Bruce de Graaf", "MA1002", "Fire Fly (1983) (Mythicon)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "20edcc3aa6c189259fa7e2f044a99c49", "Spectravision, Spectravideo", "SA-201", "Gangster Alley (1982) (Spectravision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "211774f4c5739042618be8ff67351177", "Atari - GCC, Mark Ackerman, Glenn Parker", "CX2684", "Galaxian (1983) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "211f76dff0b7dad3f6fcac9d938ee61a", "", "", "Custer's Viagra (JSK) (Custer's Revenge Hack) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, + { "211f76dff0b7dad3f6fcac9d938ee61a", "JSK", "", "Custer's Viagra (JSK) (Hack) [a]", "Hack of Custer's Revenge", "Hack", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "211fbbdbbca1102dc5b43dc8157c09b3", "Apollo, Dan Oliver", "AP-2009", "Final Approach (1982) (Apollo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2124cf92978c46684b6c39ccc2e33713", "", "", "Sea Monster (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "21299c8c3ac1d54f8289d88702a738fd", "K-Tel Vision", "", "Spider Maze (1982) (K-Tel Vision)", "AKA Spider Kong", "", "", "", "", "", "", "", "", "", "", "", "25", "220", "", "", "" }, @@ -410,15 +410,15 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "2240655247d6de1c585564004a853ab7", "", "", "Fu Kung! (V0.17) (07-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "225522777dc7155627808bde0c1d0ef0", "", "", "This Planet Sucks Demo 1 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "40", "", "", "", "" }, { "22675cacd9b71dea21800cbf8597f000", "Atari, David Crane", "CX2605, CX2605P", "Outlaw (1978) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "227532d82505c3c185a878273c285d5f", "", "", "Hangman Man Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "227532d82505c3c185a878273c285d5f", "", "", "Hangman Man Original Words (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "22abbdcb094d014388d529352abe9b4b", "Apollo", "AP-2012", "Squoosh (1983) (Apollo) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "22b22c4ce240303012e8a9596ae8d189", "", "", "Skeleton+ (03-05-2003) (Eric Ball) (PAL)", "", "", "STEREO", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "22f6b40fc82110d68e50a1208ae0bb97", "", "", "Purple Bar Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2319922df4d0c820b3e5f15faa870cc3", "Atari - GCC, Mike Feinstein", "CX2681, CX2681P", "Battlezone (1983) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2327456f86d7e0deda94758c518d05b3", "Digitel", "", "Mr. Postman (Digitel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2351d26d0bfdee3095bec9c05cbcf7b0", "", "", "Warring Worms (19-01-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "235436ab0832370e73677c9c6f0c8b06", "Jeff 'Yak' Minter", "", "Beast Invaders (double shot Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2365e1534d67f94d8670394ab99150ce", "", "", "Missile Command (CX-80 Trackball) (NTSC) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "235436ab0832370e73677c9c6f0c8b06", "", "", "Beast Invaders (Double Shot) (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2365e1534d67f94d8670394ab99150ce", "Thomas Jentzsch", "", "Missile Command (CX-80 Trackball) (2002) (TJ)", "Uses CX-80 TrackBall Controller", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "23d445ea19a18fb78d5035878d9fb649", "CBS Electronics", "4L1818, 4L1819, 4L1820", "Mouse Trap (1982) (CBS Electronics) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "23e4ca038aba11982e1694559f3be10f", "", "", "Big Dig (V3) (20-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "23fad5a125bcd4463701c8ad8a0043a9", "CCE", "C-840", "Stone Age (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "26", "220", "", "", "" }, @@ -438,7 +438,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "24b5f4bbdb853eca38ea0cae2dfe73a1", "", "", "Home Run (Unknown) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "24b9adac1b4f85b0bac9bf9b9e180906", "Angelino", "", "Space 2002 by Angelino (Space Jockey Hack)", "Hack of Space Jockey (1982) (US Games)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "24d018c4a6de7e5bd19a36f2b879b335", "Activision, Larry Miller", "AX-021", "Spider Fighter (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, - { "24d9a55d8f0633e886a1b33ee1e0e797", "", "", "Dragon Defender (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "15", "240", "YES", "", "" }, + { "24d9a55d8f0633e886a1b33ee1e0e797", "Thomas Jentzsch", "", "Dragon Defender (Thomas Jentzsch)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "15", "240", "YES", "", "" }, { "24df052902aa9de21c2b2525eb84a255", "Imagic, Dennis Koble", "IA3000", "Trick Shot (1982) (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "24fbf8250a71611e40ef18552e61b009", "", "", "Movable Grid Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2516f4f4b811ede4ecf6fbeb5d54a299", "Quelle", "701.134 9", "Schiessbude (1983) (Quelle) (PAL)", "AKA Carnival", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -457,7 +457,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "25e73efb9a6edf119114718bd2f646ba", "Atari, Suki Lee", "CX26113", "Miss Piggy's Wedding (1983) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, { "25f2e760cd7f56b88aac88d63757d41b", "Activision, Bob Whitehead - Ariola", "EAG-002, EAG-002-04I, PAG-002 - 711 002-715", "Boxing (1980) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "25f9cf703575c5d63048c222f5463758", "", "", "Multi-Sprite Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "260c787e8925bf3649c8aeae5b97dcc0", "ITT Family Games / Thomas Jentzsch", "", "Hell Driver (ITT Family Games) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "36", "", "", "", "" }, + { "260c787e8925bf3649c8aeae5b97dcc0", "Thomas Jentzsch", "", "Hell Driver (Thomas Jentzsch)", "NTSC Conversion, joystick ports swapped", "Homebrew", "", "", "", "", "", "YES", "", "", "", "", "36", "", "", "", "" }, { "262ccb882ff617d9b4b51f24aee02cbe", "Atari, Douglas Neubauer", "CX26154, CX26154P", "Super Football (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "265a85f66544eaf95fda06c3d9e48abf", "", "", "Tunnel Demo (Cycling Colours) (29-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "265c74a956500bd31efd24adc6d5ccf6", "Activision, Larry Miller", "AX-026, AX-026-04", "Enduro (1983) (Activision) (8K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -471,7 +471,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "273ce50db5a0d6da7ea827a54f44dee9", "", "", "Island Flyer Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "274d17ccd825ef9c728d68394b4569d2", "Playaround", "202", "Bachelorette Party (1982) (Playaround)", "Uses the paddle controllers", "Extremely Rare", "", "", "", "", "", "", "PADDLES", "", "", "", "22", "222", "YES", "", "" }, { "277cca62014fceebb46c549bac25a2e3", "Activision, Bob Whitehead", "AG-002, CAG-002, AG-002-04", "Boxing (1980) (Activision) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "278155fc9956e9b6ef2359eb238f7c7f", "", "", "Donkey Kong Junior (Coleco) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "278155fc9956e9b6ef2359eb238f7c7f", "", "", "Donkey Kong Junior (Unknown) (Hack)", "Hack of Donkey Kong Junior", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2783006ee6519f15cbc96adae031c9a9", "Telegames", "", "Night Stalker (1989) (Telegames) (PAL) [a]", "AKA Dark Cavern", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "278f14887d601b5e5b620f1870bc09f6", "", "", "SWOOPS! (v0.96) (Thomas Jentzsch)", "Uses the Joystick (L) and Paddle (R) Controllers", "", "", "", "", "", "", "", "", "PADDLES", "", "", "30", "", "", "", "" }, { "27a3c5216b6c6e96e321634973b73784", "", "", "Greeting Cart Atari Coin (V1) (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -486,7 +486,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "2825f4d068feba6973e61c84649489fe", "", "", "Boom Bang (Unknown) (PAL)", "AKA Crackpots", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "282a77841cb3d33af5b56151acba770e", "Quelle", "311388", "Black Hole (1983) (Quelle) (PAL)", "AKA Cosmic Ark", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "283dee88f295834c4c077d788f151125", "Retroactive", "", "Qb (2.11) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "28a2bea8f84936cb2e063f857414cda0", "", "", "Mega Mania Raid (1999) (Thiago Paiva)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "28a2bea8f84936cb2e063f857414cda0", "Thiago Paiva", "", "Mega Mania Raid (1999) (Thiago Paiva) (Hack)", "Hack of Megamania", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "28a4cd87fb9de4ee91693a38611cb53c", "", "", "Skeleton (V1.1) (NTSC) (24-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "28d5df3ed036ed63d33a31d0d8b85c47", "Bit Corporation", "PG204", "Open, Sesame! (1982) (BitCorp) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "YES", "", "" }, { "2903896d88a341511586d69fcfc20f7d", "Activision, David Crane", "AX-014, AX-014-04", "Grand Prix (1982) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -497,10 +497,10 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "29396db58406084e416032c372734a3e", "", "", "Gunfight 2600 - Fixed Beta Release! (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2942680c47beb9bf713a910706ffabfe", "", "", "Blue Line Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "294762000e853b4319f9991c1ced5dfc", "", "", "T.F. Space Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "295f3679bdf91ca5e37da3f787b29997", "", "", "Exorcise (Adventure Hack)", "Hack of Adventure (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "295f3679bdf91ca5e37da3f787b29997", "", "", "Exorcise (Hack)", "Hack of Adventure", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "29630a20d356fb58685b150bfa8f00c3", "M Network, Kevin Miller", "MT5687", "International Soccer (1982) (Mattel) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "297c405afd01f3ac48cdb67b00d273fe", "Atari - GCC, Ava-Robin Cohen", "CX26123, CX26123P", "Jr. Pac-Man (1984) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2982e655dffc89d218a0a3072cfc6811", "", "", "Mini Golf 812631 (Miniature Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2982e655dffc89d218a0a3072cfc6811", "", "", "Mini Golf 812631 (Hack)", "Hack of Miniature Golf", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "29949f893ef6cb9e8ecb368b9e99eee4", "Erik Eid", "", "Euchre (Alpha) (NTSC) (31-08-2002) (Erik Eid)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "299eb1ad959176b2c89f36082ee5e861", "", "", "Death Derby (14-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "29dfa26b7988af9984d617708e4fc6e2", "", "", "Boulderdash Demo (05-04-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -509,7 +509,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "2a156728c0123034bd73e25bf8c70a88", "Tigervision", "7-005", "Marauder (1982) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2a1b454a5c3832b0240111e7fd73de8a", "Tigervision, Bill Hogue", "7-011", "Miner 2049er Volume II (1983) (Tigervision)", "", "", "", "", "", "", "", "", "", "", "", "", "28", "", "YES", "", "" }, { "2a2f46b3f4000495239cbdad70f17c59", "CommaVid, John Bronstein - Ariola", "CM-003 - 712 003-720", "Cosmic Swarm (1982) (CommaVid) (PAL)", "AKA Angriff der Termiten", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "2a33e21447bf9e13dcfed85077ff6b40", "", "", "Backwards Cannonball v2 (Human Cannonball Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2a33e21447bf9e13dcfed85077ff6b40", "", "", "Backwards Cannonball v2 (Hack)", "Hack of Human Cannonball", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2a360bc85bf22de438651cf92ffda1de", "Bit Corporation", "PGP213", "Spy Vs. Spy (1983) (BitCorp) (PAL)", "AKA Chopper Command", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2a9f9001540c55a302befd8e9d54b47b", "Atari, Dan Hitchens", "CX2697, CX2697P", "Mario Bros. (1983) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2aa5e56d36c2e58b6f2856109f2099a9", "Atari, Larry Kaplan - Sears", "CX2628 - 6-99842, 49-75117", "Bowling (1979) (Atari) (4K) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -519,10 +519,10 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "2ae700c9dba843a68dfdca40d7d86bd6", "TechnoVision / Thomas Jentzsch", "", "Pharaoh's Curse (TechnoVision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "40", "240", "YES", "", "" }, { "2b1589c7e1f394ae6a1c046944f06688", "Carrere Video, Todd Marshall, Wes Trager, Henry Will - Teldec", "USC2003", "Eggomania (1983) (Carrere Video) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "250", "", "", "" }, { "2b27eb194e13f3b38d23c879cc1e3abf", "Quelle", "402.272 9", "Super-Ferrari (1983) (Quelle) (PAL)", "AKA Enduro", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2b42da79a682ed6e2d735facbf70107e", "", "", "DKjr Improved (Donkey Kong Junior Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2b42da79a682ed6e2d735facbf70107e", "", "", "DKjr Improved (Hack)", "Hack of Donkey Kong Jr.", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2b430c00dc79e495762ac59b2f9b4fcd", "Activision, David Crane", "AX-018, AX-018-04", "Pitfall! (1982) (Activision) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2b6f831ff8bca32d6ecc5a0964100bca", "Spiceware", "SW-01", "Medieval Mayhem (PAL)", "", "Homebrew", "STEREO", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "" }, - { "2b71a59a53be5883399917bf582b7772", "Greg Troutman", "", "Dark Mage (final beta) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "2b71a59a53be5883399917bf582b7772", "Greg Troutman", "", "Dark Mage (final beta) (Greg Troutman) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "2ba02f509a4991aa176ba8d9e540df3d", "Atari, Mark R. Hahn", "CX2678", "Dukes of Hazzard (1983) (Atari) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2bb9f4686f7e08c5fcc69ec1a1c66fe7", "Atari - GCC, Mike Feinstein, John Allred", "CX2688", "Jungle Hunt (1983) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2bc26619e31710a9884c110d8430c1da", "Atari, Bob Whitehead", "CX2652, CX2652P", "Casino (1979) (Atari) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "60", "", "", "", "" }, @@ -538,11 +538,11 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "2c3d5df0a55500cd59916dbb4fee3fa4", "", "", "Death Derby (Experiment 02) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2c45c3eb819a797237820a1816c532eb", "Atari", "CX26163P", "Boxing (32 in 1) (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2c8835aed7f52a0da9ade5226ee5aa75", "Arcadia Corporation, Stephen Harland Landrum", "AR-4101", "Communist Mutants from Space (1982) (Arcadia)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2c8c11295d8613f875b7bcf5253ab9bb", "", "", "Kool Aid Man (PAL Conversion) (16-11-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2c9fadd510509cc7f28f1ccba931855f", "", "", "Hangman Invader Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2c8c11295d8613f875b7bcf5253ab9bb", "Fabrizio Zavagli", "", "Kool Aid Man (PAL Conversion) (16-11-2002) (Fabrizio Zavagli) (PAL60)", "PAL60 Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "" }, + { "2c9fadd510509cc7f28f1ccba931855f", "", "", "Hangman Invader Biglist1 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2cb42cf62b2f25f59f909b5447821b14", "Atari, Christopher H. Omarzu", "CX26104", "Big Bird's Egg Catch (1983) (Atari) (PAL) [a]", "Uses Kids/Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "250", "", "", "" }, { "2cccc079c15e9af94246f867ffc7e9bf", "PlayAround", "203", "Jungle Fever (1982) (PlayAround)", "", "", "", "", "", "", "", "", "", "", "", "", "24", "", "YES", "", "" }, - { "2cefa695df2ed020899a7df7bb1e3a95", "", "", "A-Team (2002) (Manuel Polik And Fabrizio Zavagli) (A-Team Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2cefa695df2ed020899a7df7bb1e3a95", "Manuel Polik, Fabrizio Zavagli", "", "A-Team (2002) (Manuel Polik) (Hack)", "Hack of A-Team", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2cf20f82abcae2decff88db99331e071", "Activision, Mike Lorenzen", "AX-023", "Oink! (1983) (Activision) (8K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2cfb188c1091cc7ec2a7e60064d2a758", "", "", "Space Invaders Hack Demo (2003) (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2d16a8b59a225ea551667be45f554652", "Quelle", "802.744 3", "Der Geheimkurier (1983) (Quelle) (PAL)", "AKA Mr. Postman", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -554,7 +554,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "2d76c5d1aad506442b9e9fb67765e051", "Apollo, Ed Salvo", "AP-2004", "Lost Luggage (1981) (Apollo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2d9e5d8d083b6367eda880e80dfdfaeb", "Selchow & Righter - QDI", "87", "Glib (1983) (Selchow & Righter)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2dbc92688f9ba92a7e086d62be9df79d", "", "", "How to Draw a Playfield (1997) (Jim Crawford) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2dbdca3058035d2b40c734dcf06a86d9", "Thomas Jentzsch", "", "Asteroids DC+ by Thomas Jentzsch (Asteroids Hack)", "Uses the Joystick (left) or Steering (right) Controller", "New Release (Hack)", "", "", "", "", "", "", "", "DRIVING", "", "", "", "", "YES", "", "" }, + { "2dbdca3058035d2b40c734dcf06a86d9", "Thomas Jentzsch", "", "Asteroids DC+ (Thomas Jentzsch) (Hack)", "Uses the Joystick (left) or Steering (right) Controller", "Hack", "", "", "", "", "", "", "", "DRIVING", "", "", "", "", "YES", "", "" }, { "2dcf9ce486393cd36ca0928cd53b96cb", "Atari - GCC, Mike Feinstein, John Allred", "CX2688, CX2688P", "Jungle Hunt (1983) (Atari) (PAL) [a2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2dfec1615c49501fefc02165c81955e6", "", "", "Song (05-11-2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "2e0aed5bb619edcefa3fafb4fbe7c551", "", "", "Qb (2.06) (Retroactive) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -589,8 +589,8 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "30685b9b6ebd9ba71536dd7632a1e3b6", "Dactari", "", "Tennis (Dactari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3091af0ef1a61e801f4867783c21d45c", "CCE", "C-862", "Crackpots (1983) (CCE) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "30997031b668e37168d4d0e299ccc46f", "", "", "John K Harvey's Equalizer (PAL) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "30c92c685224dc7a72b9bbe5eb62d004", "", "", "Hangman Monkey Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "30e012e8d50330c8972f126b8e913bc4", "", "", "Indy 500 (1978) (Atari) [h3]", "", "", "", "", "", "", "", "", "DRIVING", "DRIVING", "", "", "28", "", "", "", "" }, + { "30c92c685224dc7a72b9bbe5eb62d004", "", "", "Hangman Monkey Original Words (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "30e012e8d50330c8972f126b8e913bc4", "", "", "Indy 500 (Hack) [a2]", "Hack of Indy 500", "Hack", "", "", "", "", "", "", "DRIVING", "DRIVING", "", "", "28", "", "", "", "" }, { "30e0ab8be713208ae9a978b34e9e8e8c", "Atari, Mike Lorenzen", "CX2630, CX2630P", "Circus Atari (1980) (Atari) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "30f0b49661cfcfd4ec63395fab837dc3", "Sega, Robert Zdybel - Teldec", "004-01", "Star Trek - Strategic Operations Simulator (1983) (Sega) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "3105967f7222cc36a5ac6e5f6e89a0b4", "Sega - Bally Midway", "011-01, 011-02", "Spy Hunter (1984) (Sega)", "Uses Joystick Coupler", "", "", "", "", "", "", "", "", "", "", "", "31", "", "", "", "" }, @@ -611,8 +611,8 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "321c3451129357af42a375d12afd4450", "Atari", "CX26177", "Ikari Warriors (1989) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "32244e55ce6ec6bfbd763f33384bdc2e", "Activision, Steve Cartwright", "AX-027", "Plaque Attack (1983) (Activision) (16K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3225676f5c0c577aeccfaa7e6bedd765", "CCE", "C-1002", "Pole Position (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "324cb4a749bcac4f3db9da842b85d2f7", "", "", "Climber 5 (01-05-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "NO" }, - { "327468d6c19697e65ab702f06502c7ed", "", "", "Aster-Hawk (2002) (Charles Morgan) (Asteroids Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "324cb4a749bcac4f3db9da842b85d2f7", "Dennis Debro", "", "Climber 5 (01-05-2003) (Dennis Debro)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "NO" }, + { "327468d6c19697e65ab702f06502c7ed", "Charles Morgan", "", "Aster-Hawk (2002) (Charles Morgan) (Hack)", "Hack of Asteroids", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "3276c777cbe97cdd2b4a63ffc16b7151", "Atari - GCC, Mike Feinstein, Kevin Osborn", "CX2691", "Joust (1983) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "327fe8cf94f3a45c35a840a453df1235", "", "", "Spice Girls Rule Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "328949872e454181223a80389d03c122", "", "", "Home Run (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -621,11 +621,11 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "32ecb5a652eb73d287e883eea751d99c", "", "", "Bowling (Dactar)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "32f4e47a71601ab06cfb59e1c6a0b846", "Ed Federmeyer", "", "Sound X (1994) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3316ee2f887e9cb9b54dd23c5b98c3e2", "", "", "Texas Golf (miniature Gold Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "331938989f0f33ca39c10af4c09ff640", "", "", "Combat - Tank AI (19-04-2003) (Zach Matley)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "331938989f0f33ca39c10af4c09ff640", "Zach Matley", "", "Combat - Tank AI (19-04-2003) (Zach Matley)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "332f01fd18e99c6584f61aa45ee7791e", "Home Vision - Gem Int'l Corp.", "VCS83118", "X'Mission (1983) (Home Vision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "0", "", "YES", "", "" }, { "3347a6dd59049b15a38394aa2dafa585", "Parker Brothers, Robert Jaeger", "PB5760", "Montezuma's Revenge (1984) (Parker Bros)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3349fbd01dde378b31f72bd8dc793dc5", "", "", "Greeting Cart (RSIDDALL) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "335793736cbf6fc99c9359ed2a32a49d", "", "", "Analog Clock (V0.0) (20-01-2003) (AD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "335793736cbf6fc99c9359ed2a32a49d", "", "", "Analog Clock (V0.0) (20-01-2003) (AD) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "335a7c5cfa6fee0f35f5824d1fa09aed", "Sega - Beck-Tech - Teldec", "006-01", "Congo Bongo (1983) (Sega) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3367eeba3269aa04720abe6169767502", "", "", "Space Treat (30-12-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "33cac5e767a534c95d292b04f439dc37", "Jone Yuan Telephonic Enterprise Co", "", "Tapeworm (Jone Yuan)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -642,13 +642,13 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "34c808ad6577dbfa46169b73171585a3", "Apollo", "AP-2012", "Squoosh (1983) (Apollo) (Prototype) [a]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "34ca2fcbc8ba4a0b544acd94991cfb50", "Atari, Robert C. Polaro", "", "Dukes of Hazzard (1980) (Atari) (Prototype) (4K)", "AKA Stunt Cycle", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "34e37eaffc0d34e05e40ed883f848b40", "Retroactive", "", "Qb (2.15) (Retroactive) (Stella)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "34f4b1d809aa705ace6e46b13253fd3b", "", "", "Nothern Alliance (Aaron Bergstrom) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "34f4b1d809aa705ace6e46b13253fd3b", "Aaron Bergstrom", "", "Nothern Alliance (Aaron Bergstrom) (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "34fd4fcb40ff5babce67f8b806d5969c", "", "", "Boxing (Dactari) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "35163b56f4a692a232ae96ad3e23310f", "Retroactive", "", "Qb (2.12) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "3556e125681aea864e17b09f3f3b2a75", "", "", "Incoming (2 Player Demo) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3577e19714921912685bb0e32ddf943c", "TechnoVision", "TVS1003", "Pharaoh's Curse (1983) (TechnoVision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "35ae903dff7389755ad4a07f2fb7400c", "", "", "Colored Wall Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "35b10a248a7e67493ec43aeb9743538c", "", "", "Defender (Dor-x) (Defender Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "35b10a248a7e67493ec43aeb9743538c", "Dor-x", "", "Defender (Dor-x) (Hack)", "Hack of Defender", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "35b43b54e83403bb3d71f519739a9549", "Parker Brothers, Dave Engman, Isabel Garret", "PB5950", "McDonald's (1983) (Parker Bros) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "35be55426c1fec32dfb503b4f0651572", "Men-A-Vision", "", "Air Raid (Men-A-Vision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "NTSC50", "", "250", "YES", "", "" }, { "35fa32256982774a4f134c3347882dff", "Retroactive", "", "Qb (V0.05) (Macintosh) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -685,7 +685,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "3882224adbd0ca7c748b2a1c9b87263e", "Atari, Tod Frye", "CX2657", "Swordquest - FireWorld (1982) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3889351c6c2100b9f3aef817a7e17a7a", "CCE", "", "Dolphin (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "38bd172da8b2a3a176e517c213fcd5a6", "Atari", "", "Stand Alone Test Cart (1982) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "38c362dcd5cad5a62e73ae52631bd9d8", "", "", "Baubles (14-11-2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "38c362dcd5cad5a62e73ae52631bd9d8", "Jake Patterson", "", "Baubles (14-11-2001) (Jake Patterson) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "38cf93eacfb2fa9a2c5e39059ff35a74", "", "", "WacMan (2003) (Greg Zumwalt) (Ms. Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "38de7b68379770b9bd3f7bf000136eb0", "Imagic, Mark Klein", "EIZ-003-04I", "Subterranea (1983) (Imagic) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "391764720140c432aec454a468f77a40", "Video Game Program", "", "Miss Pack Man (Video Game Program) (PAL)", "AKA Ms. Pac-Man", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, @@ -751,11 +751,11 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "3e33ac10dcf2dff014bc1decf8a9aea4", "Spectravideo - Video Games Industries Corporation, Mike Schwartz - Ralston Purina", "", "Chase the Chuckwagon (1983) (Spectravideo)", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "YES", "", "" }, { "3e49da621193d2611a4ea152d5d5ca3a", "", "", "Atari Logo Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3e5ca1afaa27c5da3c54c9942fec528b", "", "", "2600 Digital Clock (Demo 2) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3e6dab92009d6034618cb6b7844c5216", "", "", "Ed Invaders (Pepsi Invaders Hack)", "Hack of Pepsi Invaders (Coca-Cola)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3e6dab92009d6034618cb6b7844c5216", "", "", "Ed Invaders (Hack)", "Hack of Pepsi Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3e899eba0ca8cd2972da1ae5479b4f0d", "Coleco, Joseph Biel", "2457", "Venture (1982) (Coleco)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "3e90cf23106f2e08b2781e41299de556", "Activision, David Crane", "AX-018, AX-018-04", "Pitfall! (1982) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3eae062a9b722bda1255d474a87eca5c", "Atari, David Crane", "CX2605, CX2605P", "Outlaw (1978) (Atari) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3eb1e34a4f0eec36f12e7336badcecf2", "", "", "Baubles (V0.001) (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3eb1e34a4f0eec36f12e7336badcecf2", "Jake Patterson", "", "Baubles (V0.001) (2001) (Jake Patterson) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3eb21313ea5d5764c5ed9160a5a55a83", "Activision, Alan Miller", "AX-012, CAX-012, AX-012-04", "Ice Hockey (1981) (Activision) (8K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3ec12372ca3e870b11ca70edc7ec26a4", "CommaVid, John Bronstein", "CM-002", "Video Life (1981) (CommaVid) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "3eccf9f363f5c5de0c8b174a535dc83b", "", "", "Plaque Attack (Unknown) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -763,7 +763,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "3ef9573536730dcd6d9c20b6822dbdc4", "Atari, Larry Wagner, Bob Whitehead", "CX2645", "Video Chess (1979) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3f01bd6d059396f495a4cde7de0ab180", "", "", "Qb (Special Edition) (NTSC) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "3f039981255691d3859d04ef813a1264", "Xonox, John Perkins", "6230, 7210, 06004, 99004", "Artillery Duel (1983) (Xonox) [a]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "20", "", "", "", "" }, - { "3f251c50aa7237e61a38ab42315ebed4", "Atari / Thomas Jentzsch", "", "Ikari Warriors (1990) (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3f251c50aa7237e61a38ab42315ebed4", "Thomas Jentzsch", "", "Ikari Warriors (1990) (Thomas Jentzsch)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3f3ad2765c874ca13c015ca6a44a40a1", "CCE", "C-862", "Crackpots (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3f540a30fdee0b20aed7288e4a5ea528", "Atari - GCC", "CX2670", "Atari Video Cube (1982) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3f58f972276d1e4e0e09582521ed7a5b", "Xonox, Robert Weatherby", "6230, 06002, 06003, 99003", "Chuck Norris Superkicks (1983) (Xonox)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -806,7 +806,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "4251b4557ea6953e88afb22a3a868724", "", "", "Robot City (V1.1) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, { "425ee444a41d218598893d6b6e03431a", "", "", "Invaders Demo (2001) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4279485e922b34f127a88904b31ce9fa", "", "", "Enduro (Unknown)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "428b2d36f5d716765460701f7016ac91", "", "", "Brooni (NTSC) (2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "428b2d36f5d716765460701f7016ac91", "Andrew Wallace", "", "Brooni (2001) (Andrew Wallace) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "42ae81ae8ac51e5c238639f9f77d91ae", "", "", "Multi-Sprite Demo 2 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "42b2c3b4545f1499a083cfbc4a3b7640", "U.S. Games Corporation, Todd Marshall, Wes Trager, Henry Will", "VC2003", "Eggomania (1982) (U.S. Games)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "42cdd6a9e42a3639e190722b8ea3fc51", "Activision, Alan Miller", "AG-007, CAG-007", "Tennis (1981) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -859,7 +859,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "47aad247cce2534fd70c412cb483c7e0", "Rainbow Vision - Suntek", "SS-010", "Mafia (Rainbow Vision) (PAL)", "AKA Gangster Alley", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "47abfb993ff14f502f88cf988092e055", "Zellers", "", "Inca Gold (Zellers)", "AKA Spider Kong", "", "", "", "", "", "", "", "", "", "", "", "29", "", "", "", "" }, { "47aef18509051bab493589cb2619170b", "", "", "Stell-A-Sketch (Bob Colbert) (PD)", "Uses Driving, Joystick, or Amiga/Atari ST mouse Controllers", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "47b82d47e491ac7fdb5053a88fccc832", "", "", "Asteroid 2 (Atari Freak 1 and Franklin Cruz)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "47b82d47e491ac7fdb5053a88fccc832", "Atari Freak 1, Franklin Cruz", "", "Asteroid 2 (Atari Freak 1) (Hack)", "Hack of Asteroids", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "47bb1c677fe7ba5f376372ae7358e790", "", "", "Star Fire (10-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "47cd61f83457a0890de381e478f5cf5f", "Imagic, Wilfredo 'Willy' Aguilar, Michael Becker, Rob Fulop", "13205", "Fathom (1983) (Imagic) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "481d20ec22e7a63e818d5ef9679d548b", "Atari", "CX26163P", "Freeway Rabbit (32 in 1) (1988) (Atari) (PAL)", "AKA Freeway", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -884,6 +884,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "497f3d2970c43e5224be99f75e97cbbb", "CommaVid, John Bronstein", "CM-002", "Video Life (1981) (CommaVid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "4999b45be0ab5a85bac1b7c0e551542b", "CCE", "", "Double Dragon (CCE) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "499b612f6544ae71d4915aa63e403e10", "Atari, Carol Shaw", "CX26163P", "Checkers (32 in 1) (1988) (Atari) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "49b41972cbbc6d148c79b27967d828c9", "", "", "ultindy500_0.1.bin", "", "", "", "", "", "", "", "", "DRIVING", "DRIVING", "", "", "", "", "", "", "" }, { "4a196713a21ef07a3f74cf51784c6b12", "Jone Yuan Telephonic Enterprise Co", "", "Frogs and Flies (Jone Yuan) (Hack)", "", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4a1a0509bfc1015273a542dfe2040958", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [b1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4a2fe6f0f6317f006fd6d4b34515448b", "", "", "Warring Worms (Midwest Classic Edition) (08-06-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -893,7 +894,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "4a7eee19c2dfb6aeb4d9d0a01d37e127", "Hozer Video Games", "", "Crazy Valet (Hozer Video Games)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4ab4af3adcdae8cdacc3d06084fc8d6a", "Nick Bensema", "", "Sucky Zepplin (Nick Bensema) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4abb4c87a4c5f5d0c14ead2bb36251be", "Atari", "CX26135, CX26135P", "RealSports Boxing (1987) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4ac9f40ddfcf194bd8732a75b3f2f214", "Atari", "CX26106", "Grover's Music Maker (Atari) (Prototype)", "Uses Kids/Keypad Controllers", "Prototype", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "", "", "" }, + { "4ac9f40ddfcf194bd8732a75b3f2f214", "Atari", "CX26106", "Grover's Music Maker (1983) (Atari) (Prototype)", "Uses Kids/Keypad Controllers", "Prototype", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "", "", "" }, { "4ae8c76cd6f24a2e181ae874d4d2aa3d", "", "", "Flash Gordon (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4af4103759d603c82b1c9c5acd2d8faf", "Imagic, Bob Smith", "13207, EIZ-001-04I", "Moonsweeper (1983) (Imagic) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "4afe528a082f0d008e7319ebd481248d", "", "", "Multi-Color Demo 1 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -901,7 +902,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "4b205ef73a5779acc5759bde3f6d33ed", "", "", "Berzerk (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4b27f5397c442d25f0c418ccdacf1926", "Atari, Warren Robinett", "CX2613, 49-75154", "Adventure (1980) (Atari) (PAL)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4b71197153d651480830638cb6a03249", "Atari, Larry Kaplan", "CX26163P", "Bowling (32 in 1) (1988) (Atari) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4b753a97aee91e4b3e4e02f5e9758c72", "", "", "Asymmetric Reflected Playfield (Glenn Saunders And Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4b753a97aee91e4b3e4e02f5e9758c72", "Glenn Saunders, Roger Williams", "", "Asymmetric Reflected Playfield (Glenn Saunders)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4b8e76a294a04036168f5b13c64911d2", "Shock Vision", "", "Moon Patrol (1982) (Shock Vision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4b94fd272785d7ec6c95fb7279d0f522", "Atari, Christopher H. Omarzu, Preston Stuart, Bruce Williams", "CX26101", "Oscar's Trash Race (1982) (Atari)", "Uses the Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "", "", "" }, { "4b9581c3100a1ef05eac1535d25385aa", "", "", "IQ-180 (Unknown)", "", "", "", "", "", "", "", "", "", "", "", "", "20", "235", "", "", "" }, @@ -920,28 +921,28 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "4c9307de724c36fd487af6c99ca078f2", "Imagic, Brad Stewart", "IA3409", "Sky Patrol (1982) (Imagic) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4ca0959f846d2beada18ecf29efe137e", "Atari, Alan J. Murphy, Robert C. Polaro", "CX2666, CX2666P", "RealSports Volleyball (1982) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4ca73eb959299471788f0b685c3ba0b5", "Activision, Steve Cartwright", "AX-031", "Frostbite (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4ca90ba45eced6f5ad560ea8938641b2", "", "", "Hangman Man Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4ca90ba45eced6f5ad560ea8938641b2", "", "", "Hangman Man Wordlist (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4cabc895ea546022c2ecaa5129036634", "Zellers", "", "Ocean City Defender (Zellers)", "AKA Atlantis", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4cd796b5911ed3f1062e805a3df33d98", "Tigervision", "7-006", "Springer (1982) (Tigervision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4d0a28443f7df5f883cf669894164cfa", "", "", "Beast Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4d0a28443f7df5f883cf669894164cfa", "", "", "Beast Invaders (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4d2cef8f19cafeec72d142e34a1bbc03", "HES", "771-422", "2 Pak Special Yellow - Star Warrior, Frogger (1990) (HES) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4d38e1105c3a5f0b3119a805f261fcb5", "Bit Corporation", "PGP212", "Phantom UFO (1983) (BitCorp) (PAL)", "AKA Spider Fighter", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4d502d6fb5b992ee0591569144128f99", "Atari - Axlon, Tod Frye", "CX26178", "Save Mary! (1989) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4d5f6db55f7f44fd0253258e810bde21", "Mattel / Fabrizio Zavagli", "", "Betterblast by Fabrizio Zavagli (Astroblast Hack)", "Hack of Astroblast (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4d5f6db55f7f44fd0253258e810bde21", "Fabrizio Zavagli", "", "Betterblast (Fabrizio Zavagli) (Hack)", "Hack of Astroblast", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4d7517ae69f95cfbc053be01312b7dba", "Atari, Alan Miller - Sears", "CX2641 - 99807, 49-75105", "Surround (1977) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4d77f291dca1518d7d8e47838695f54b", "Data Age", "DA1004", "Airlock (1982) (Data Age)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4d8396deeabb40b5e8578276eb5a8b6d", "Quelle", "781698", "Volleyball (1983) (Quelle) (PAL)", "AKA RealSports Volleyball", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4dbf47c7f5ac767a3b07843a530d29a5", "Ric Pryor", "", "Breaking News (2002) (Ric Pryor) (Bump 'n' Jump Hack)", "Bump 'n' Jump Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4dbf47c7f5ac767a3b07843a530d29a5", "Ric Pryor", "", "Breaking News (2002) (Ric Pryor) (Hack)", "Hack of Bump 'n' Jump", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4dcc7e7c2ec0738e26c817b9383091af", "", "", "Unknown Title (bin00026 (200110)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4dd6c7ab9ef77f2b4950d8fc7cd42ee1", "Retroactive", "", "Qb (V2.04) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "4dd6f53684ccbb569fe9f41498d80018", "", "", "Image - Nude1 (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4df6124093ccb4f0b6c26a719f4b7706", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) [t1]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, + { "4df6124093ccb4f0b6c26a719f4b7706", "Atari, Steve Jobs, Brad Stewart - Sears", "CX2622 - 6-99813, 49-75107", "Breakout (1978) (Atari) [a]", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "4df9d7352a56a458abb7961bf10aba4e", "", "", "Racing Car (Unknown)", "", "", "", "", "", "", "", "YES", "", "", "", "", "", "", "", "", "" }, { "4e02880beeb8dbd4da724a3f33f0971f", "Imagic, Michael Greene", "EIZ-002-04I", "Wing War (1983) (Imagic) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4e15ddfd48bca4f0bf999240c47b49f5", "Avalon Hill, Jim Jacob", "5001002", "Death Trap (1983) (Avalon Hill)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "4e2c884d04b57b43f23a5a2f4e9d9750", "", "", "Baby Center Animation (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4e37992a37ea36489283f7eb90913bbc", "", "", "Hangman Ghost Halloween (Kris) (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4e4895c3381aa4220f8c2795d6338237", "", "", "Backwards Cannonball v1 (Human Cannonball Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4e2c884d04b57b43f23a5a2f4e9d9750", "", "", "Baby Center Animation (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "4e37992a37ea36489283f7eb90913bbc", "Kris", "", "Hangman Ghost Halloween (Kris) (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4e4895c3381aa4220f8c2795d6338237", "", "", "Backwards Cannonball v1 (Hack)", "Hack of Human Cannonball", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4e66c8e7c670532569c70d205f615dad", "Atari - GCC", "CX2680, CX2680P", "RealSports Tennis (1983) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4e99ebd65a967cabf350db54405d577c", "Coleco", "2663", "Time Pilot (1983) (Coleco) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4f0071946e80ca68edfdccbac86dcce0", "", "", "Virtual Pet Demo 1 (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -958,10 +959,10 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "4faeb04b1b7fb0fa25db05753182a898", "", "", "2600 Digital Clock (V x.xx) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4fbe0f10a6327a76f83f83958c3cbeff", "CCE", "C-816", "Keystone Kappers (1983) (CCE)", "AKA Keystone Kapers", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4fc1b85b8074b4b9436d097900e34f29", "John K. Harvey", "", "John K. Harvey's Equalizer (John K. Harvey)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "502044b1ac111b394e6fbb0d821fca41", "", "", "Hangman Invader 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "502044b1ac111b394e6fbb0d821fca41", "", "", "Hangman Invader 4letter (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "502168660bfd9c1d2649d415dc89c69d", "Activision, Bob Whitehead - Ariola", "EAG-019, EAG-019-04I - 711 019-715", "Sky Jinks (1982) (Activision) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "504688d49a41bf03d8a955512609f3f2", "", "", "SWOOPS!", "Uses the Joystick (L) and Paddle (R) Controllers", "", "", "", "", "", "", "", "", "PADDLES", "", "", "30", "", "", "", "" }, - { "50568c80ac61cab789d9923c9b05b68e", "ebivision", "", "Merlin's Walls - Standard Edition (1999) (Ebivision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "50568c80ac61cab789d9923c9b05b68e", "Ebivision", "", "Merlin's Walls - Standard Edition (1999) (Ebivision)", "Image rotated 90 degrees CW", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "50a410a5ded0fc9aa6576be45a04f215", "Activision, Bob Whitehead - Ariola", "EAG-019, EAG-019-04I - 711 019-715", "Sky Jinks (1982) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "50ef88f9a5e0e1e6b86e175362a27fdb", "", "", "Multi-Sprite Game V2.4 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "512e874a240731d7378586a05f28aec6", "Tigervision, Rorke Weigandt", "7-005", "Marauder (1982) (Tigervision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -973,7 +974,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "5188fee071d3c5ef0d66fb45c123e4a5", "Gameworld", "133-001", "Encounter at L-5 (1983) (Gameworld) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "51de328e79d919d7234cf19c1cd77fbc", "Atari, Mark R. Hahn", "CX2678", "Dukes of Hazzard (1983) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "51e390424f20e468d2b480030ce95d7b", "Video Game Program", "", "Fire Bird (Video Game Program) (PAL)", "AKA Phoenix", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "51f15b39d9f502c2361b6ba6a73464d4", "", "", "Amanda Invaders (PD) [o1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "51f15b39d9f502c2361b6ba6a73464d4", "", "", "Amanda Invaders (PD) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "51f211c8fc879391fee26edfa7d3f11c", "Activision, Bob Whitehead", "AX-015, AX-015-04", "Chopper Command (1982) (Activision) (8K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "522c9cf684ecd72db2f85053e6f6f720", "Rainbow Vision - Suntek", "SS-008", "Year 1999 (Rainbow Vision) (PAL)", "AKA Condor Attack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "52385334ac9e9b713e13ffa4cc5cb940", "CCE", "C-804", "Open, Sesame! (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -992,10 +993,10 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "5324cf5b6dc17af4c64bf8696c39c2c1", "Imagic, Dennis Koble", "IA3203, IX-010-04", "Atlantis (1982) (Imagic) (8K)", "AKA Lost City of Atlantis", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5336f86f6b982cc925532f2e80aa1e17", "Parker Brothers, Ray Miller, Todd Marshall", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "534e23210dd1993c828d944c6ac4d9fb", "M Network, Stephen Tatsumi, Jane Terjung - Kool Aid", "MT4648", "Kool-Aid Man (1983) (Mattel)", "AKA Kool Aid Pitcher Man", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5355f80cacf0e63a49cbf4ade4e27034", "Christian Samuel", "", "Cute Dead Things House by Christian Samuel (Haunted House Hack)", "Hack of Haunted House (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5355f80cacf0e63a49cbf4ade4e27034", "Christian Samuel", "", "Cute Dead Things House (Christian Samuel) (Hack)", "Hack of Haunted House", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5360693f1eb90856176bd1c0a7b17432", "", "", "Oystron (V2.85) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "537ed1e0d80e6c9f752b33ea7acbe079", "", "", "A-VCS-tec Challenge (beta 5) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5385cf2a04de1d36ab55c73174b84db0", "", "", "Combat Rock (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5385cf2a04de1d36ab55c73174b84db0", "Paul Slocum", "", "Combat Rock (PD) (Hack)", "Hack of Combat", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "539b7038acec0ccedeae40f238998579", "", "", "Star Fire (25-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "539d26b6e9df0da8e7465f0f5ad863b7", "Atari, Carol Shaw - Sears", "CX2636 - 49-75156", "Video Checkers (1980) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "53b66f11f67c3b53b2995e0e02017bd7", "CCE", "C-1005", "Super Tennis (1983) (CCE)", "AKA RealSports Tennis", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1004,13 +1005,13 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "540075f657d4b244a1f74da1b9e4bf92", "Bit Corporation", "PGP230", "Festival (1983) (BitCorp) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5409d20c1aea0b89c56993aec5dc5740", "", "", "Carnival Shooter (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5428cdfada281c569c74c7308c7f2c26", "Activision, Larry Kaplan, David Crane", "AG-010, AG-010-04", "Kaboom! (1981) (Activision)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, - { "543b4b8ff1d616fa250c648be428a75c", "", "", "Adventure (1978) (Atari) [t1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "543b4b8ff1d616fa250c648be428a75c", "Warren Robinett", "", "Adventure (1978) (Warren Robinett) (Hack)", "Hack of Adventure", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "545048ccb045f9efc6cf2b125cd0dfa8", "Starpath Corporation, Stephen Harland Landrum, Jon Leupp", "AR-4201", "Sword of Saros (1983) (Starpath) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "54785fa29e28aae6038929ba29d33d38", "", "", "Poker Squares (V0.19) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5494b9ee403d9757f0fd1f749e80214a", "", "", "Xenophobe Arcade (2003) (Larry Petit) (Xenophobe Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "54a1c1255ed45eb8f71414dadb1cf669", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo)", "", "", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "" }, { "54f7efa6428f14b9f610ad0ca757e26c", "Apollo", "AP-2005", "Shark Attack (1982) (Apollo)", "AKA Lochjaw", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "551a64a945d7d6ece81e9c1047acedbc", "Matthias Jaap", "", "Coffee Cup Soccer by matthias Jaap (Pele's Soccer Hack)", "Hack of Pele's Soccer (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "551a64a945d7d6ece81e9c1047acedbc", "Matthias Jaap", "", "Coffee Cup Soccer (Matthias Jaap) (Hack)", "Hack of Pele's Soccer", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "551ef75593ec18d078e8f5cc0229e1c4", "", "", "Star Fire - New Paulstar WIP (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5524718a19107a04ec3265c93136a7b5", "Atari / Thomas Jentzsch", "", "RealSports Basketball (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "557e893616648c37a27aab5a47acbf10", "Atari - Axlon, Tod Frye", "CX26169", "Shooting Arcade (1989) (Atari) (Prototype) (PAL)", "Uses the Light Gun Controller (left only)", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, @@ -1031,7 +1032,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "572d0a4633d6a9407d3ba83083536e0f", "Zellers", "", "Busy Police (Zellers)", "AKA Keystone Kapers", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "575c0fb61e66a31d982c95c9dea6865c", "", "", "Blackjack (Unknown) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "56", "", "", "", "" }, { "57939b326df86b74ca6404f64f89fce9", "Atari, Nick 'Sandy Maiwald' Turner", "CX26111", "Snoopy and the Red Baron (1983) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "579baa6a4aa44f035d245908ea7a044d", "Jess Ragan", "", "Galaxian by Jess Ragan (Enhanced Graphics)", "Hack of Galaxian (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "579baa6a4aa44f035d245908ea7a044d", "Jess Ragan", "", "Galaxian Enhanced Graphics (Jess Ragan) (Hack)", "Hack of Galaxian", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "57a66b6db7efc5df17b0b0f2f2c2f078", "Retroactive", "", "Qb (V2.08) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "57c5b351d4de021785cf8ed8191a195c", "Atari, Gary Stark", "CX26102", "Cookie Monster Munch (1983) (Atari)", "Uses Kids/Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "", "", "" }, { "57fa2d09c9e361de7bd2aa3a9575a760", "Atari, Bill Aspromonte, Andrew Fuchs", "CX26120", "Stargate (1984) (Atari) (16K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1044,13 +1045,13 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "5894c9c0c1e7e29f3ab86c6d3f673361", "Activision, Steve Kitchen", "AZ-033, AZ-033-04", "Space Shuttle (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "589c73bbcd77db798cb92a992b4c06c3", "Xonox, John Perkins", "6230, 7210, 06004, 99004", "Artillery Duel (1983) (Xonox) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "20", "", "", "", "" }, { "58a82e1da64a692fd727c25faef2ecc9", "Tigervision, John Harris", "7-002", "Jawbreaker (1982) (Tigervision)", "", "", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "" }, - { "58c396323ea3e85671e34c98eb54e2a4", "", "", "Color Tweaker (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "58c396323ea3e85671e34c98eb54e2a4", "Brian Watson", "", "Color Tweaker (B. Watson)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "58d331c23297ed98663d11b869636f16", "", "", "Fu Kung! (V0.09) (26-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "58e313e2b5613b2439b5f12bb41e3eef", "", "", "Cube Conquest (Demo Interlace) (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "59135f13985b84c4f13cc9e55eec869a", "", "", "Multi-Sprite Game V2.0 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5961d259115e99c30b64fe7058256bcf", "Universal Gamex Corporation, Alan Roberts", "1005", "X-Man (1983) (Universal)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, { "59734e1cc41822373845a09c51e6ba21", "Activision, John Van Ryzin", "AG-038-04", "Cosmic Commuter (1984) (Activision) (8K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "599cbf919d47a05af975ad447df29497", "", "", "Baubles (V0.002) (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "599cbf919d47a05af975ad447df29497", "Jake Patterson", "", "Baubles (V0.002) (2001) (Jake Patterson) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "59b70658f9dd0e2075770b07be1a35cf", "Video Gems / Thomas Jentzsch", "", "Surfer's Paradise - But Danger Below! (Video Gems) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "59e53894b3899ee164c91cfa7842da66", "Data Age", "", "Survival Run (1983) (Data Age) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "40", "", "", "", "" }, { "59e96de9628e8373d1c685f5e57dcf10", "Mystique, Joel H. Martin", "1003", "Beat 'Em & Eat 'Em (1982) (Mystique)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, @@ -1073,22 +1074,22 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "5b574faa56836da0866ba32ae32547f2", "", "", "Tomb Raider 2600 [REV 03] (Montezuma's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5b6f5bcbbde42fc77d0bdb3146693565", "", "", "Seaquest (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5b92a93b23523ff16e2789b820e2a4c5", "Activision, Dan Kitchen", "AG-039-04", "Kung-Fu Master (1987) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5b98e0536c3f60547dd708ae22adb04b", "", "", "Donkey Kong Gingerbread Man (Prototype) (Ben Hudman)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5b98e0536c3f60547dd708ae22adb04b", "Ben Hudman", "", "Donkey Kong Gingerbread Man (Ben Hudman) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5b9c2e0012fbfd29efd3306359bbfc4a", "HES", "", "2 Pak Special Light Green - Hoppy, Alien Force (1992) (HES) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5babe0cad3ec99d76b0aa1d36a695d2f", "Coleco, Ed Temple", "2654", "Looping (1983) (Coleco) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, { "5bba254e18257e578c245ed96f6b003b", "", "", "Music Effects Demo (21-01-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "5bbab3f3e4b47e3e23f9820765dbb45c", "", "", "Pitfall! (says 1985) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5bc9998b7e9a970e31d2cb60e8696cc4", "", "", "Borgwars Asteroids (2003) (Jack Kortkamp) (Asteroids Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "5bc9998b7e9a970e31d2cb60e8696cc4", "Jack Kortkamp", "", "Borgwars Asteroids (2003) (Jack Kortkamp) (Hack)", "Hack of Asteroids", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "5bcc83677d68f7ef74c1b4a0697ba2a8", "Activision, Alan Miller", "AX-012, CAX-012, AX-012-04", "Ice Hockey (1981) (Activision) (16K)", "", "", "", "4K", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5bd79139a0c03b63f6f2cf00a7d385d2", "", "", "An Exercise In Minimalism (V1) (1999) (Marc de Smet) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5bd79139a0c03b63f6f2cf00a7d385d2", "Marc de Smet", "", "An Exercise In Minimalism (V1) (1999) (Marc de Smet) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5be03a1fe7b2c114725150be04b38704", "Atari, Alan Miller", "CX2642P", "Game of Concentration (1980) (Atari) (PAL)", "Uses Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "250", "", "", "" }, - { "5c0227ad63300670a647fcebf595ea37", "Imagic / Josh", "", "Battle for Naboo by Josh (Atlantis Hack)", "Hack of Atlantis (Imagic)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5c0227ad63300670a647fcebf595ea37", "Josh", "", "Battle for Naboo (Josh) (Hack)", "Hack of Atlantis", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5c0520c00163915a4336e481ca4e7ef4", "Rainbow Vision - Suntek", "SS-004", "Pyramid War (Rainbow Vision) (PAL) [a2]", "AKA Chopper Command", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5c1b1aa78b7609d43c5144c3b3b60adf", "", "", "Demo Image Series #8 - Two Marios (Different Interlacing) (27-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5c618a50dfa23daac97ba459b9ff5206", "", "", "Berzerk Renegade (2002) (Steve Engelhardt) (Room of Doom Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "29", "", "YES", "", "" }, + { "5c618a50dfa23daac97ba459b9ff5206", "Steve Engelhardt", "", "Berzerk Renegade (2002) (Steve Engelhardt) (Hack)", "Hack of Room of Doom", "Hack", "", "", "", "", "", "", "", "", "", "", "29", "", "YES", "", "" }, { "5c73693a89b06e5a09f1721a13176f95", "", "", "Wavy Line Test 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5c86e938e0845b9d61f458539e9a552b", "Atari, Alan Miller", "CX26163P", "Surround (32 in 1) (1988) (Atari) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5ce98f22ade915108860424d8dde0d35", "", "", "Hangman Man Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5ce98f22ade915108860424d8dde0d35", "", "", "Hangman Man Biglist3 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5d1260152596d91adc8cf5741adb719a", "", "", "Death Derby (200204) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5d2cc33ca798783dee435eb29debf6d6", "Activision, Mike Reidel", "AK-043-04", "Commando (1988) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5d799bfa9e1e7b6224877162accada0d", "Spectravision, Spectravideo, David Lubar", "SA-206", "Challenge of.... Nexar, The (1982) (Spectravision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1099,7 +1100,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "5db9e5bf663cad6bf159bc395f6ead53", "Goliath - Hot Shot", "83-212", "Time Race (1983) (Goliath) (PAL)", "AKA Space Jockey", "", "", "", "", "", "", "", "", "", "", "", "48", "256", "", "", "" }, { "5dccf215fdb9bbf5d4a6d0139e5e8bcb", "Froggo", "FG1009", "Sea Hunt (1987) (Froggo)", "AKA Skindiver", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5de8803a59c36725888346fdc6e7429d", "Atari, John Dunn - Sears", "CX2631 - 49-75152", "Superman (1979) (Atari) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5df32450b9fbcaf43f9d83bd66bd5a81", "", "", "Atari Logo Playfield Demo (2001) (Eric Ball) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5df32450b9fbcaf43f9d83bd66bd5a81", "Eric Ball", "", "Atari Logo Playfield Demo (2001) (Eric Ball) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5df559a36347d8572f9a6e8075a31322", "Digivision", "", "Enduro (Digivision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5e0c37f534ab5ccc4661768e2ddf0162", "Telegames, Ed Salvo", "5667 A106", "Glacier Patrol (1989) (Telegames)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5e1b4629426f4992cf3b2905a696e1a7", "Activision, Robert C. Polaro", "AK-049-04", "Rampage! (1989) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1127,9 +1128,9 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "5faffe1c4c57430978dec5ced32b9f4a", "Dactari", "", "Volleyball (Dactari)", "AKA RealSports Volleyball", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5fb71cc60e293fe10a5023f11c734e55", "", "", "This Planet Sucks (Fix) (27-12-2002) (Greg Troutman)", "", "", "", "", "", "", "", "", "", "", "", "", "38", "", "", "", "" }, { "600d48eef5c0ec27db554b7328b3251c", "", "", "Bars and Text Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6015a9cef783e97e98a2aa2cf070ae06", "Thomas Jentzsch", "", "Battlezone TC by Thomas Jentzsch (2 joystick Hack)", "Uses two simultaneous Joystick Controllers, Hack of Battlezone (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6015a9cef783e97e98a2aa2cf070ae06", "Thomas Jentzsch", "", "Battlezone TC (Thomas Jentzsch) (Hack)", "Uses two simultaneous Joystick Controllers, Hack of Battlezone", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "60345ae60f7c7010346de7aff9bfe6ea", "Activision", "AIX-010", "Atlantis (1988) (Activision) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "60358edf0c2cc76b1e549e031e50e130", "Manuel Polik", "", "Cyber Goth Galaxian by Manuel Polik (Galaxian Hack)", "Hack of Galaxian (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "60358edf0c2cc76b1e549e031e50e130", "Manuel Polik", "", "Cyber Goth Galaxian (Manuel Polik) (Hack)", "Hack of Galaxian", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "603c7a0d12c935df5810f400f3971b67", "Bit Corporation", "PG209", "Mr. Postman (1983) (BitCorp) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6041f400b45511aa3a69fab4b8fc8f41", "Apollo", "AP-2010", "Wabbit (1982) (Apollo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "604e09724555807c28108049efe34a13", "", "", "Sokoban (01-01-2003) (Adam Wozniak)", "", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "", "" }, @@ -1142,7 +1143,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "60bbd425cb7214ddb9f9a31948e91ecb", "Activision, Bob Whitehead", "AG-005, CAG-005, AG-005-04", "Skiing (1980) (Activision) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "60d304582d33e2957b73eb300a7495bb", "", "", "Jam Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "60e0ea3cbe0913d39803477945e9e5ec", "Atari, Joe Decuir - Sears", "CX2621 - 99806, 6-99806, 49-75104", "Video Olympics (1977) (Atari)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "YES", "", "", "", "", "", "" }, - { "613abf596c304ef6dbd8f3351920c37a", "", "", "Boring Pac-man (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, + { "613abf596c304ef6dbd8f3351920c37a", "", "", "Boring Pac-Man (Hack)", "Hack of Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, { "6141c095d0aee4e734bebfaac939030a", "Rainbow Vision - Suntek", "SS-017", "Mariana (Rainbow Vision) (PAL)", "AKA Seaquest", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "61426cee013306e7f7367534ab124747", "", "", "One Blue Bar Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "615a3bf251a38eb6638cdc7ffbde5480", "Atari, Jerome Domurat, Howard Scott Warshaw", "CX2674", "E.T. - The Extra-Terrestrial (1982) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1160,12 +1161,12 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "62992392ea651a16aa724a92e4596ed6", "Eric Mooney", "", "Invaders by Erik Mooney (Beta) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "62f74a2736841191135514422b20382d", "", "", "Pharaoh's Curse (Unknown)", "", "", "", "", "", "", "", "", "", "", "", "PAL60", "20", "225", "YES", "", "" }, { "62ffd175cac3f781ef6e4870136a2520", "", "", "2600 Digital Clock (V x.xx) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "63166867f75869a3592b7a94ea62d147", "", "", "Indy 500 (1978) (Atari) [h2]", "", "", "", "", "", "", "", "", "DRIVING", "DRIVING", "", "", "28", "", "", "", "" }, - { "6333ef5b5cbb77acd47f558c8b7a95d3", "Greg Troutman", "", "Dark Mage (8K) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "63166867f75869a3592b7a94ea62d147", "", "", "Indy 500 (Hack) [a1]", "Hack of Indy 500", "Hack", "", "", "", "", "", "", "DRIVING", "DRIVING", "", "", "28", "", "", "", "" }, + { "6333ef5b5cbb77acd47f558c8b7a95d3", "Greg Troutman", "", "Dark Mage (Greg Troutman) (PD) (8K)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "6337927ad909aa739d6d0044699a916d", "Jeffry Johnston", "", "Radial Pong - Version 2 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6339d28c9a7f92054e70029eb0375837", "Parker Brothers, Wilfredo 'Willy' Aguilar, Michael Becker, Neil McKenzie, Bob Smith, Brad Stewart", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "6342afe9c9ad1b6120b8f6fb040d0926", "", "", "Move a Blue Blob Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6354f9c7588a27109c66905b0405825b", "", "", "Amidar DS (2003) (TJ) (Amidar Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6354f9c7588a27109c66905b0405825b", "Thomas Jentzsch", "", "Amidar DS (2003) (TJ) (Hack)", "Hack of Amidar", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "635cc7a0db33773959d739d04eff96c2", "", "", "Minesweeper (V.90) (Soren Gust) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6362396c8344eec3e86731a700b13abf", "Panda", "109", "Exocet (1983) (Panda)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "637efac676ff063f2fbb0abff77c4fa5", "", "", "Noize Maker Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1173,11 +1174,11 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "638cc82ea96f67674595ba9ae05da6c6", "Rainbow Vision - Suntek", "SS-011", "Super Ferrari (Rainbow Vision) (PAL)", "AKA Enduro", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "639ded0c9e53bc3f91defb5dde930286", "Starpath", "", "SuperCharger - Escape from the Mindmaster (4 of 4) (1982) (Starpath) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "63a6eda1da30446569ac76211d0f861c", "Activision, David Crane", "AG-001", "Dragster (1980) (Activision) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, - { "63a7445b1d3046d3cdcdbd488dca38d9", "Rob Kudla", "", "Better Space Invaders (1999) (Rob Kudla) [!]", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "63a7445b1d3046d3cdcdbd488dca38d9", "Rob Kudla", "", "Better Space Invaders (1999) (Rob Kudla) (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "63c5fef3208bb1424d26cf1ab984b40c", "", "", "Analog Clock (V0.1) (20-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "63c7395d412a3cd095ccdd9b5711f387", "Eric Ball", "ELB005", "Skeleton+ (PAL)", "Stereo sound", "Homebrew", "STEREO", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "63e783994df824caf289b69a084cbf3e", "David Marli", "", "Fat Albert by David Marli (Fast Food Hack)", "Hack of Fast Food (Telesys)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "63e9e612bbee31045f8d184a4e53f8ec", "", "", "Moby Blues (2002) (ATARITALIA) (Mario Bros Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "63e783994df824caf289b69a084cbf3e", "David Marli", "", "Fat Albert (David Marli) (Hack)", "Hack of Fast Food", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "63e9e612bbee31045f8d184a4e53f8ec", "ATARITALIA", "", "Moby Blues (2002) (ATARITALIA) (Hack)", "Hack of Mario Bros", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "640a08e9ca019172d612df22a9190afb", "Atari - GCC, Mike Feinstein, Kevin Osborn", "CX2691, CX2691P", "Joust (1983) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "64198bb6470c78ac24fcf13fe76ab28c", "Starpath Corporation, Dennis Caswell", "AR-4200", "Escape from the Mindmaster (1982) (Starpath) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "643e6451eb6b8ab793eb60ba9c02e000", "Salu - Avantgarde Software, Michael Buetepage", "460741", "Ghostbusters II (1992) (Salu) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -1186,7 +1187,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "647162cceb550fd49820e2206d9ee7e8", "", "", "Skeleton (NTSC) (2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "64b8e19c767191ccdc97acc6904c397b", "Jeffry Johnston", "", "Radial Pong - Version 6 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "64ca518905311d2d9aeb56273f6caa04", "CCE", "", "Cubo Magico (CCE)", "AKA Cubicolor", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "64d43859258dc8ca54949e9ff4174202", "Starsoft / Thomas Jentzsch", "", "Lilly Adventure (Starsoft) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "230", "", "", "" }, + { "64d43859258dc8ca54949e9ff4174202", "Thomas Jentzsch", "", "Lilly Adventure (Thomas Jentzsch)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "230", "", "", "" }, { "651d2b6743a3a18b426bce2c881af212", "CCE", "C-812", "Pac Man (1983) (CCE) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, { "6522717cfd75d1dba252cbde76992090", "ITT Family Games", "554-33 391", "Meteor Defense (1983) (ITT Family Games) (PAL)", "AKA Astrowar", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6538e454b0498ad2befe1ef0f87815c0", "Joe Grand", "", "SCSIcide (v1.2) (2001) (Joe Grand)", "", "New Release", "", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "" }, @@ -1201,7 +1202,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "65ba1a4c643d1ab44481bdddeb403827", "Quelle", "876.013 4", "Katastrophen-Einsatz (1983) (Quelle) (PAL)", "AKA M.A.S.H.", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "65bd29e8ab1b847309775b0de6b2e4fe", "Coleco, Ed English", "2667", "Roc 'n Rope (1984) (Coleco)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "65c6406f5af934590097c8c032ebb482", "", "", "Three Hugger (Pave Demo) (20-12-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "662eca7e3d89175ba0802e8e3425dedb", "", "", "Hangman Pac-Man Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "662eca7e3d89175ba0802e8e3425dedb", "", "", "Hangman Pac-Man Biglist3 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "66362890eb78d6ea65301592cce65f5b", "", "", "Euchre (13-07-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "663ef22eb399504d5204c543b8a86bcd", "CBS Electronics", "4L1720, 4L1721, 4L2276", "Wizard of Wor (1982) (CBS Electronics) (PAL)", "Uses the Joystick Controllers (swapped)", "", "", "", "", "", "", "YES", "", "", "", "", "", "", "YES", "", "" }, { "6651e2791d38edc02c5a5fd7b47a1627", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 040584)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -1211,7 +1212,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "668dc528b7ea9345140f4fcfbecf7066", "Gakken", "001", "Pooyan (1983) (Gakken) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6697f177847c70505824422e76aad586", "", "", "Tennis (Unknown) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "669840b0411bfbab5c05b786947d55d4", "Atari, Andrew Fuchs, Jeffrey Gusman, Dave Jolly, Suki Lee", "CX26117", "Obelix (1983) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "66b54641b5786ea3ff0215aa39d61e01", "", "", "KC Pacman (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "66b54641b5786ea3ff0215aa39d61e01", "", "", "KC Pacman (Hack)", "Hack of Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "66b92ede655b73b402ecd1f4d8cd9c50", "Activision, John Van Ryzin - Ariola", "EAZ-036-04, EAZ-036-04B, EAZ-036-04I - 711 036-720", "H.E.R.O. (1984) (Activision) (PAL) [a2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "66bc1bef269ea59033928bac2d1d81e6", "Arcadia Corporation, Scott Nelson", "AR-4300", "Fireball (Preview) (1982) (Arcadia)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "66c2380c71709efa7b166621e5bb4558", "Parker Brothers, Dave Engman, Dawn Stockbridge", "931509", "Tutankham (1983) (Parker Bros) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1225,13 +1226,14 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "67bd3d4dc5ac6a42a99950b4245bdc81", "Retroactive", "", "Qb (2.11) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "67c05ae94bf8b83a666c3ae2c4bc14de", "Atari", "CX26163P", "NFL Football (32 in 1) (1988) (Atari) (PAL) (4K)", "AKA Football", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "67ce6cdf788d324935fd317d064ed842", "Retroactive", "", "Qb (V2.09) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "67cf913d1df0bf2d7ae668060d0b6694", "", "", "Hangman Monkey 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "67cf913d1df0bf2d7ae668060d0b6694", "", "", "Hangman Monkey 4letter (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6803fa7c2c094b428b859a58dc1dd06a", "Retroactive", "", "Qb (0.11) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "6805734a0b7bcc8925d9305b071bf147", "Bit Corporation", "PGP229", "Kung Fu (1983) (BitCorp) (PAL)", "AKA Karate", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "681206a6bde73e71c19743607e96c4bb", "", "", "Casino (Unknown) (PAL)", "", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "250", "", "", "" }, { "683bb0d0f0c5df58557fba9dffc32c40", "Arcadia Corporation, Scott Nelson", "AR-4300", "Fireball (1982) (Arcadia) [a]", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "683dc64ef7316c13ba04ee4398e2b93a", "Ed Federmeyer", "", "Edtris (1995) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "68449e4aaba677abcd7cde4264e02168", "", "", "Horizonal Color Bars Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6847ce70819b74febcfd03e99610243b", "", "", "ruby_4A50.bin", "", "", "", "4A50", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "68489e60268a5e6e052bad9c62681635", "Bit Corporation", "PG201", "Sea Monster (1982) (BitCorp) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "36", "256", "", "", "" }, { "68597264c8e57ada93be3a5be4565096", "Data Age", "DA1005", "Bugs (1982) (Data Age)", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "685e9668dc270b6deeb9cfbfd4d633c3", "CommaVid, Irwin Gaines - Ariola", "CM-004 - 712 004-720", "Room of Doom (1982) (CommaVid) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -1239,7 +1241,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "687c23224e26f81c56e431c24faea36d", "", "", "Qb (Simple Background Animation) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "68878250e106eb6c7754bc2519d780a0", "CCE", "C-809", "Squirrel (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "24", "230", "", "", "" }, { "68c80e7e1d30df98a0cf67ecbf39cc67", "Hozer Video Games", "", "Gunfight 2600 - One Step Forward & Two Steps Back (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "68cd2adc6b1fc9a1f263ab4561112f30", "", "", "Boulderdash Demo (09-12-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "68cd2adc6b1fc9a1f263ab4561112f30", "Thomas Jentzsch", "", "Boulderdash Demo (09-12-2002) (TJ)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "68feb6d6ff63e80df1302d8547979aec", "", "", "Starfield Demo 2 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6913c90002636c1487538d4004f7cac2", "Atari, Bill Aspromonte", "CX26131", "Monster Cise (1984) (Atari) (Prototype)", "Uses the Keypad Controllers (left only)", "Prototype", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "", "", "" }, { "691d67910b08b63de8631901d1887c1f", "Starpath Corporation, Steve Mundry, Scott Nelson", "AR-4401", "Survival Island (1983) (Starpath) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, @@ -1247,7 +1249,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "693137592a7f5ccc9baae2d1041b7a85", "", "", "Qb (V2.02) (Stella) (2001) (Retroactive) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "6979f30204149be3e227558cffe21c1d", "Atari", "CX26163P", "Miniaturer Golf (32 in 1) (1988) (Atari) (PAL) (4K)", "AKA Miniature Golf", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6982854657a2cc87d712f718e402bf85", "Zellers", "", "Earth Attack (Zellers)", "AKA Defender", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "698f569eab5a9906eec3bc7c6b3e0980", "", "", "Demons! (2003) (SpkLeader) (Phoenix Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "698f569eab5a9906eec3bc7c6b3e0980", "SpkLeader", "", "Demons! (2003) (SpkLeader) (Hack)", "Hack of Phoenix", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "69974dd5d6420b90898cde50aec5ef39", "Activision, David Crane", "AG-009, AG-009-04", "Freeway (1981) (Activision) (16K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "69df0411d4d176e558017f961f5c5849", "CCE", "C-831", "Cosmic Ark (1983) (CCE) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "69e79b1352b9ee1754bbe63b4a7062c3", "", "", "Pink Floyd - The Wall (2003) (Barry Laws Jr.) (Berzerk Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1256,16 +1258,16 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "6a03c28d505bab710bf20b954e14d521", "", "", "Pressure Gauge 2 Beta (Hozer Video Games)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6a091b8ffeacd0939850da2094b51564", "", "", "Vertically Scrolling Playfield (02-02-2003) (Aaron Bergstrom)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6a2c68f7a77736ba02c0f21a6ba0985b", "Atari, Larry Wagner, Bob Whitehead", "", "Computer Chess (1978) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6a3b0c33cf74b1e213a629e3c142b73c", "", "", "Cory The Interviewer - The Hunt For Begis Billboard (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6a3b0c33cf74b1e213a629e3c142b73c", "Cody Pittman", "", "Cory The Interviewer (Cody Pittman) (Hack)", "Hack of Ghostbusters", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6a76d5f0ed721639474aa9bbde69ebf0", "", "", "Play Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "6a82b8ecc663f371b19076d99f46c598", "Activision, Larry Miller - Ariola", "EAX-026, EAX-026-04B, EAX-026-04I - 711 026-725", "Enduro (1983) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6a882fb1413912d2ce5cf5fa62cf3875", "Video Game Cartridge - Ariola", "TP-605", "Dragon Defender (Ariola) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "6a9b30ca46b0dba9e719f4cbd340e01c", "", "", "Frostbite (Unknown) (PAL) (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6a9e0c72fab92df70084eccd9061fdbd", "CCE", "C-835", "Beany Bopper (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6aa66e9c3eea76a0c40ef05513497c40", "", "", "Hangman Ghost Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6aa66e9c3eea76a0c40ef05513497c40", "", "", "Hangman Ghost Biglist2 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6ac3fd31a51730358708c7fdc62487f8", "Matthias Jaap", "", "PC Invaders by Matthias Jaap (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6ae4dc6d7351dacd1012749ca82f9a56", "Atari - GCC, Jaques Hugon, Seth Lipkin", "CX26125, CX26127", "Track and Field (1984) (Atari)", "Uses the Track & Field Controller", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6b01a519b413f8cfa2f399f4d2841b42", "", "", "Aphex Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6b01a519b413f8cfa2f399f4d2841b42", "", "", "Aphex Invaders (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6b1fc959e28bd71aed7b89014574bdc2", "Bit Corporation", "PG203", "Phantom Tank (1982) (BitCorp) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6b683be69f92958abe0e2a9945157ad5", "U.S. Games Corporation, Jeff Corsiglia, Steve Kotleba, Paul Newell, Tom Sloper", "VC2007", "Entombed (1982) (U.S. Games)", "Released as Name That Game for a contest (winning name was Entombed)", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "6b6ca32228ae352b4267e4bd2cddf10c", "", "", "Pac-Man 4 (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, @@ -1275,13 +1277,13 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "6b7a56b6ac2ca4bf9254474bf6ed7d80", "", "", "Horizonal Color Bars Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6b7e1c11448c4d3f28160d2de884ebc8", "Zirok", "", "Fast Food (Zirok)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6b853585764b8cfdc73310e372c828d9", "", "", "Image - Baboon (Interlaced Demo 2) (15-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6b8fb021bb2e1f1e9bd7ee57f2a8e709", "", "", "3-D Corridor (29-03-2003) (Paul Slocum) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6b8fb021bb2e1f1e9bd7ee57f2a8e709", "Paul Slocum", "", "3-D Corridor (29-03-2003) (Paul Slocum) (PD) [a]", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6bb09bc915a7411fe160d0b2e4d66047", "Atari", "CX26163P", "UFO (32 in 1) (1988) (Atari) (PAL)", "AKA Space Jockey", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6bde3f6ac31aceef447ce57d4d2c2ec0", "Piero Cavina", "", "Mondo Pong V1 (Piero Cavina) (PD)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "6c1553ca90b413bf762dfc65f2b881c7", "ITT Family Games", "554-37 737", "Mountain Man (1983) (ITT Family Games) (PAL)", "AKA Ski Hunt", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6c1f3f2e359dbf55df462ccbcdd2f6bf", "Activision, Garry Kitchen - Ariola", "EAX-025, EAX-025-04I - 711 025-725", "Keystone Kapers (1983) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6c449db9bbbd90972ad1932d6af87330", "", "", "20 Sprites at Once Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6c658b52d03e01828b9d2d4718a998ac", "", "", "Hangman Invader Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6c658b52d03e01828b9d2d4718a998ac", "", "", "Hangman Invader Biglist2 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6c76fe09aa8b39ee52035e0da6d0808b", "Atari, Steve Jobs, Brad Stewart", "CX2622, CX2622P", "Breakout (1978) (Atari) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "" }, { "6c85098518d3f94f7622c42fd1d819ac", "Suntek", "SS-028", "Spinning Fireball (Suntek) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6c91ac51421cb9fc72c9833c4f440d65", "ITT Family Games", "554-33 375", "Cosmic Town (1983) (ITT Family Games) (PAL)", "AKA Base Attack", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, @@ -1289,10 +1291,10 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "6cbe945e16d9f827d0d295546ac11b22", "", "", "Gunfight 2600 - AI (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6ccd8ca17a0e4429b446cdcb66327bf1", "", "", "RPG Engine (12-05-2003) (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "6cd1dc960e3e8d5c5e0fbe67ab49087a", "", "", "Vertical Playfield Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6cd506509e8fd5627f55603780e862a8", "Greg Troutman", "", "Dark Mage (SuperCharger) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "6cd506509e8fd5627f55603780e862a8", "Greg Troutman", "", "Dark Mage (SuperCharger) (Greg Troutman) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "6ce2110ac5dd89ab398d9452891752ab", "Polyvox", "", "River Raid (Polyvox)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6cf054cd23a02e09298d2c6f787eb21d", "Parker Brothers, Wilfredo 'Willy' Aguilar, Michael Becker, Neil McKenzie, Bob Smith, Brad Stewart", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "6d218dafbf5a691045cdc1f67ceb6a8f", "", "", "6 Digit Score Display (1998) (Robin Harbron) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6d218dafbf5a691045cdc1f67ceb6a8f", "Robin Harbron", "", "6 Digit Score Display (1998) (Robin Harbron) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6d475019ea30d0b29f695e9dcfd8f730", "Eric Mooney", "", "Invaders by Erik Mooney (Alpha 2) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6d74ebaba914a5cfc868de9dd1a5c434", "", "", "Fortress (Smooth Version) (20-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6d842c96d5a01967be9680080dd5be54", "Activision, David Crane", "AB-035-04", "Pitfall II (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1312,7 +1314,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "6f2aaffaaf53d23a28bf6677b86ac0e3", "U.S. Games Corporation, Garry Kitchen - Vidtec", "VC1001", "Space Jockey (1982) (U.S. Games)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6f5b3021a88930a9bba3770094c95f3d", "", "", "Image - Clown (09-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6f6c7f37926c574c6b76e5a665fd26e7", "", "", "Space Shuttle - Journey Into Space (1983) (Activision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6f74ed915ffe73b524ef0f63819e2a1d", "", "", "An Exercise In Minimalism (V2) (1999) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6f74ed915ffe73b524ef0f63819e2a1d", "Eckhard Stolberg", "", "An Exercise In Minimalism (V2) (1999) (Eckhard Stolberg)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6f75d72e4cf996100ccdd163d57bdac2", "", "", "Star Fire (200203) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6fa0ac6943e33637d8e77df14962fbfc", "Imagic, Rob Fulop", "", "Cubicolor (1982) (Imagic) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6fac680fc9a72e0e54255567c72afe34", "", "", "Superman (Unknown) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1343,7 +1345,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "715dd9e0240638d441a3add49316c018", "Atari", "", "128-in-1 Junior Console (Chip 2) (1991) (Atari) (PAL)", "", "", "", "", "", "", "", "", "DRIVING", "DRIVING", "", "", "", "", "", "", "" }, { "7187118674ff3c0bb932e049d9dbb379", "Zirok", "", "Keystone Keypers (1983) (Zirok)", "AKA Keystone Kapers", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "718ae62c70af4e5fd8e932fee216948a", "Data Age", "112-006", "Journey Escape (1982) (Data Age)", "", "", "", "", "", "", "", "", "", "", "", "", "", "230", "YES", "", "" }, - { "718ee85ea7ec27d5bea60d11f6d40030", "Salu / Thomas Jentzsch", "", "Ghostbusters II (1992) (Salu) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "718ee85ea7ec27d5bea60d11f6d40030", "Thomas Jentzsch", "", "Ghostbusters II (1992) (Thomas Jentzsch)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "7197b6cbde6ecd10376155e6b848e80d", "Piero Cavina", "", "Multi-Sprite Game V2.1 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "71d005b60cf6e608d04efb99a37362c3", "Atari, Larry Kaplan", "CX2643", "Codebreaker (1978) (Atari) (PAL) (4K) [a]", "Uses Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "", "", "" }, { "71f09f128e76eb14e244be8f44848759", "Goliath - Hot Shot", "83-214", "Astro Attack (Goliath) (PAL)", "AKA Time Warp", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1357,7 +1359,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "72a46e0c21f825518b7261c267ab886e", "Xonox", "99005, 6220, 6250", "Robin Hood (1983) (Xonox)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "222", "", "", "" }, { "72a5b5052272ac785fa076709d16cef4", "", "", "KC Munckin (29-01-2003) (J. Parlee)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "72b8dc752befbfb3ffda120eb98b2dd0", "Parker Brothers, Todd Marshall", "PB5550", "Q-bert's Qubes (1984) (Parker Bros)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "72bda70c75dfa2365b3f8894bace9e6a", "", "", "Atlantis (Hack 01) (TJ) (Atlantis Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "72bda70c75dfa2365b3f8894bace9e6a", "Thomas Jentzsch", "", "Atlantis (TJ) (Hack)", "Hack of Atlantis", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "72d0acb5de0db662de0360a6fc59334d", "", "", "Cosmic Ark (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "72db1194b1cc7d45b242f25eb1c148d3", "", "", "Pac-Man (1981) (Atari) [h1]", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, { "72fd08deed1d6195942e0c6f392e9848", "HES", "0701-406", "2 Pak Special Dark Blue - Wall Defender, Planet Patrol (1990) (HES) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1389,7 +1391,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "753375d183c713cfa0aa7298d1f3067b", "Arcadia Corporation, Steve Hales, Stephen Harland Landrum", "AR-4102", "Suicide Mission (1982) (Arcadia) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "7550b821ee56fb5833dca2be88622d5a", "", "", "Multiple Moving Objects Demo (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "75511bb694662301c9e71df645f4b5a7", "Activision, Bob Whitehead - Ariola", "EAG-011, PAG-011 - 711 011-715", "Stampede (1981) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "755fed16b48e81de05130708a905d00d", "", "", "Comitoid beta 3 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "755fed16b48e81de05130708a905d00d", "SnailSoft", "", "Comitoid beta 3 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "756ca07a65a4fbbedeb5f0ddfc04d0be", "Atari, Jim Huether", "CX2629, CX2629P", "Sky Diver (1979) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7574480ae2ab0d282c887e9015fdb54c", "Atari, Jerome Domurat, Steve Woita", "CX2699", "Taz (1983) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7576dd46c2f8d8ab159d97e3a3f2052f", "Suntek", "SS-029", "Asteroid Belt (Suntek) (PAL)", "AKA Asteroid Fire", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1405,7 +1407,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "7628d3cadeee0fd2e41e68b3b8fbe229", "Atari", "CX26163P", "Fishing Derby (32 in 1) (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "76809eb1ee0db8a318308a5cdda0f4e2", "Atari, Jerome Domurat, Steve Woita", "CX2699", "Taz (1983) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "76a9bf05a6de8418a3ebc7fc254b71b4", "VideoSoft, Jerry Lawson", "VS1008", "Color Bar Generator (1984) (VideoSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "76c88341017eae660efc6e49c4b6ab40", "", "", "Indiana Pitfall (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "76c88341017eae660efc6e49c4b6ab40", "", "", "Indiana Pitfall (Hack)", "Hack of Pitfall!", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "76ee917d817ef9a654bc4783e0273ac4", "Quelle", "311377", "Fox & Goat (1983) (Quelle) (PAL)", "AKA Nuts", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "76f53abbbf39a0063f24036d6ee0968a", "M Network, David Akers, Joe 'Ferreira' King, Patricia Lewis Du Long, Jeff Ratcliff - INTV", "MT7045", "Bump 'n' Jump (1983) (Mattel)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "76f66ce3b83d7a104a899b4b3354a2f2", "UA Limited", "", "Cat Trax (1983) (UA Limited) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "30", "", "YES", "", "" }, @@ -1414,19 +1416,19 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "7778ac65d775a079f537e97cbdad541c", "", "", "Spider Fighter (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "777aece98d7373998ffb8bc0b5eff1a2", "", "", "2600 Collison Demo 2 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "77887e4192a6b0a781530e6cf9be7199", "Atari", "CX2604", "Space War (1978) (Atari) [b1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "77cd9a9dd810ce8042bdb9d40e256dfe", "", "", "Evil Dead (2003) (Kyle Pittman) (Haunted House Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "77cd9a9dd810ce8042bdb9d40e256dfe", "Kyle Pittman", "", "Evil Dead (2003) (Kyle Pittman) (Hack)", "Hack of Haunted House", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "77d0a577636e1c9212aeccde9d0baa4b", "Atari, Joe Decuir", "CX2621, CX2621P", "Video Olympics (1977) (Atari) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "YES", "", "", "", "", "", "" }, { "78297db7f416af3052dd793b53ff014e", "", "", "Poker Squares (V0.17) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7836794b79e8060c2b8326a2db74eef0", "", "", "RIOT RAM Test (26-11-2002) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "784176346e9422733d55c427230e5bad", "Activision, Alex DeMeo", "", "Title Match Pro Wrestling (1989) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7860716fa5dbc0fffab93fb9a4cb4132", "", "", "Hangman Monkey Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7860716fa5dbc0fffab93fb9a4cb4132", "", "", "Hangman Monkey Wordlist (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "787ebc2609a31eb5c57c4a18837d1aee", "Prescott", "", "Vault Assault (19xx) (Prescott)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "78821ef76ebc3934850d1bc1b9e4f4b0", "HES - Activision", "542", "Hot Action Pak - Ghostbusters, Tennis, Plaque Attack (1990) (HES) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "78963290052fd17c6c7998305ab3a6a0", "", "", "Push (V0.08) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "78c2de58e42cd1faac2ea7df783eaeb3", "", "", "Fu Kung! (V0.07) (25-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "79004f84bdeee78d142e445057883169", "CCE", "C-830", "Planet Patrol (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "791bc8aceb6b0f4d9990d6062b30adfa", "Activision, David Crane - Ariola", "EAX-018, EAX-018-04B, EAX-018-04I - 711 018-725", "Pitfall! (1982) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7926083ad423ed685de3b3a04a914315", "Barry Laws Jr.", "", "Face Invaders 2 by Barry Laws Jr. (Space Invaders Hack)", "Hack of Astroblast (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7926083ad423ed685de3b3a04a914315", "Barry Laws Jr.", "", "Face Invaders 2 (Barry Laws Jr.) (Hack)", "Hack of Astroblast", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "792b1d93eb1d8045260c840b0688ec8f", "Kroko", "", "3E Bankswitch Test (TIA @ $00)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7972e5101fa548b952d852db24ad6060", "Atari - Sears", "CX2627 - 6-99841", "Human Cannonball (1979) (Atari)", "AKA Cannon Man", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "798b8921276eec9e332dfcb47a2dbb17", "Atari, Gary Stark", "CX26102", "Cookie Monster Munch (1983) (Atari) (PAL) [a]", "Uses Kids/Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "250", "", "", "" }, @@ -1435,7 +1437,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "79ab4123a83dc11d468fb2108ea09e2e", "Activision, David Rolfe - Cheshire Engineering", "AZ-037-04", "Beamrider (1984) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "79b649fb812c50b4347d12e7ddbb8400", "", "", "Red Pong Number 2 Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "79c27f90591e3fdc7d2ed020ecbedeb3", "CCE", "C-815", "Seaquest (1983) (CCE) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "79d4af56036ec28f298cad964a2e2494", "", "", "Hangman Pac-Man Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "79d4af56036ec28f298cad964a2e2494", "", "", "Hangman Pac-Man Wordlist (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "79d6f61da3c64688ac8e075667f8a39f", "", "", "Tie-Fighters (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "79e5338dbfa6b64008bb0d72a3179d3c", "M Network, David Akers, Patricia Lewis Du Long - INTV", "MT4313", "Star Strike (1983) (Mattel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "79fcdee6d71f23f6cf3d01258236c3b9", "Atari - GCC, Mike Feinstein, John Mracek", "CX2673, CX2673P", "Phoenix (1982) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1455,7 +1457,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "7adbcf78399b19596671edbffc3d34aa", "Atari, Joseph Tung", "CX26152", "Super Baseball (1988) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, { "7af40c1485ce9f29b1a7b069a2eb04a7", "Amiga", "3120", "Mogul Maniac (1983) (Amiga)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7b24bfe1b61864e758ada1fe9adaa098", "Atari, Chris Crawford", "", "Wizard (1980) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7b33407b2b198af74906b936ce1eecbb", "", "", "Ghostbuster 2 (NTSC) (King Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "7b33407b2b198af74906b936ce1eecbb", "King Atari", "", "Ghostbuster 2 (King Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "7b3cf0256e1fa0fdc538caf3d5d86337", "CommaVid, Joseph Biel", "CM-009", "Stronghold (1983) (CommaVid)", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "7b43c32e3d4ff5932f39afcb4c551627", "Syncro, Dan Wolf - Hozer Video Games", "", "Kamikaze Saucers (1983) (Syncro) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "38", "220", "", "", "" }, { "7b5207e68ee85b16998bea861987c690", "Atari, Carol Shaw", "CX26163P", "3-D Tic-Tac-Toe (32 in 1) (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "62", "", "", "", "" }, @@ -1470,6 +1472,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "7c757bb151269b2a626c907a22f5dae7", "TNT Games, Adam Clayton", "26192", "BMX Air Master (1989) (TNT Games) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7c9b3b8b25acf2fe3b8da834f69629c6", "", "", "I Robot (1984) (Atari) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ca7a471d70305c673fedd08174a81e8", "Tim Snider", "", "Venture II (2001) (Tim Snider)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "7cafc884a21aa3b7052f7109e690ca70", "", "", "sgems.bin", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, { "7ccf350354ee15cd9b85564a2014b08c", "", "", "Big Dig (13-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7cd379da92c93679f3b6d2548617746a", "", "", "Demo Image Series #5 - Clown (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7cd900e9eccbb240fe9c37fa28f917b5", "Jone Yuan Telephonic Enterprise Co", "", "Bi! Bi! (Jone Yuan) (PAL)", "AKA Skindiver", "", "", "", "", "", "", "", "", "", "", "", "38", "250", "", "", "" }, @@ -1498,7 +1501,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "7e9da5cb84d5bc869854938fe3e85ffa", "Atari, Ian Shepard - Sears", "CX2604 - 6-99812, 49-75106", "Space War (1978) (Atari) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7eab0284a0cd1043461d446a08d08cec", "Jone Yuan Telephonic Enterprise Co", "", "Basic Math (Jone Yuan) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ead257e8b5a44cac538f5f54c7a0023", "Xonox, Anthony R. Henderson", "99006, 6220", "Sir Lancelot (1983) (Xonox)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7eaf009a892f03d90682dc1e67e85f07", "", "", "Bounce! (18-03-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "7eaf009a892f03d90682dc1e67e85f07", "Fabrizio Zavagli", "", "Bounce! (18-03-2003) (Fabrizio Zavagli)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "7eafc9827e8d5b1336905939e097aae7", "Atari, Mark R. Hahn - Hozer Video Games", "", "Elk Attack (1987) (Atari) (Protoype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7eba20c2291a982214cc7cbe8d0b47cd", "Imagic, Dave Johnson", "03211", "Quick Step! (1983) (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ed61a18cebdeca0a93be1f5461731e5", "Dactari", "", "Skiing (Dactari) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1516,12 +1519,11 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "7f9fbe3e00a21ea06e6ae5e0e5db2143", "", "", "Skate Boardin' (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7fcd1766de75c614a3ccc31b25dd5b7a", "PlayAround", "203", "Knight on the Town (1982) (PlayAround)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "7fcd5fb59e88fc7b8473c641f44226c3", "CCE", "C-807", "Space Tunnel (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "215", "", "", "" }, - { "7fd52208fb6391bae0cd7e68c27bde6f", "CBS Electronics", "2653", "Donkey Kong Junior (Coleco) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ff53f6922708119e7bf478d7d618c86", "Suntek", "SS-032", "Walker (Suntek) (PAL)", "AKA Clown Down Town", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ffc2d80fd49a124808315306d19868e", "Ishido", "", "Domino (Ishido) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "801ba40f3290fc413e8c816c467c765c", "Hozer Video Games", "", "Gunfight 2600 - Westward Ho! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "804ed85eadf1ce3e93721547cbea7592", "CCE", "", "Fishing Derby (CCE) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "805f9a32ef97ac25f999a25014dc5c23", "", "", "Balthazar (aka Babylon 5) (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "805f9a32ef97ac25f999a25014dc5c23", "SnailSoft", "", "Balthazar (SnailSoft)", "AKA Babylon 5", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "8068e07b484dfd661158b3771d6621ca", "Epyx, Steven A. Baker, Peter Engelbrite", "80561-00286", "California Games (1988) (Epyx) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "807a8ff6216b00d52aba2dfea5d8d860", "John Payson", "", "Strat-O-Gems Deluxe", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "808c3b1e60ee0e7c65205fa4bd772221", "CCE", "", "Defender (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1562,14 +1564,13 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "83f05ececae8be59ba1e51135f4bdcbf", "", "", "Demo Image Series #13 - Mario (4K Interleaved Chronocolour) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "83f50fa0fbae545e4b88bb53b788c341", "Atari, Larry Kaplan - Sears", "CX2643 - 6-99815", "Codebreaker (1978) (Atari) (4K)", "Uses Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "", "", "" }, { "83fafd7bd12e3335166c6314b3bde528", "Epyx, Steven A. Baker, Tod Frye, Peter Engelbrite", "80561-00251", "Winter Games (1987) (Epyx)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "840a5a2eaea24d95d289f514fd12f9bb", "", "", "GBImprov (Ghostbusters Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "840a5a2eaea24d95d289f514fd12f9bb", "", "", "GBImprov (Hack)", "Hack of Ghostbusters", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "841b7bc1cad05f5408302308777d49dc", "Activision", "", "Unknown Activision Game #1 (1983) (Activision) (Prototype) [a]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "84290e333ff7567c2380f179430083b8", "Imagic, Dave Johnson", "13211, EIX-004-04I", "Quick Step! (1983) (Imagic) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "843435eb360ed72085f7ab9374f9749a", "Joe Grand", "", "SCSIcide (1.31) (Joe Grand)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "" }, { "84535afb9a69712ec0af4947329e08b8", "CCE", "C-868", "Bingo (1983) (CCE) (PAL)", "AKA Dice Puzzle", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8454ed9787c9d8211748ccddb673e920", "Froggo", "FG1002", "Spiderdroid (1987) (Froggo)", "AKA Amidar", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8490e1014c2baa0d3a3a08854e5d68b3", "Xonox, Anthony R. Henderson", "99006, 6220", "Sir Lancelot (1983) (Xonox) [a2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "84d1cf884f029e458db196548db9c2ad", "Ishido", "", "Domino (Ishido) (PD) [b1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "84db818cd4111542a15c2a795369a256", "Starpath Corporation, Steve Mundry, Scott Nelson", "AR-4401", "Survival Island (1983) (Starpath) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "84df0704e6c777e1f9a16ec92ad80df0", "Gray Games & AtariAge", "", "E.T. Book Cart (PAL/60)", "Charles F. Gray & Michael Rideout", "", "", "", "", "", "", "", "", "", "", "PAL60", "15", "240", "YES", "55", "" }, { "84ea80e31b306059f56fdce2f07b758f", "", "", "Death Derby (19-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1580,7 +1581,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "8538c5e3ee83267774480649f83fa8d6", "", "", "Escape Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "853c11c4d07050c22ef3e0721533e0c5", "", "", "Oink! (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "85470dcb7989e5e856f36b962d815537", "Atari - Sculptured Software, Inc., Steve Aguirre", "CX26162", "Fatal Run (1989) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "85478bb289dfa5c63726b9153992a920", "", "", "Candi (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "85478bb289dfa5c63726b9153992a920", "", "", "Candi (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "854b68b93e7123a3be42b5a2a41f75d7", "Atari, Carol Shaw", "CX2618, CX2618P", "3-D Tic-Tac-Toe (1980) (Atari) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "85502d69fe46b7f54ef2598225678b47", "Jone Yuan Telephonic Enterprise Co", "", "Super-Ferrari (Jone Yuan)", "AKA Enduro", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8556b42aa05f94bc29ff39c39b11bff4", "Atari, Craig Nelson - Sears", "CX2617, 49-75183", "Backgammon (1979) (Atari)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, @@ -1611,7 +1612,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "8786c1e56ef221d946c64f6b65b697e9", "20th Century Fox Video Games, David Lubar", "11015", "Flash Gordon (1983) (20th Century Fox)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8786f229b974c393222874f73a9f3206", "Activision, Larry Miller - Ariola", "EAX-021, EAX-021-04I - 711 021-720", "Spider Fighter (1983) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, { "8786f4609a66fbea2cd9aa48ca7aa11c", "Goliath", "", "Open Sesame (1983) (Goliath) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "YES", "", "" }, - { "87b460df21b7bbcfc57b1c082c6794b0", "", "", "Climber 5 (20-03-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "NO" }, + { "87b460df21b7bbcfc57b1c082c6794b0", "Dennis Debro", "", "Climber 5 (20-03-2003) (Dennis Debro)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "NO" }, { "87b6a17132fc32f576bc49ea18729506", "Atari, Andrew Fuchs, Courtney Granner, Jeffrey Gusman, Mark R. Hahn", "CX2690", "Pengo (1984) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "87bea777a34278d29b3b6029833c5422", "Tigervision / Thomas Jentzsch", "", "Polaris (1983) (Tigervision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "87e79cd41ce136fd4f72cc6e2c161bee", "Atari - GCC, Mark Ackerman, Glenn Parker", "CX2675", "Ms. Pac-Man (1982) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1631,19 +1632,19 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "8917f7c1ac5eb05b82331cf01c495af2", "Bit Corporation", "PG202", "Space Tunnel (1982) (BitCorp) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, { "8933976f2029c0d8492ebd8f4eb21492", "", "", "Synthcart Plus (09-02-2003) (Paul Slocum)", "Uses Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "", "", "" }, { "896ec58f26e930e02f5e4f046602c3a1", "", "", "Synthcart (Beta) (2002) (Paul Slocum)", "Uses Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "YES", "", "" }, - { "898748d5eaac3164b0391a64ae1e0e32", "", "", "Hangman Man 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "898748d5eaac3164b0391a64ae1e0e32", "", "", "Hangman Man 4letter (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "898b5467551d32af48a604802407b6e8", "Bit Corporation", "PG208", "Snail Against Squirrel (1983) (BitCorp) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "44", "", "", "", "" }, { "89a65b83203980d5d4d60f52a584a5b8", "", "", "Marble Craze (PAL) (02-02-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "89a68746eff7f266bbf08de2483abe55", "Atari, Jerome Domurat, Steve Woita", "CX2696", "Asterix (1983) (Atari) (Prototype)", "AKA Taz", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "89afff4a10807093c105740c73e9b544", "", "", "Pooyan (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8a159ee58b2f0a54805162984b0f07e5", "Atari - Sculptured Software, Inc., Steve Aguirre", "CX26162", "Fatal Run (1989) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8a183b6357987db5170c5cf9f4a113e5", "Atari, Alex Leavens", "CX2679", "RealSports Basketball (1983) (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8a42e2c7266439d8997a55d0124c912c", "", "", "Hangman Invader Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8a42e2c7266439d8997a55d0124c912c", "", "", "Hangman Invader Wordlist (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8a49cf1785e3dea2012d331a3ad476e1", "", "", "Boulderdash (10 Blocks Wide) (02-04-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8a6c84f481acf42abcb78ba5064ad755", "128-in-1 Junior Console", "", "Street Racer (128-in-1 Junior Console) (PAL) (4K)", "Uses the Paddle Controllers (swapped)", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "YES", "", "", "250", "", "", "" }, { "8a8e401369e2b63a13e18a4d685387c6", "Activision, David Crane - Ariola", "EAG-008, PAG-008, EAG-008-04I - 711 008-720", "Laser Blast (1981) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8a9d874a38608964f33ec0c35cab618d", "Chris Cracknell", "", "Rescue Bira Bira (Chris Cracknell) [!]", "Hack of Jungle Fever (Mystique)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "20", "230", "YES", "", "" }, - { "8a9d953ac3db52a313a90d6a9b139c76", "", "", "Hangman Invader Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8a9d953ac3db52a313a90d6a9b139c76", "", "", "Hangman Invader Biglist3 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8aad33da907bed78b76b87fceaa838c1", "Atari, Larry Kaplan", "CX26163P", "Air-Sea Battle (32 in 1) (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "260", "", "", "" }, { "8ac18076d01a6b63acf6e2cab4968940", "Atari, Dan Hitchens", "CX2685", "Gravitar (1983) (Atari) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8ae7809702b7d618e45daa2ddb0ece26", "", "", "Greeting Cart Blue-Ribbon Award(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1659,31 +1660,31 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "8bbfd951c89cc09c148bfabdefa08bec", "UA Limited", "", "Pleiades (1983) (UA Limited) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "32", "", "YES", "", "" }, { "8bc0d2052b4f259e7a50a7c771b45241", "Xonox, Anthony R. Henderson", "", "Tomarc the Barbarian (1983) (Xonox)", "", "", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, { "8bd8f65377023bdb7c5fcf46ddda5d31", "Activision, Bob Whitehead", "AG-019", "Sky Jinks (1982) (Activision) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8bebac614571135933116045204f0f00", "", "", "Missile Command (CX-22 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "8c103a79b007a2fd5af602334937b4e1", "ITT Family Games / Thomas Jentzsch", "", "Laser Base (AKA World End) (ITT Family Games) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8bebac614571135933116045204f0f00", "Thomas Jentzsch", "", "Missile Command (CX-22 Trackball) (2002) (TJ) (PAL)", "Uses CX-22 Trackball Controller", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "8c103a79b007a2fd5af602334937b4e1", "Thomas Jentzsch", "", "Laser Base (Thomas Jentzsch)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "240", "", "", "" }, { "8c136e97c0a4af66da4a249561ed17db", "", "", "Poker Squares (V0.27) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8c2fa33048f055f38358d51eefe417db", "Home Vision - Gem Int'l Corp.", "VCS83137", "Teddy Apple (1983) (Home Vision) (PAL)", "AKA Open, Sesame!", "", "", "", "", "", "", "", "", "", "", "", "42", "", "YES", "", "" }, { "8c36ed2352801031516695d1eeefe617", "Epyx, Steven A. Baker, Tod Frye, Peter Engelbrite", "80561-00251", "Winter Games (1987) (Epyx) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8c8a26ed57870daba8e13162d497bad1", "HES", "", "2 Pak Special Green - Dolphin, Oink (1990) (HES) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8ccaa442d26b09139685f5b22bf189c4", "Retroactive", "", "Qb (V1.01) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "8cd26dcf249456fe4aeb8db42d49df74", "Atari", "CX26139", "Crossbow (1987) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8ce9126066f2ddd5173e9f1f9ce1494e", "", "", "Missile Command (CX-22 Trackball) (NTSC) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "8ce9126066f2ddd5173e9f1f9ce1494e", "Thomas Jentzsch", "", "Missile Command (CX-22 Trackball) (2002) (TJ)", "Uses CX-22 Trackball Controller", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "8cf0d333bbe85b9549b1e6b1e2390b8d", "Atari, Brad Stewart", "CX2649, CX2649P", "Asteroids (1981) (Atari) (PAL)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "8d00a38f4c8f8800f1c237215ac243fc", "", "", "3-D Corridor (Green) (30-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8d1e2a6d2885966e6d86717180938f87", "", "", "Missile Command (Amiga Mouse) (NTSC) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "8d1e2a6d2885966e6d86717180938f87", "Thomas Jentzsch", "", "Missile Command (Amiga Mouse) (2002) (TJ)", "Uses Amiga Mouse Controller", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "8d8b7d7b983f75debbdaac651e814768", "", "", "Demo Image Series #15 - Three Marios (PAL) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8d9a06101ebb0f147936356e645309b8", "", "", "Grid Pattern Demo 2 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8da51e0c4b6b46f7619425119c7d018e", "Atari, David Lubar", "CX26183", "Sentinel (1990) (Atari)", "Uses the Light Gun Controller (left only)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8db152458abaef3cfa7a4e420ddbda59", "", "", "Keystone Kapers (Unknown)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8df4be9ddc54ac363b13dc57ceaf161a", "Atari / Scott Stilphen", "", "Asteroids SS (Asteroids Hack)", "Hack of Asteroids (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "8df4be9ddc54ac363b13dc57ceaf161a", "Scott Stilphen", "", "Asteroids SS (Scott Stilphen) (Hack)", "Hack of Asteroids", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "8e0ab801b1705a740b476b7f588c6d16", "Activision, David Crane", "AG-009, AG-009-04", "Freeway (1981) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8e42674972d6805068fc653e014370fd", "", "", "Skeleton (PAL) (15-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8e48ea6ea53709b98e6f4bd8aa018908", "CBS Electronics, Stuart Ross", "", "Wings (1983) (CBS Electronics) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "8e4cd60d93fcde8065c1a2b972a26377", "Imagic, Dan Oliver", "13208 - EIX-007-04I", "Laser Gates (1983) (Imagic) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8e4fa8c6ad8d8dce0db8c991c166cdaa", "Atari, Bill Aspromonte, John Russell, Michael Sierchio, Robert Zdybel", "CX26114", "Pigs in Space (1983) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8e737a88a566cc94bd50174c2d019593", "Quelle", "343.173 1", "Feuerwehr im Einsatz (1983) (Quelle) (PAL)", "AKA Fire Fighter", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8e822b39a71c84ac875f0107fb61d6f0", "", "", "Hangman Ghost Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8e879aa58db41edb67cbf318b77766c4", "CCE / Thomas Jentzsch", "", "Cosmic Commuter (PAL60 by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "" }, + { "8e822b39a71c84ac875f0107fb61d6f0", "", "", "Hangman Ghost Original Words (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8e879aa58db41edb67cbf318b77766c4", "Thomas Jentzsch", "", "Cosmic Commuter (Thomas Jentzsch) (PAL60)", "NTSC Conversion", "Hack", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "" }, { "8e887d1ba5f3a71ae8a0ea16a4af9fc9", "", "", "Skeleton (V1.1) (PAL) (24-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8ed73106e2f42f91447fb90b6f0ea4a4", "Spectravision, Spectravideo", "SA-204", "Tapeworm (1982) (Spectravision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "8ee3f64dc0f349adc893fe93df5245d8", "", "", "Euchre (20-07-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1700,7 +1701,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "9041cfd144df075552efebbb81df625d", "", "", "Greeting Cart Ann R (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9057694dce8449521e6164d263702185", "Activision, Bob Whitehead", "AG-011", "Stampede (1981) (Activision) (16K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "90578a63441de4520be5324e8f015352", "Bit Corporation", "PGP204", "Open Sesame (1983) (BitCorp) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "YES", "", "" }, - { "9072c142728a3a3d994956d03bfacba2", "Fabrizio Zavagli / 20th Century Fox", "", "Crash Dive (PAL Conversion) (Fabrizio Zavagli)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, + { "9072c142728a3a3d994956d03bfacba2", "Fabrizio Zavagli", "", "Crash Dive (Fabrizio Zavagli) (PAL60)", "NTSC Conversion", "Hack", "", "", "", "", "", "", "", "", "", "PAL60", "30", "", "", "", "" }, { "90b1799dddb8bf748ee286d22e609480", "", "", "Ship Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "90ccf4f30a5ad8c801090b388ddd5613", "Starpath Corporation, Stephen Harland Landrum", "AR-4400", "Dragonstomper (1982) (Starpath)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "90d77e966793754ab4312c47b42900b1", "Imagic, Brad Stewart", "IA3400P, EIX-005-04I", "Fire Fighter (1982) (Imagic) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1717,7 +1718,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "91f0a708eeb93c133e9672ad2c8e0429", "", "", "Oystron (V2.9) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "91fdb6541f70c40b16aabf8308123be8", "", "", "Interlacing Game (19-08-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9222b25a0875022b412e8da37e7f6887", "Panda", "106", "Dice Puzzle (1983) (Panda)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "YES", "", "" }, - { "9245a84e9851565d565cb6c9fac5802b", "Bomb - Onbase", "CA282", "Great Escape (1983) (Bomb)", "AKA Asteroid Fire", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9245a84e9851565d565cb6c9fac5802b", "Bomb - Onbase", "CA282", "Great Escape (1983) (Bomb)", "AKA Asteroid Fire", "", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "" }, { "925dda3c61b81eeb7bd8467b6e99dedc", "Arcadia Corporation, Dennis Caswell", "", "Labyrinth (1982) (Arcadia)", "Escape from the Mindmaster Beta", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "927d422d6335018da469a9a07cd80390", "Activision, Carol Shaw - Ariola", "EAX-020, EAX-020-04B, EAX-020-04I - 711 020-720", "River Raid (1982) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9281eccd7f6ef4b3ebdcfd2204c9763a", "Retroactive", "", "Qb (2.15) (Retroactive) (PAL)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -1729,7 +1730,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "92ede72ed8f61d255bc58d2f166dc6b6", "", "", "Star Fire - Shootable (26-09-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "931b91a8ea2d39fe4dca1a23832b591a", "Activision, David Crane", "AG-008", "Laser Blast (1981) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9333172e3c4992ecf548d3ac1f2553eb", "Konami", "RC 101-X 02", "Strategy X (1983) (Konami)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, - { "93420cc4cb1af1f2175c63e52ec18332", "Tim Snider", "", "Blair Witch Project by Tim Snider (Haunted House Hack)", "Hack of Haunted House (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "93420cc4cb1af1f2175c63e52ec18332", "Tim Snider", "", "Blair Witch Project (Tim Snider) (Hack)", "Hack of Haunted House", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "93511052bbc9423337905d4d17ecef96", "", "", "Incoming (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9364ad51c321e0f15c96a8c0aff47ceb", "Atari, Rob Fulop", "CX2638", "Missile Command (1981) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "936ef1d6f8a57b9ff575dc195ee36b80", "", "", "Pac Kong (Unknown)", "AKA Spider Kong", "", "", "", "", "", "", "", "", "", "", "", "24", "220", "", "", "" }, @@ -1737,12 +1738,12 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "937736d899337036de818391a87271e0", "Atari, Peter C. Niday", "CX26108", "Donald Duck's Speedboat (1983) (Atari) (Prototype)", "AKA Donald Duck's Regatta", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "939ce554f5c0e74cc6e4e62810ec2111", "ZiMAG - Emag - Vidco", "711-111 - GN-020", "Dishaster (1983) (ZiMAG)", "AKA Dancing Plate", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "93acd5020ae8eb5673601e2edecbc158", "Chris Cracknell", "", "Video Time Machine (Chris Cracknell)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "93b9229fc0ea4fb959d604f83f8f603c", "", "", "Amidar DS (Fast Enemies) (2003) (TJ) (Amidar Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "93b9229fc0ea4fb959d604f83f8f603c", "Thomas Jentzsch", "", "Amidar DS (Fast Enemies) (2003) (TJ) (Hack)", "Hack of Amidar", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "93c52141d3c4e1b5574d072f1afde6cd", "Imagic, Mark Klein", "03213", "Subterranea (1983) (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "93c8d9d24f9c5f1f570694848d087df7", "Digivision", "", "Galaxian (Digivision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "93c9f9239a4e5c956663dd7affa70da2", "Quelle", "626.610 0", "Billard (1983) (Quelle) (PAL)", "AKA Trick Shot", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "93dc15d15e77a7b23162467f95a5f22d", "CCE", "", "Sky Jinks (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "93eb1795c8b1065b1b3d62bb9ec0ccdc", "", "", "Custer's Viagra (JSK) (Custer's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, + { "93eb1795c8b1065b1b3d62bb9ec0ccdc", "JSK", "", "Custer's Viagra (JSK) (Hack)", "Hack of Custer's Revenge", "Hack", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "94102febc53b4a78342d11b645342ed4", "", "", "Joustpong (14-07-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9436b7ad131b5a1f7753ce4309ba3dee", "Kyle Pittman", "", "War of The Worlds by Kyle Pittman (Defender Hack)", "Hack of Defender (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9469d18238345d87768e8965f9f4a6b2", "CCE", "", "Ms. Pac-Man (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1765,14 +1766,14 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "95fd6097dc27c20666f039cfe34f7c69", "", "", "Oh No! (Version 1) (17-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "961112b74a920a5242e233480326c356", "Activision, Alan Miller", "AG-007, CAG-007", "Tennis (1981) (Activision) (16K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "962ffd3eaf865230a7a312b80e6c5cfd", "Imagic, Wilfredo 'Willy' Aguilar, Michael Becker, Rob Fulop", "13205", "Fathom (1983) (Imagic) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "96670d0bf3610da2afcabd8e21d8eabf", "", "", "Boring Pitfall (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "96670d0bf3610da2afcabd8e21d8eabf", "", "", "Boring Pitfall (Hack)", "Hack of Pitfall!", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "966b11d3c147d894dd9e4ebb971ea309", "", "", "Marble Craze Song (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9671b658286e276cc4a3d02aa25931d2", "", "", "Hangman Ghost Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9671b658286e276cc4a3d02aa25931d2", "", "", "Hangman Ghost Wordlist (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "968efc79d500dce52a906870a97358ab", "TNT Games, Adam Clayton", "26192", "BMX Air Master (1989) (TNT Games)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "969b968383d9f0e9d8ffd1056bcaef49", "Atari, Larry Kaplan", "CX2628, CX2628P", "Bowling (1979) (Atari) (PAL)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "96bcb3d97ce4ff7586326d183ac338a2", "", "", "Revenge of the Apes (Planet of the Apes Hack) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "96e798995af6ed9d8601166d4350f276", "20th Century Fox Video Games, David Ross", "11029", "Meltdown (1983) (20th Century Fox) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "96eccc2277043508a6c481ea432d7dd9", "", "", "Missile Command (CX-80 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "96eccc2277043508a6c481ea432d7dd9", "Thomas Jentzsch", "", "Missile Command (CX-80 Trackball) (2002) (TJ) (PAL)", "Uses CX-80 Trackball Controller", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "96f806fc62005205d851e758d050dfca", "", "", "Push (V0.05) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "972486110933623039a3581db308fda6", "", "", "Xeno Plus (Xenophone Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "97327d6962f8c64e6f926f79cd01c6b9", "", "", "Jawbreaker (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1780,18 +1781,18 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "97842fe847e8eb71263d6f92f7e122bd", "Imagic, Wilfredo 'Willy' Aguilar, Michael Becker, Dennis Koble", "03206", "Solar Storm (1983) (Imagic)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "97933c9f20873446e4c1f8a4da21575f", "", "", "Racquetball (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "97cd63c483fe3c68b7ce939ab8f7a318", "Thomas Jentzsch", "", "Robot City (V0.21) (15-09-2002) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, - { "97d0151beb84acbe82aa6db18cd91b98", "", "", "Lunar Attack (2002) (Steve Engelhardt) (Z-Tack Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "97d0151beb84acbe82aa6db18cd91b98", "Steve Engelhardt", "", "Lunar Attack (2002) (Steve Engelhardt) (Hack)", "Hack of Z-Tack", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "97d079315c09796ff6d95a06e4b70171", "Activision, Garry Kitchen", "AZ-032", "Pressure Cooker (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9813b9e4b8a6fd919c86a40c6bda8c93", "Atari", "CX26177", "Ikari Warriors (1989) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9831efc7f4cb8ffb4df0082bab2f07a3", "Activision, Steve Cartwright - Ariola", "EAX-031, EAX-031-04B - 711 031-717", "Frostbite (1983) (Activision) (PAL) (8K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9848b5ef7a0c02fe808b920a2ac566d2", "", "", "Baseball (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9848b5ef7a0c02fe808b920a2ac566d2", "Skyworks Technology Inc.", "", "Baseball (2002) (Skyworks)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9853089672116117258097dbbdb939b7", "Hozer Video Games", "", "Gunfight 2600 - Cowboy Hair (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98555b95cb38e0e0b22b482b2b60a5b6", "", "", "Spinning Fireball (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "98ba601a60172cb46c5bf9a962fd5b1f", "", "", "Gorilla Kong (Donkey Kong Hack)", "Hack of Donkey Kong (Coleco)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "98ba601a60172cb46c5bf9a962fd5b1f", "", "", "Gorilla Kong (Hack)", "Hack of Donkey Kong", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98ccd15345b1aee6caf51e05955f0261", "Retroactive", "", "Qb (V2.03) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "98e5e4d5c4dd9a986d30fd62bd2f75ae", "", "", "Air-Sea Battle (Hack) (4K)", "", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98e6e34af45a0664597972c3bb31180f", "", "", "Space Instigators (V1.7) (17-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "98e7caaab8ec237558378d2776c66616", "", "", "HMOVE Test (Bradford W. Mott) (1998) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "98e7caaab8ec237558378d2776c66616", "Bradford W. Mott", "", "HMOVE Test (Bradford W. Mott) (1998) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98ea10c47c13f1b3306c7b13db304865", "", "", "Jam Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98ec0fa4199b9c01f7b8fa3732e43372", "Activision, David Crane", "AX-018, AX-018-04", "Pitfall! (1982) (Activision) (8K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98ef1593624b409b9fb83a1c272a0aa7", "CCE", "C-831", "Cosmic Ark (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1804,9 +1805,9 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "9945a22f60bbaf6d04a8d73b3cf3db75", "Activision, Dan Kitchen", "EAX-039-04B, EAX-039-04I", "Kung-Fu Master (1987) (Activision) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9947f1ebabb56fd075a96c6d37351efa", "CBS Electronics", "4L-2737", "Omega Race (1983) (CBS Electronics)", "Set right difficulty to 'A' for Booster-Grip in both ports", "", "", "", "", "A", "", "", "BOOSTER-GRIP", "BOOSTER-GRIP", "", "", "", "", "", "", "" }, { "9962034ea7b3d4a905d0991804670087", "", "", "Grid Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9989f974c3cf9c641db6c8a70a2a2267", "", "", "Colours Selector (Eckhard Stolberg) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "99a24d7bb31d49b720b422550b32c35f", "", "", "Hangman Ghost Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "99f7c6c26046bbe95f1c604b25da8360", "", "", "Comitoid beta 2 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9989f974c3cf9c641db6c8a70a2a2267", "Eckhard Stolberg", "", "Colours Selector (Eckhard Stolberg)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "99a24d7bb31d49b720b422550b32c35f", "", "", "Hangman Ghost Biglist1 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "99f7c6c26046bbe95f1c604b25da8360", "SnailSoft", "", "Comitoid beta 2 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9a21fba9ee9794e0fadd7c7eb6be4e12", "Atari", "CX26177", "Ikari Warriors (1989) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9a25b3cfe2bbb847b66a97282200cca2", "Atari, Steve Jobs, Brad Stewart - Sears", "CX2622 - 6-99813, 49-75107", "Breakout (1978) (Atari) (4K)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "9a4274409216ff09ecde799f2a56ac73", "CCE", "C-801", "Mr. Postman (1983) (CCE) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1818,14 +1819,14 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "9b21d8fc78cc4308990d99a4d906ec52", "ZiMAG - Emag - Vidco", "715-111 - GN-060", "Immies & Aggies (1983) (ZiMAG) (Prototype)", "AKA Spectracube Invasion", "", "", "", "", "", "", "", "", "", "", "", "18", "223", "", "", "" }, { "9b246683f44c963a50e41d6b485bee77", "", "", "Boring (PAL) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9bb136b62521c67ac893213e01dd338f", "Xonox - Beck-Tech", "6210, 7210, 06003. 99001", "Spike's Peak (1983) (Xonox) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9bd4e0d5f28ba6da417c26649171f8e4", "", "", "Hangman Pac-Man Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9be58a14e055b0e7581fc4d6c2f6b31d", "", "", "Adventure (Color Scrolling) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9bd4e0d5f28ba6da417c26649171f8e4", "", "", "Hangman Pac-Man Original Words (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9be58a14e055b0e7581fc4d6c2f6b31d", "", "", "Adventure (Color Scrolling) (Hack)", "Hack of Adventure", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9c27ef3bd01c611cdb80182a59463a82", "Starpath Corporation, Kevin Norman", "AR-4103", "Killer Satellites (1983) (Starpath)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9c40bf810f761ffc9c1b69c4647a8b84", "", "", "2 in 1 - Frostbite, River Raid (Unknown)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9c6d65bd3b477aace0376f705b354d68", "", "", "RPG Kernal (18-04-2003) (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "9c6faa4ff7f2ae549bbcb14f582b70e4", "U.S. Games Corporation, Garry Kitchen - Vidtec", "VC1002", "Sneak 'n Peek (1982) (U.S. Games)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "218", "", "", "" }, { "9c6fd6ed3599978ab7b6f900484b9be6", "Andrew Wallace", "", "Laseresal 2002 (PAL-60) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9c729017dd2f9ccbadcb511187f80e6b", "", "", "J-Pac (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9c729017dd2f9ccbadcb511187f80e6b", "", "", "J-Pac (Hack)", "Hack of Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9c7fa3cfcaaafb4e6daf1e2517d43d88", "", "", "PIEROXM Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9ca2deb61318eba4fb784d4bf7441d8b", "", "", "Purple Bar Demo 2 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9cbb07f1993a027bc2f87d5205457ec9", "", "", "Eckhard Stolberg's Scrolling Text Demo 1 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1834,7 +1835,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "9d2938eb2b17bb73e9a79bbc06053506", "Imagic, Michael Greene", "EIZ-002-04I", "Wing War (1983) (Imagic) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9d2f05d0fe8b2dfcf770b02eda066fc1", "", "", "Push (V0.06) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9d37a1be4a6e898026414b8fee2fc826", "M Network, David Rolfe - INTV", "MT5665", "Super Challenge Baseball (1982) (Mattel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9d4bc7c6fe9a7c8c4aa24a237c340adb", "", "", "Climber 5 (For Philly Classic 4) (16-04-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "NO" }, + { "9d4bc7c6fe9a7c8c4aa24a237c340adb", "Dennis Debro", "", "Climber 5 (16-04-2003) (Dennis Debro)", "For Philly Classic 4", "Homebrew", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "NO" }, { "9d522a3759aa855668e75962c84546f7", "Atari, Tom Rudadahl", "CX2634, CX2634P", "Golf (1980) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9d7f04618bb4043f531d087e3aaa7ac8", "Parker Brothers, Larry Gelberg, Gary Goltz", "PB5065", "Star Wars - Ewok Adventure (1983) (Parker Bros) (Prototype) (PAL) (16K)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9de0d45731f90a0a922ab09228510393", "20th Century Fox Video Games - Sirius, Mark Turmell", "11003", "Fast Eddie (1982) (20th Century Fox)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1856,7 +1857,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "9f2d58dce1b81c6ba201ed103507c025", "", "", "Fu Kung! (V0.02) (2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9f48eeb47836cf145a15771775f0767a", "Atari, Warren Robinett", "CX2620", "Basic Programming (1979) (Atari)", "Uses Keypad Controllers", "Rare", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "YES", "", "" }, { "9f5096a6f1a5049df87798eb59707583", "20th Century Fox Video Games, Mark Klein", "11036", "Entity, The (1983) (20th Century Fox) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9f59eddf9ba91a7d93bce7ee4b7693bc", "", "", "Montezuma's Revenge - Starring Panama Joe (PAL60 by Thomas Jentzsch).a26", "", "", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "" }, + { "9f59eddf9ba91a7d93bce7ee4b7693bc", "Thomas Jentzsch", "", "Montezuma's Revenge (Thomas Jentzsch) (PAL60)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "" }, { "9f8fad4badcd7be61bbd2bcaeef3c58f", "Parker Brothers, Charlie Heath", "PB5330", "Reactor (1982) (Parker Bros)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "9f901509f0474bf9760e6ebd80e629cd", "Atari, Bob Whitehead - Sears", "CX2623 - 6-99819, 49-75108, 49-75125", "Home Run (1978) (Atari) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9f93734c68f6479eb022cab40814142e", "", "", "Push (V0.07) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1864,7 +1865,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "9fc2d1627dcdd8925f4c042e38eb0bc9", "Atari - GCC, Mike Feinstein, John Allred", "CX2688, CX2688P", "Jungle Hunt (1983) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a0028f057d496f22b549fd8deecc6f78", "Joe Grand", "", "SCSIcide Pre-release 6 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a00ec89d22fcc0c1a85bb542ddcb1178", "CCE", "C-1012", "Phoenix (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a00ee0aed5c8979add4c170f5322c706", "Barry Laws Jr.", "", "Egghead by Barry Laws Jr. (Pac-Man Hack)", "", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, + { "a00ee0aed5c8979add4c170f5322c706", "Barry Laws Jr.", "", "Egghead (Barry Laws Jr.) (Hack)", "Hack of Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, { "a0185c06297b2818f786d11a3f9e42c3", "", "", "International Soccer (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a025a8f83a42a4d6d46c4887e799bfac", "Hozer Video Games", "", "Gunfight 2600 - Descissions had to be made (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a0297c4788f9e91d43e522f4c561b4ad", "Atari, Gary Stark", "CX26102", "Cookie Monster Munch (1983) (Atari) (PAL)", "Uses Kids/Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "", "", "", "", "" }, @@ -1873,7 +1874,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "a075ad332942740c386f4c3814925ece", "Starpath", "AR-4200", "Escape from the Mindmaster (2 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a0d502dc8b90b1d7daa5f6effb10d349", "", "", "Demo Image Series #5 - Sam (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a0e2d310e3e98646268200c8f0f08f46", "Atari, Ed Logg, Carol Shaw", "CX2639, CX2639P", "Othello (1981) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a100eff2d7ae61ca2b8e65baf7e2aae8", "David Marli", "", "Muncher by David Marli (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, + { "a100eff2d7ae61ca2b8e65baf7e2aae8", "David Marli", "", "Muncher (David Marli) (Hack)", "Hack of Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, { "a11099b6ec24e4b00b8795744fb12005", "Activision, Robert C. Polaro", "EAK-049-04B", "Rampage! (1989) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a14d8a388083c60283e00592b18d4c6c", "", "", "Tunnel Demo (28-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a15b5831a1fab52e4c416068c85ec011", "Hozer Video Games", "", "Gunfight 2600 - The Good, The Bad, The Ugly (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1894,11 +1895,11 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "a2424c1a0c783d7585d701b1c71b5fdc", "", "", "Video Pinball (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a25bb76e9e773117e567fd4300b1bb23", "", "", "Interleaved ChronoColour Demo (NTSC) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a28d872fc50fa6b64eb35981d0f4bb8d", "Atari, Larry Kaplan - Sears", "CX2628 - 6-99842, 49-75117", "Bowling (1979) (Atari) (4K)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a29df35557f31dfea2e2ae4609c6ebb7", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (Joystick)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a29df35557f31dfea2e2ae4609c6ebb7", "Atari", "", "Circus Atari (1980) (Atari) (Joystick)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a29fc854838e08c247553a7d883dd65b", "Activision, Steve Cartwright", "AX-013", "Barnstorming (1982) (Activision) (16K)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a2aae759e4e76f85c8afec3b86529317", "", "", "Boom Bang (Unknown)", "AKA Crackpots", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a2de0fc85548871279ed2a3c1325c13e", "George Veeder", "", "Cat and Mouse by George Veeder (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, - { "a2eb84cfeed55acd7fece7fefdc83fbb", "", "", "Kool Aid Man (Fixed) (15-11-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a2de0fc85548871279ed2a3c1325c13e", "George Veeder", "", "Cat and Mouse (George Veeder) (Hack)", "Hack of Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, + { "a2eb84cfeed55acd7fece7fefdc83fbb", "", "", "Kool Aid Man (Fixed) (15-11-2002) (CT)", "HMOVE handling fixed in this version", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a2f296ea2d6d4b59979bac5dfbf4edf0", "", "", "Warring Worms (28-01-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a302b922a8dbec47743f28b7f91d4cd8", "Starpath Corporation, Stephen Harland Landrum", "AR-4400", "Dragonstomper (Preview) (1982) (Starpath) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a30ece6dc4787e474fbc4090512838dc", "Zellers", "", "Circus (Zellers)", "AKA Circus Atari", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1918,7 +1919,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "a4790224bd5afabd53cbe93e46a7f241", "Activision, Bob Whitehead", "AG-019", "Sky Jinks (1982) (Activision) (8K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a47e26096de6f6487bf5dd2d1cced294", "Atari, Larry Kaplan", "CX2643", "Codebreaker (1978) (Atari) (PAL)", "Uses Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "57", "", "", "", "" }, { "a499d720e7ee35c62424de882a3351b6", "Sega - Bally Midway - Beck-Tech", "009-01", "Up 'n Down (1984) (Sega)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, - { "a4aa7630e4c0ad7ebb9837d2d81de801", "", "", "Atari 2600 Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a4aa7630e4c0ad7ebb9837d2d81de801", "", "", "Atari 2600 Invaders (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a4ab331e8768eafdc20ce8b0411ff77a", "", "", "Demo Image Series #1 - Sam (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a4b99aa5ed85cfdb7d101923147de035", "Jim Goebel", "", "Pac-Law by Jim Goebel (Pac-Man Hack)", "Hack of Outlaw (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a4c08c4994eb9d24fb78be1793e82e26", "Activision, Alan Miller", "AX-012, CAX-012, AX-012-04", "Ice Hockey (1981) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1927,16 +1928,16 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "a4f1cea2c8479284e2a2292f8d51b5fa", "", "", "Gunfight 2600 - The Final Kernel Part 2 (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a511f7ee13e4b35512f9217a677b4028", "Atari, Jerome Domurat, Howard Scott Warshaw", "CX2674", "E.T. - The Extra-Terrestrial (1982) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a5262fe6d01d6a1253692682a47f79dd", "", "", "JKH Text Scrolling Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a537879d8e82e1061d3ad800479d3b84", "", "", "Brooni (PAL) (2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a537879d8e82e1061d3ad800479d3b84", "Andrew Wallace", "", "Brooni (2001) (Andrew Wallace) (PD) (PAL)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a56b642a3d3ab9bbeee63cd44eb73216", "Carrere Video, Sylvia Day - Teldec", "USC2001", "Gopher (1983) (Carrere Video) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a5855d73d304d83ef07dde03e379619f", "Atari, David Crane", "", "Boggle (1978) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "27", "215", "YES", "", "" }, { "a591b5e8587aae0d984a0f6fe2cc7d1c", "", "", "Globe Trotter Demo (24-03-2003) (Weston)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a5b7f420ca6cc1384da0fed523920d8e", "", "", "Adventure (New Graphics) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a5b7f420ca6cc1384da0fed523920d8e", "", "", "Adventure (New Graphics) (Hack)", "Hack of Adventure", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a5c96b046d5f8b7c96daaa12f925bef8", "Activision, Alan Miller - Ariola", "EAG-007, EAG-007-04I, PAG-007 - 711 007-720", "Tennis (1981) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a5e9ed3033fb2836e80aa7a420376788", "Atari, Carla Meninsky", "CX2637, CX2637P", "Dodge 'Em (1980) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a60598ad7ee9c5ccad42d5b0df1570a1", "Atari, Alan Miller", "CX26163P", "Surround (32 in 1) (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a6127f470306eed359d85eb4a9cf3c96", "Atari, Michael Kosaka, Peter C. Niday, Robert Vieira", "CX26110", "Crystal Castles (1984) (Atari) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a62e3e19280ff958407e05ca0a2d5ec7", "", "", "Hangman Ghost Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a62e3e19280ff958407e05ca0a2d5ec7", "", "", "Hangman Ghost Biglist3 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a641d14c516d00da81cd12c2dbaa06db", "", "", "Image - Baboon2 (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a6637741b3e1111ebb0d4c9712a871b6", "", "", "Greeting Cart Cindy Margolis (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a6737c81542a99ee71cb5f5ff14703d9", "", "", "Scrolling Playfield 3 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1948,15 +1949,15 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "a779b9fa02c62d00d7c31ed51268f18a", "Starpath Corporation, Brian McGhie", "AR-4104", "Rabbit Transit (1983) (Starpath) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a7b584937911d60c120677fe0d47f36f", "M Network, Hal Finney - INTV", "MT5661", "Armor Ambush (1982) (Mattel)", "AKA Tank Battle", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a7b96a8150600b3e800a4689c3ec60a2", "Atari, Mike Lorenzen - Sears", "CX2630 - 49-75122", "Circus Atari (1980) (Atari)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, - { "a7cf2b9afdbb3a161bf418dbcf0321dc", "", "", "Attack Of The Mutant Space Urchins (2002) (Barry Laws Jr.) (Alien Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "a7cf2b9afdbb3a161bf418dbcf0321dc", "Barry Laws Jr.", "", "Attack Of The Mutant Space Urchins (2002) (Barry Laws Jr.) (Hack)", "Hack of Alien", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "a7ed7dc5cbc901388afa59030fb11d26", "Atari, Warren Robinett", "CX2606, CX2606P", "Slot Racers (1978) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a7ef44ccb5b9000caf02df3e6da71a92", "Atari, Ian Shepard - Sears", "CX2604 - 6-99812, 49-75106", "Space War (1978) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a8101cb667e50a46165c6fb48c608b6b", "", "", "Kung Fu Sprite Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "a81697b0c8bbc338ae4d0046ede0646b", "CCE", "", "Gravitar (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a81b29177f258494b499fbac69789cef", "Greg Thompson", "", "Console Wars (PD)", "Hack of Space Jockey (US Games)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a81b29177f258494b499fbac69789cef", "Greg Thompson", "", "Console Wars (Greg Thompson) (Hack)", "Hack of Space Jockey", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a83b070b485cf1fb4d5a48da153fdf1a", "Apollo", "AP-2011", "Pompeii (1983) (Apollo) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a8435ec570141de5d833c4abec499e55", "", "", "Happy Birthday Demo (2001) (Dennis Debro) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a867b76098786c4091dba2fcee5084c3", "", "", "Dragrace (Dragster Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "a867b76098786c4091dba2fcee5084c3", "", "", "Dragrace (Hack)", "Hack of Dragster", "Hack", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "a875f0a919129b4f1b5103ddd200d2fe", "Atari, Dan Hitchens", "CX2656", "Swordquest - EarthWorld (1982) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a8916734ff8c64ec3342f4c73fd5b57d", "Atari", "", "Stand Alone Test Cart (1982) (Atari) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a899a3e3fec8d466f45c2c3beb2961fd", "", "", "Greeting Cart Cathy (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1966,7 +1967,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "a8c48b4e0bf35fe97cc84fdd2c507f78", "Puzzy - Bit Corporation", "PG201", "Seamonster (1982) (Puzzy)", "", "", "", "", "", "", "", "", "", "", "", "", "29", "220", "", "", "" }, { "a8d0a4a77cd71ac601bd71df5a060e4c", "", "", "Space Shuttle - Journey Into Space (1983) (Activision) [t2] (Fuel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a8d4a9500b18b0a067a1f272f869e094", "", "", "Red And White Checkerboard Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a93e8ea1f565c3c1e86b708cf0dc2fa9", "Jess Ragan", "", "Kabul! by Jess Ragan (Kaboom! Hack)", "Hack of Kaboom! (Activision); Uses the Paddle Controllers (left only)", "New Release (Hack)", "", "", "", "", "", "", "PADDLES", "NONE", "", "", "", "", "", "", "" }, + { "a93e8ea1f565c3c1e86b708cf0dc2fa9", "Jess Ragan", "", "Kabul! (Jess Ragan) (Hack)", "Hack of Kaboom!, Uses the Paddle Controllers (left only)", "Hack", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "a94528ae05dd051894e945d4d2349b3b", "Genus", "", "River Raid (Genus)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a94b8ca630f467b574b614808d813919", "HES", "773-883", "2 Pak Special Orange - Space Voyage, Fire Alert (1992) (HES) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a9531c763077464307086ec9a1fd057d", "Atari, John Dunn - Sears", "CX2631 - 49-75152", "Superman (1979) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1997,7 +1998,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "abc64037ca5d5b04ae8a7eedbca3ed74", "", "", "Green and Yellow Number 1 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "abe40542e4ff2d1c51aa2bb033f09984", "Absolute Entertainment, David Crane", "EAZ-042-04B, EAZ-042-04I", "Skate Boardin' (1987) (Absolute) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ac05c0e53a5e7009ddd75ed4b99949fc", "Atari, Joe Decuir, Steve Mayer, Larry Wagner - Sears", "CX2601 - 99801, 6-99801, 49-75124", "Combat (1977) (Atari) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ac0ddbcff34d064009591607746e33b8", "", "", "Atlantis FH (2003) (TJ) (Atlantis Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ac0ddbcff34d064009591607746e33b8", "Thomas Jentzsch", "", "Atlantis FH (2003) (TJ) (Hack)", "Hack of Atlantis", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ac26d7d37248d1d8eac5eccacdbef8db", "", "", "Snail Against Squirrel (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ac53b83e1b57a601eeae9d3ce1b4a458", "Retroactive", "", "Qb (2.15) (Retroactive) (NTSC)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "ac5f78bae0638cf3f2a0c8d07eb4df69", "", "", "Minesweeper (V.99) (Soren Gust) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2028,14 +2029,14 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "ae83541cf4a4c0bce0adccd2c1bf6288", "", "", "Maze 003 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ae97cf8ed21f4154b4360a3cf6c95c5e", "", "", "Teleterm 2600 (John K. Harvey) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "aea308e30cd92cc73dc0c7f53f69ec56", "", "", "Death Derby (2LK_12) (24-02-2003) (Glenn Saunders)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "aeb104f1e7b166bc0cbaca0a968fde51", "Rob Kudla", "", "Ms. Pac-Man (1982) (Atari) [h1]", "Hack of Ms. Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aeb104f1e7b166bc0cbaca0a968fde51", "", "", "Ms. Pac-Man (1999) (Hack)", "Hack of Ms. Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "aec9b885d0e8b24e871925630884095c", "Amiga", "3125", "Surf's Up (1983) (Amiga) (Prototype)", "Joyboard", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "aed0b7bd64cc384f85fdea33e28daf3b", "Atari, Alan J. Murphy, Robert C. Polaro", "CX2666", "RealSports Volleyball (1982) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "aed82052f7589df05a3f417bb4e45f0c", "Atari, Warren Robinett - Sears", "CX2606 - 6-99825, 49-75112", "Slot Racers (1978) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "af6ab88d3d7c7417db2b3b3c70b0da0a", "Activision, Larry Kaplan, David Crane", "AG-010, AG-010-04", "Kaboom! (1981) (Activision) (4K)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "afc194534c1b346609ef05eff6d3cef6", "Jone Yuan Telephonic Enterprise Co", "", "Boxing (Jone Yuan)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "afe4eefc7d885c277fc0649507fbcd84", "Atari", "CX26163P", "Ant Party (32 in 1) (1988) (Atari) (PAL)", "AKA Cosmic Swarm", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "afe776db50e3378cd6f29c7cdd79104a", "CCE / Thomas Jentzsch", "", "Bobby is Going Home (CCE) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "23", "245", "", "", "" }, + { "afe776db50e3378cd6f29c7cdd79104a", "Thomas Jentzsch", "", "Bobby is Going Home (TJ)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "23", "245", "", "", "" }, { "afe88aae81d99e0947c0cfb687b16251", "Apollo", "AP-2006", "Infiltrate (1981) (Apollo)", "", "", "", "", "", "", "", "", "", "", "", "", "29", "", "YES", "", "" }, { "b00088418fc891f3faa3d4ddde6ace94", "", "", "Unknown Title (bin00007 (200102)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b00a8bc9d7fe7080980a514005cbad13", "K-Tel Vision", "", "Vulture Attack (1982) (K-Tel Vision) (PAL)", "AKA Condor Attack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2070,8 +2071,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "b290c2b139344fcff5b312c71b9ac3b2", "Atari", "CX26163P", "UFO (32 in 1) (1988) (Atari) (PAL) (4K)", "AKA Space Jockey", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b29359f7de62fed6e6ad4c948f699df8", "Goliath", "", "Phantom Tank (1983) (Goliath) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b2a6f31636b699aeda900f07152bab6e", "", "", "Space Instigators (Public Release 2) (06-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b2b78febdbc0ac184084092c1375162a", "", "", "Decathlon (1983) (Activision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b2d1e63f7f22864096b7b6c154151d55", "", "", "Bounce! (17-03-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "b2d1e63f7f22864096b7b6c154151d55", "Fabrizio Zavagli", "", "Bounce! (17-03-2003) (Fabrizio Zavagli)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "b2d5d200f0af8485413fad957828582a", "Atari, Robert C. Polaro", "CX26155P", "Sprint Master (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b2f0d7217147160b2f481954cedf814b", "", "", "Marquee Drawer (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "b3017e397f74efd53caf8fae0a38e3fe", "Retroactive", "", "Qb (2.12) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -2092,25 +2092,25 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "b4e2fd27d3180f0f4eb1065afc0d7fc9", "Avalon Hill, Bill Heineman, William O. Sheppard", "5002002", "London Blitz (1983) (Avalon Hill)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b4f05e544834d0238a0c263491775edf", "Starpath Corporation, Steve Hales, Stephen Harland Landrum", "AR-4102", "Suicide Mission (Preview) (1982) (Starpath) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "b4f87ce75f7329c18301a2505fe59cd3", "Videospielkassett - Ariola", "PGP232", "Autorennen (Ariola) (PAL)", "AKA Grand Prix", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b5110f55ed99d5279f18266d001a8cd5", "", "", "Auto-mobile Demo (2001) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b5110f55ed99d5279f18266d001a8cd5", "Eckhard Stolberg", "", "Auto-mobile Demo (2001) (Eckhard Stolberg)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b56264f738b2eb2c8f7cf5a2a75e5fdc", "Atari - GCC, Betty Ryan Tylko, Doug Macrae", "CX2694, CX2694P", "Pole Position (1983) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b59417d083b0be2d49a7d93769880a4b", "Pet Boat", "", "Donkey Kong (1983) (Pet Boat) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b5a1a189601a785bdb2f02a424080412", "Imagic, Dennis Koble", "IA3410", "Shootin' Gallery (1982) (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "29", "", "", "", "" }, { "b5cb9cf6e668ea3f4cc2be00ea70ec3c", "CommaVid, Irwin Gaines - Ariola", "CM-005 - 712 005-720", "Mines of Minos (1982) (CommaVid) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "b6166f15720fdf192932f1f76df5b65d", "Amiga", "3130", "Off Your Rocker (1983) (Amiga)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "b65d4a38d6047735824ee99684f3515e", "Dynacom", "", "MegaBoy (Dynacom)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, - { "b676a9b7094e0345a76ef027091d916b", "Video Gems / Thomas Jentzsch", "", "Mission Survive (1983) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "A", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "b676a9b7094e0345a76ef027091d916b", "Thomas Jentzsch", "", "Mission Survive (Thomas Jentzsch)", "NTSC Conversion", "Homebrew", "", "", "", "A", "", "", "", "", "", "", "", "", "YES", "", "" }, { "b6812eaf87127f043e78f91f2028f9f4", "Simage", "", "Eli's Ladder (1982) (Simage)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b6821ac51c4c1dcb283f01be2f047dc1", "", "", "Rubik's Cube 3D Demo (25-11-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b6960be26bee87d53ba4e2e71cfe772f", "", "", "3-D Corridor (Spiral Words) (31-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b6d52a0cf53ad4216feb04147301f87d", "Imagic, Michael Greene", "IA3312", "No Escape! (1982) (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b702641d698c60bcdc922dbd8c9dd49c", "Atari, Ian Shepard", "CX26163P", "Space War (32 in 1) (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b719ada17771a8d206c7976553825139", "Ron Corcoran", "", "DUP Space Invaders (Ron Corcoran)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b719ada17771a8d206c7976553825139", "Ron Corcoran", "", "DUP Space Invaders (Ron Corcoran) (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b731d35e4ac6b3b47eba5dd0991f452f", "", "", "Rubik's Cube 3D Demo (Final) (08-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b7345220a0c587f3b0c47af33ebe533c", "Quelle", "176.433 1", "Landungskommando (1983) (Quelle) (PAL)", "AKA Strategy X", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b76fbadc8ffb1f83e2ca08b6fb4d6c9f", "Activision, Bob Whitehead", "AG-005, CAG-005, AG-005-04", "Skiing (1980) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b77468d586957d1b7fb4cccda2684f47", "Atari", "CX26163P", "Boxing (32 in 1) (1988) (Atari) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b7903268e235310dc346a164af4c7022", "UA / Thomas Jentzsch", "", "Cat Trax (PAL60 by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "PAL60", "30", "", "YES", "", "" }, + { "b7903268e235310dc346a164af4c7022", "Thomas Jentzsch", "", "Cat Trax (Thomas Jentzsch) (PAL60)", "NTSC Conversion", "Hack", "", "", "", "", "", "", "", "", "", "PAL60", "30", "", "YES", "", "" }, { "b79087a8f2f54337d6a8fa56616dee1c", "Bitcorp", "PG201", "Sea Monster (Bitcorp) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b79fe32320388a197ac3a0b932cc2189", "Imagic, Bob Smith", "13207, EIZ-001-04I", "Moonsweeper (1983) (Imagic) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "b7a7e34e304e4b7bc565ec01ba33ea27", "Parker Brothers", "PB5820", "Mr. Do!'s Castle (1984) (Parker Bros)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -2130,7 +2130,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "b9232c1de494875efe1858fc8390616d", "Panda", "110", "Harbor Escape (1983) (Panda)", "AKA River Raid", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b9336ed6d94a5cc81a16483b0a946a73", "Atari, Jerome Domurat, Michael Sierchio", "CX2667, CX2667P", "RealSports Soccer (1983) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "b958d5fd9574c5cf9ece4b9421c28ecd", "Piero Cavina", "", "Multi-Sprite Game V1.0 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b95a6274ca0e0c773bfdc06b4c3daa42", "", "", "3-D Corridor (29-03-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b95a6274ca0e0c773bfdc06b4c3daa42", "Paul Slocum", "", "3-D Corridor (29-03-2003) (Paul Slocum)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b9c3bc1d77f8e9d814735188bf324e40", "Parker Bros", "PB5110", "James Bond 007 (1983) (Parker Bros) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "b9d1e3be30b131324482345959aed5e5", "Activision, Rex Bradford", "", "Kabobber (1983) (Activision) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b9f6fa399b8cd386c235983ec45e4355", "Parker Brothers, John Emerson", "931511", "Action Force (1983) (Parker Bros) (PAL)", "AKA G.I. Joe - Cobra Strike", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, @@ -2169,18 +2169,18 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "bd39598f067a1193ae81bd6182e756d1", "Telegames", "", "Night Stalker (1989) (Telegames) (PAL)", "AKA Dark Cavern", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bd430c2193045c68d1a20a018a976248", "", "", "Pac Ghost Sprite Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bda1463e02ae3a6e1107ffe1b572efd2", "Atari, Nick 'Sandy Maiwald' Turner", "CX26111", "Snoopy and the Red Baron (1983) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bdb4b584ddc90c9d2ec7e21632a236b6", "", "", "Nitemare at Sunshine Bowl-a-Rama (beta 1) (Atari Freak 1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bdb4b584ddc90c9d2ec7e21632a236b6", "Atari Freak 1", "", "Nitemare at Sunshine Bowl-a-Rama (Atari Freak 1) (Hack)", "Hack of Pac-Man Jr.", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bdbac0c6cd0fab9c81c3be0bedb0ddd4", "", "", "Greeting Cart The Snail(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bdbaeff1f7132358ea64c7be9e46c1ac", "20th Century Fox Video Games, Douglas 'Dallas North' Neubauer", "11105", "Mega Force (1982) (20th Century Fox) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bdc381baf7c252c63739c5e9ed087a5c", "", "", "Vertical Ship Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bdecc81f740200780db04a107c3a1eba", "Quelle", "874.254 6", "Super-Cowboy beim Rodeo (1983) (Quelle) (PAL)", "AKA Stampede", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "be060a704803446c02e6f039ab12eb91", "Parker Brothers, Rex Bradford, Sam Kjellman", "931501", "Star Wars - The Empire Strikes Back (1982) (Parker Bros) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "be1922bd8e09d74da471287e1e968653", "", "", "Hangman Pacman Demo (Cropsy) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "be1922bd8e09d74da471287e1e968653", "Cropsy", "", "Hangman Pacman Demo (Cropsy) (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "be2870a0120fd28d25284e9ccdcbdc99", "", "", "Tomb Raider 2600 [REV 01] (Montezuma's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "be3343494301a3a8b1b2a2f8d7473c45", "", "", "Image - Clown (Full Screen) (12-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "be35d8b37bbc03848a5f020662a99909", "Atari, Joe Decuir, Steve Mayer, Larry Wagner - Sears", "CX2601 - 99801, 6-99801, 49-75124", "Combat (1977) (Atari) (4K) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "be3f0e827e2f748819dac2a22d6ac823", "Puzzy - Bit Corporation", "PG202", "Space Tunnel (1982) (Puzzy)", "", "", "", "", "", "", "", "", "", "", "", "", "", "215", "", "", "" }, - { "be41463cd918daef107d249f8cde3409", "Dan Hitchens and Mike Mika", "", "Berzerk (Voice Enhanced) (Berzerk Hack)", "Hack of Berzerk (Atari)", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "be41463cd918daef107d249f8cde3409", "", "", "Berzerk (Voice Enhanced) (Hack)", "Hack of Berzerk", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "be561b286b6432cac71bccbae68002f7", "", "", "Counter Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "be929419902e21bd7830a7a7d746195d", "Activision, Garry Kitchen", "AX-025, AX-025-04", "Keystone Kapers (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "becd908f9d7bb361982c3dc02d6475c6", "Kyle Pittman", "", "THX-1138 by Kyle Pittman (Berzerk Hack)", "Hack of Berserk (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2198,7 +2198,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "bffe34516aaa3cbf5d307eab382a7e95", "", "", "Euchre (Release Candidate) (PAL) (28-09-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c00734a2233ef683d9b6e622ac97a5c8", "Atari, Jerome Domurat, Howard Scott Warshaw", "CX26133", "A-Team, The (1984) (Atari) (Prototype)", "AKA Saboteur", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c00b65d1bae0aef6a1b5652c9c2156a1", "Atari, Joe Decuir - Sears", "CX2621 - 99806, 6-99806, 49-75104", "Video Olympics (1977) (Atari) (4K)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "YES", "", "", "", "", "", "" }, - { "c02e1afa0671e438fd526055c556d231", "", "", "A-Team, The (Atari) (Prototype) (PAL-60) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "" }, + { "c02e1afa0671e438fd526055c556d231", "Atari", "", "A-Team (Atari) (Prototype) (PAL60)", "", "Prototype", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "" }, { "c032c2bd7017fdfbba9a105ec50f800e", "Activision, Charlie Heath", "", "Thwocker (1984) (Activision) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c033dc1d7b6fde41b9cadce9638909bb", "", "", "Skeleton (V1.1) (06-09-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c05f367fa4767ceb27abadf0066df7f4", "", "", "TomInv (31-07-2001) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2218,7 +2218,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "c1fdd44efda916414be3527a47752c75", "Parker Brothers, John Emerson", "PB5920", "G.I. Joe - Cobra Strike (1983) (Parker Bros)", "Uses the Paddle (left) and Joystick (right) Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "30", "", "", "", "" }, { "c20f15282a1aa8724d70c117e5c9709e", "Video Gems", "VG-02", "Surfer's Paradise (1983) (Video Gems) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c21450c21efb7715746e9fa87ad6f145", "Hozer Video Games", "", "Gunfight 2600 - It could've been soooo cool, but... (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c221607529cabc93450ef25dbac6e8d2", "", "", "Color Test (26-09-2002) (Eckhard Stolberg)", "", "", "", "", "", "A", "", "", "", "", "", "", "", "", "", "", "" }, + { "c221607529cabc93450ef25dbac6e8d2", "Eckhard Stolberg", "", "Color Test (26-09-2002) (Eckhard Stolberg)", "", "Homebrew", "", "", "", "A", "", "", "", "", "", "", "", "", "", "", "" }, { "c225abfb584960efe1f359fc94b73379", "", "", "Joustpong (21-09-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c2410d03820e0ff0a449fa6170f51211", "", "", "Pac-Man (Unknown) (PAL) (Hack)", "", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c246e05b52f68ab2e9aee40f278cd158", "Parker Bros / Thomas Jentzsch", "", "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (NTSC by Thomas Jentzsch)", "", "Prototype (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "230", "", "", "" }, @@ -2226,7 +2226,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "c28b29764c2338b0cf95537cc9aad8c9", "", "", "Multi-Color Demo 4 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c29d17eef6b0784db4586c12cb5fd454", "Jone Yuan Telephonic Enterprise Co", "", "River Raid (Jone Yuan) (Hack)", "", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c29f8db680990cb45ef7fef6ab57a2c2", "Parker Brothers, Mike Brodie", "PB5320", "Super Cobra (1982) (Parker Bros)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c2a37f1c7603c5fd97df47d6c562abfa", "", "", "Bar-Score Demo (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c2a37f1c7603c5fd97df47d6c562abfa", "Roger Williams", "", "Bar-Score Demo (2001) (Roger Williams)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c2b5c50ccb59816867036d7cf730bf75", "Salu - Avantgarde Software, Michael Buetepage", "460741", "Ghostbusters II (1992) (Salu) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "c2bcd8f2378c3779067f3a551f662bb7", "Activision, Bob Whitehead - Ariola", "EAG-002, EAG-002-04I, PAG-002 - 711 002-715", "Boxing (1980) (Activision) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c2fbef02b6eea37d8df3e91107f89950", "Champ Games", "", "Conquest Of Mars (NTSC)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2237,7 +2237,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "c3a9550f6345f4c25b372c42dc865703", "Atari, Robert C. Polaro", "CX2663", "Road Runner (1989) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c3aeb796fdaf9429e8cd6af6346f337e", "", "", "If It's Not One Thing It's Another (1997) (Chris Cracknell)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c3bbc673acf2701b5275e85d9372facf", "Atari, Robert C. Polaro", "CX26157", "Stunt Cycle (1980) (Atari) (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c3e4aa718f46291311f1cce53e6ccd79", "", "", "Hangman Ghost 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c3e4aa718f46291311f1cce53e6ccd79", "", "", "Hangman Ghost 4letter (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c3ef5c4653212088eda54dc91d787870", "Activision, Bob Whitehead", "AG-002, CAG-002, AG-002-04", "Boxing (1980) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c3f53993ade534b0982ca3a286c85bb5", "", "", "Full Screen Bitmap Drawing System (12-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c4060a31d61ba857e756430a0a15ed2e", "", "", "Pick 'n Pile (PAL Conversion) (2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "25", "220", "YES", "", "" }, @@ -2264,7 +2264,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "c5387fc1aa71f11d2fa82459e189a5f0", "Bit Corporation", "PG202", "Space Tunnel (1982) (BitCorp) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, { "c54b4207ce1d4bf72fadbb1a805d4a39", "Billy Eno", "", "Sniper (Feb 30) (2001) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c569e57dca93d3bee115a49923057fd7", "", "", "Pac-Space (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, - { "c58708c09ccb61625cda9d15ddcd8be6", "", "", "NOIZ Invaders by SPIKE the Percussionist (2002) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c58708c09ccb61625cda9d15ddcd8be6", "SPIKE the Percussionist", "", "NOIZ Invaders (SPIKE) (2002) (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c5930d0e8cdae3e037349bfa08e871be", "Atari, Howard Scott Warshaw - Sears", "CX2655 - 49-75167", "Yars' Revenge (1982) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "c59633dbebd926c150fb6d30b0576405", "Telegames", "5861 A030", "Bogey Blaster (1989) (Telegames)", "AKA Air Raiders", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c5a76bafc4676edb76e0126fb9f0fb2d", "Charles Morgan", "", "Zero Patrol by Charles Morgan (Moon Patrol Hack)", "Hack of Moon Patrol (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2347,9 +2347,9 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "ccbd36746ed4525821a8083b0d6d2c2c", "Atari, Brad Stewart - Sears", "CX2649, 49-75163", "Asteroids No Copyright (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "cccfe9e9a11b1dad04beba46eefb7351", "", "", "Poker Squares (V0.25) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ccd6ce508eee4b3fca67212833edcd85", "Quelle", "746422", "Hot Wave (1983) (Quelle) (PAL)", "AKA Ram It", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cd032ab6764b55438a7b0bfb5e78595a", "", "", "Hangman Pac-Man 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cd032ab6764b55438a7b0bfb5e78595a", "", "", "Hangman Pac-Man 4letter (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd139ae6d09f3665ad09eb79da3f9e49", "Eric Mooney", "", "Invaders by Erik Mooney (4-24-97) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cd34b3b3ef9e485201e841ba71beb253", "", "", "Hit HMOVE At Various Cycles After WSYNC Test (Bradford W. Mott) (1998) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cd34b3b3ef9e485201e841ba71beb253", "Bradford W. Mott", "", "Hit HMOVE At Various Cycles After WSYNC Test (Bradford W. Mott) (1998) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd38ad19f51b1048d8e5e99c86a2a655", "", "", "Demo Image Series #5 - Flag (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd399bc422992a361ba932cc50f48b65", "Starpath Corporation, Brian McGhie", "AR-4104", "Rabbit Transit (Preview) (1983) (Starpath)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd3e26786136a4692fd2cb2dfbc1927e", "", "", "Multiple Moving Objects Demo 2 (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2364,7 +2364,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "cdb81bf33d830ee4ee0606ee99e84dba", "Starpath Corporation, Scott Nelson", "AR-4300", "Fireball (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "cdc1a5c61d7488eadc9aba36166b253d", "Retroactive", "", "Qb (V0.12) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "cddabfd68363a76cd30bee4e8094c646", "CommaVid, John Bronstein", "CM-001", "MagiCard (1981) (CommaVid)", "Uses the Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "KEYBOARD", "", "", "24", "", "", "", "" }, - { "ce17325834bf8b0a0d0d8de08478d436", "", "", "Boring Freeway (Freeway Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ce17325834bf8b0a0d0d8de08478d436", "", "", "Boring Freeway (Hack)", "Hack of Freeway", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ce243747bf34a2de366f846b3f4ca772", "Goliath - Hot Shot", "83-116", "Felix Return (1983) (Goliath) (PAL)", "AKA Bobby Is Going Home", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, { "ce4bbe11d682c15a490ae15a4a8716cf", "", "", "Okie Dokie (Older) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ce64812eb83c95723b04fb56d816910b", "Retroactive", "", "Qb (V2.04) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -2390,7 +2390,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "cfef1a2d1f6a5ee7a5e1f43f3056f112", "", "", "Skeleton+ (05-05-2003) (Eric Ball) (NTSC)", "", "", "STEREO", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cff1e9170bdbc29859b815203edf18fa", "Retroactive", "", "Push (V0.01) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "cff578e5c60de8caecbee7f2c9bbb57b", "George Veeder", "", "Suicide Adventure by George Veeder (Adventure Hack)", "Hack of Adventure (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "NONE", "", "", "", "", "", "", "" }, - { "cff9950d4e650094f65f40d179a9882d", "Paul Slocum", "", "Mr. Roboto by Paul Slocum (Berzerk Hack)", "Hack of Berzerk (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "cff9950d4e650094f65f40d179a9882d", "Paul Slocum", "", "Mr. Roboto (Paul Slocum) (Hack)", "Hack of Berzerk", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "d010e3dfe7366e47561c088079a59439", "Retroactive", "", "Qb (V0.10) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "d026716b3c5be2c951cc4c064317c524", "", "", "Fu Kung! (V0.06) (14-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d0498baca989e792db4b8270a02b9624", "", "", "Pac Ghost Sprite Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2402,7 +2402,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "d09935802d6760ae58253685ff649268", "Telesys, Don Ruffcorn", "1006", "Demolition Herby (1983) (Telesys)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "d09a7504ee8c8717ac3e24d263e7814d", "Activision, Matthew L. Hubbard, Bob Whitehead", "AX-024", "Dolphin (1983) (Activision) (16K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d09f1830fb316515b90694c45728d702", "Imagic, Brad Stewart", "IA3400", "Fire Fighter (1982) (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d0a379946ed77b1b126230ca68461333", "", "", "Atari Invaders by Ataripoll (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d0a379946ed77b1b126230ca68461333", "Ataripoll", "", "Atari Invaders (Ataripoll) (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d0af33865512e9b6900714c26db5fa23", "Telegames", "", "Armor Ambush (1989) (Telegames) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d0b26e908370683ad99bc6b52137a784", "Apollo, Ed Salvo", "AP-2004", "Lost Luggage (1981) (Apollo) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d0b9df57bfea66378c0418ec68cfe37f", "20th Century Fox Video Games - Sirius, Grady Ward", "11002", "Beany Bopper (1982) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2419,12 +2419,11 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "d1b4075925e8d3031a7616d2f02fdd1f", "", "", "Demo Image Series #7 - Two Marios (27-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d1c3520b57c348bc21d543699bc88e7e", "Gameworld", "133-002", "Warplock (1983) (Gameworld) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "" }, { "d1d704a7146e95709b57b6d4cac3f788", "Atari, Warren Robinett", "CX26163P", "Slot Racers (32 in 1) (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d1fc4cf675c9b49fb7deb792f2f3a7a5", "Atari", "CX26120", "Defender II (1984) (Atari) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d223bc6f13358642f02ddacfaf4a90c9", "Rainbow Vision - Suntek", "SS-003", "Pac-Kong (Rainbow Vision) (PAL)", "AKA Spider Kong", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d245e2f27c84016041e9496b66b722fe", "", "", "Gunfight 2600 - The Final Kernel (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d25018349c544320bf3fd5092ee072bc", "Activision, Larry Miller", "AX-021", "Spider Fighter (1983) (Activision) (8K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d28afe0517a046265c418181fa9dd9a1", "", "", "Dodge 'Em (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d2901c34bb6496bb96c7bc78a9e6142a", "", "", "Fish Revenge (2003) (Greg Zumwalt) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d2901c34bb6496bb96c7bc78a9e6142a", "Greg Zumwalt", "", "Fish Revenge (2003) (Greg Zumwalt) (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d2c305a443dfc49e8430964d7c1bd1b7", "", "", "Star Fire - Advice on radar needed (16-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d2c4f8a4a98a905a9deef3ba7380ed64", "Mythicon, Bill Bryner, Bruce de Graaf", "MA1001", "Sorcerer (1983) (Mythicon)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d2c957dd7746521b51bb09fde25c5774", "Eckhard Stolberg", "", "Cubis (6K) (1997) (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2437,7 +2436,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "d3423d7600879174c038f53e5ebbf9d3", "U.S. Games Corporation", "VC2005", "Piece o' Cake (1982) (U.S. Games)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "d3456b4cf1bd1a7b8fb907af1a80ee15", "Avalon Hill, Duncan Scott", "5003002", "Wall Ball (1983) (Avalon Hill)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "d34b933660e29c0a0a04004f15d7e160", "", "", "Multi-Color Demo 5 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d36308387241e98f813646f346e7f9f7", "", "", "Ghostbuster 2 (PAL) (King Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "d36308387241e98f813646f346e7f9f7", "King Atari", "", "Ghostbuster 2 (King Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "d39e29b03af3c28641084dd1528aae05", "Funvision - Fund. Int'l Co.", "", "Spider Monster (1982) (Funvision) (PAL)", "AKA Spider Kong", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d3bb42228a6cd452c111c1932503cc03", "UA Limited", "", "Funky Fish (1983) (UA Limited) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "38", "", "YES", "", "" }, { "d44d90e7c389165f5034b5844077777f", "Parker Brothers, Larry Gelberg, Gary Goltz", "PB5065", "Star Wars - Ewok Adventure (1983) (Parker Bros) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2457,7 +2456,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "d563ba38151b8204c9f5c9f58e781455", "Atari, Brad Stewart - Sears", "CX2649, 49-75163", "Asteroids (1981) (Atari) [a2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "d573089534ca596e64efef474be7b6bc", "Parker Brothers, John Emerson", "931511", "Action Force (1983) (Parker Bros) (PAL) [a]", "AKA G.I. Joe - Cobra Strike", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "d57913088e0c49ac3a716bf9837b284f", "Activision, Garry Kitchen", "EAZ-032", "Pressure Cooker (1983) (Activision) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d57eb282d7540051bc9b5427cf966f03", "", "", "Custer's Viagra (Atari Troll) (Custer's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, + { "d57eb282d7540051bc9b5427cf966f03", "Atari Troll", "", "Custer's Viagra (Atari Troll) (Hack)", "Hack of Custer's Revenge", "Hack", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "d597d35c6022c590d6e75e865738558a", "", "", "Sprite Color Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d5aa7472e7f2cc17e893a1a36f8dadf0", "", "", "Overhead Adventure Demo 5 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d5c6b81212ad86fd9542a1fedaf57cae", "", "", "Sprite Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2490,7 +2489,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "d81bb6965e6c99b3be99ffd8978740e4", "", "", "Gunfight 2600 - The Final Kernel Part 3 (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d82675ce67caf16afe5ed6b6fac8aa37", "", "", "Robot City (V0.23) (13-11-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d8295eff5dcc43360afa87221ea6021f", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d82c8a58098a6b46c5b81c16180354d1", "", "", "Climber 5 (Prototype) (30-10-2002) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "NO" }, + { "d82c8a58098a6b46c5b81c16180354d1", "Dennis Debro", "", "Climber 5 (30-10-2002) (Dennis Debro) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "NO" }, { "d84cda16d9303a7e2a658b168966c973", "", "", "Image - Clown (10-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d85f1e35c5445ac898746719a3d93f09", "Suntek", "SS-034", "Farmyard Fun (Suntek) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d86deb100c6abed1588aa84b2f7b3a98", "Atari, Bob Whitehead - Sears", "CX2625 - 6-99827, 49-75114", "Football (1979) (Atari) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2500,14 +2499,14 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "d8b2c81cea5af04f795eb3dc6573d72b", "", "", "Tunnel Demo 2 (27-03-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d8df256c0d89e494a9fb3e9abb8e44ac", "Imagic, Michael Greene", "IA3312P", "No Escape! (1982) (Imagic) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d8e4c8e2d210270cd1e0f6d1b4582b91", "Imagic, Mark Klein", "EIZ-003-04I", "Subterranea (1983) (Imagic) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d90205e29bb73a4cdf28ea7662ba0c3c", "", "", "Boulderdash Demo (Brighter Version) (09-12-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d90205e29bb73a4cdf28ea7662ba0c3c", "Thomas Jentzsch", "", "Boulderdash Demo (Brighter Version) (09-12-2002) (TJ)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "d912312349d90e9d41a9db0d5cd3db70", "CCE", "C-818", "Star Voyager (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d9548ad44e67edec202d1b8b325e5adf", "Apollo, Dan Oliver - RCA Video Jeux", "AP-2002", "Space Cavern (1981) (Apollo) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d97e3d0b4575ce0b9a6132e19cfeac6e", "Fabrizio Zavagli", "", "Space Treat (061002) (PD)", "Won't work with Stella < V1.2", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d9ab6b67a17da51e5ad13717e93fa2e2", "", "", "Turbo (Coleco) Prototype Fake v0.1 (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d9b49f0678776e04916fa5478685a819", "Activision, John Van Ryzin - Ariola", "EAZ-036-04, EAZ-036-04B, EAZ-036-04I - 711 036-720", "H.E.R.O. (1984) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d9da2ae7c7894a29b43b3c6b79f3b7a2", "Atari, Rob Fulop", "CX2633, CX2633P", "Night Driver (1980) (Atari) (PAL) (4K)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, - { "da0fb2a484d0d2d8f79d6e063c94063d", "", "", "Air Raiders (1982) (Mattel) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "da0fb2a484d0d2d8f79d6e063c94063d", "", "", "Air Raiders (1982) (Unknown) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "da4e3396aa2db3bd667f83a1cb9e4a36", "Activision, Steve Cartwright", "AX-027", "Plaque Attack (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "da5096000db5fdaa8d02db57d9367998", "Digitel", "", "River Raid (1983) (Digitel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "da6465a34d2e44d26aa9a2a0cd1bce4d", "Absolute Entertainment, Alex DeMeo", "AG-041-04", "Title Match Pro Wrestling (1987) (Absolute) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2515,13 +2514,13 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "da66d75e4b47fab99733529743f86f4f", "Digitel", "", "Chopper Command (1983) (Digitel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "da732c57697ad7d7af414998fa527e75", "Atari, Glenn Axworthy", "CX26129", "Midnight Magic (1984) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "da79aad11572c80a96e261e4ac6392d0", "Salu - Ubi Soft, Dennis M. Kiss", "460673", "Pick 'n' Pile (1990) (Salu) (PAL)", "", "", "", "", "", "", "", "YES", "", "", "", "PAL", "38", "256", "YES", "", "" }, - { "dac38b4dd3da73bb7b2e9d70c61d2b7c", "", "", "Hangman Monkey Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dac38b4dd3da73bb7b2e9d70c61d2b7c", "", "", "Hangman Monkey Biglist3 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dac5c0fe74531f077c105b396874a9f1", "Atari - GCC", "CX2680", "RealSports Tennis (1983) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dac762e4d01d445bdef20b7771f6570e", "Atari, Carla Meninsky, Ed Riddle - Sears", "CX2611 - 99821, 49-75149", "Indy 500 (1977) (Atari) (4K) [a]", "Uses the Driving Controllers", "", "", "", "", "", "", "", "DRIVING", "DRIVING", "", "", "28", "", "", "", "" }, { "dad2ab5f66f98674f12c92abcfbf3a20", "", "", "Blue and White Sprite Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "daeb54957875c50198a7e616f9cc8144", "20th Century Fox Video Games, Douglas 'Dallas North' Neubauer", "11005", "Mega Force (1982) (20th Century Fox)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "daef7d8e5a09981c4aa81573d4dbb380", "Adam Thornton", "", "Lord of the Rings - Fellowship of the Ring by Adam Thornton (Dark Mage Hack) (PD)", "Hack of Dark Mage by SuperCharger", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "dafc3945677ccc322ce323d1e9930beb", "", "", "A-Team, The (Atari) (Prototype) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "daef7d8e5a09981c4aa81573d4dbb380", "Adam Thornton", "", "Lord of the Rings (Adam Thornton) (Hack)", "Hack of Dark Mage", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "dafc3945677ccc322ce323d1e9930beb", "Atari", "", "A-Team (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "db1753cc702c18d3917ec7f3b0e8659f", "", "", "Frame Counter 2 (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "db339aea2b65b84c7cfe0eeab11e110a", "", "", "Chronocolor Frame Demo 2 (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "db4eb44bc5d652d9192451383d3249fc", "CBS Electronics, E.F. Dreyer, Ed Salvo", "4L 2738 0000", "Mountain King (1983) (CBS Electronics)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -2529,7 +2528,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "db76f7a0819659d9e585f2cdde9175c7", "Xonox", "99005, 6220, 6250", "Robin Hood (1983) (Xonox) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, { "db80d8ef9087af4764236f7b5649fa12", "M Network, Steve Crandall, Patricia Lewis Du Long", "MT4646", "Rocky & Bullwinkle (1983) (Mattel) (Prototype) (4K)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dba2692a216cb6c262c78f8b111a813e", "", "", "Star Fire (08-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dba270850ae997969a18ee0001675821", "Greg Troutman", "", "Dark Mage (4K) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "dba270850ae997969a18ee0001675821", "Greg Troutman", "", "Dark Mage (Greg Troutman) (PD) (4K)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "dbabb80e92ff18d8eecf615c0539151e", "", "", "Sprite Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dbb10b904242fcfb8428f372e00c01af", "Atari, John Dunn", "CX2631, CX2631P", "Superman (1979) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dbc7485ad5814d466de780a3e7ed3b46", "Kyle Pittman", "", "Pink Floyd (Kyle Pittman) (PD)", "Hack of Adventures of Tron (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2541,7 +2540,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "dc6aa0bb21a6e66e80e75ba5edc5c0dd", "", "", "Star Fire - Kernel Done (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dc81c4805bf23959fcf2c649700b82bf", "Imagic, Michael Greene", "IA3312P", "No Escape! (1982) (Imagic) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dca90ea1084a2fdbe300d7178ca1a138", "Imagic, Dennis Koble", "IA3000P", "Trick Shot (1982) (Imagic) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "dca941dab5c6f859b71883b13ade9744", "", "", "Hangman Pac-Man Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dca941dab5c6f859b71883b13ade9744", "", "", "Hangman Pac-Man Biglist2 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dcba0e33aa4aed67630a4b292386f405", "Retroactive", "", "Qb (V2.08) (Half Speed Version) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "dcc2956c7a39fdbf1e861fc5c595da0d", "M Network, David Rolfe - INTV", "MT5664", "Frogs and Flies (1982) (Mattel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dcec46a98f45b193f07239611eb878c2", "", "", "Bars and Text Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2555,7 +2554,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "dd7598b8bcb81590428900f71b720efb", "Xonox", "99005, 6220, 6250", "Robin Hood (1983) (Xonox) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, { "dd7884b4f93cab423ac471aa1935e3df", "Atari, Brad Stewart - Sears", "CX2649, 49-75163", "Asteroids (1981) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "dd92d6ad50976f881d86b52d38616118", "SpkSoft", "", "River Raid (SpkSoft) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "10", "", "", "", "" }, - { "dda23757407c4e217f64962c87ad0c82", "", "", "Nitemare at Sunshine Bowl-a-Rama (beta 2) (Atari Freak 1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dda23757407c4e217f64962c87ad0c82", "Atari Freak 1", "", "Nitemare at Sunshine Bowl-a-Rama (Atari Freak 1) (Hack) [a]", "Hack of Pac-Man Jr.", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ddd1efc1862cd3eb3baf4cba81ff5050", "", "", "Max3 (2001) (Maxime Beauvais) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "de0173ed6be9de6fd049803811e5f1a8", "Xonox, Anthony R. Henderson", "99008, 6240", "Motocross Racer (1984) (Xonox)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "de07e9cb43ad8d06a35f6506e22c62e9", "", "", "Oh No! (Version 4) (22-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2574,9 +2573,9 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "deb39482e77f984d4ce73be9fd8adabd", "Activision, David Lubar", "AK-048-04", "River Raid II (1988) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ded26e1cb17f875a9c17515c900f9933", "", "", "Space Treat (29-12-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "df2745d585238780101df812d00b49f4", "Bit Corporation", "PG202", "Space Tunnel (1982) (BitCorp)", "", "", "", "", "", "", "", "", "", "", "", "", "", "215", "", "", "" }, - { "df40af244a8d68b492bfba9e97dea4d6", "Franklin Cruz", "", "Asteroids 2 (Asteroids Hack)", "Hack of Asteroids (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "df40af244a8d68b492bfba9e97dea4d6", "Franklin Cruz", "", "Asteroids 2 (Franlin Cruz) (Hack)", "Hack of Asteroids", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "df4aea767cdf6a3f138255092e84d713", "", "", "Image - Samantha Fox (Colour) (09-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "df5cc5cccdc140eb7107f5b8adfacda1", "Cracker Jack Productions", "", "Lumberman by Cracker Jack Productions (Pac-Man Hack)", "Hack of Pac-Man (1981) (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, + { "df5cc5cccdc140eb7107f5b8adfacda1", "Cracker Jack Productions", "", "Lumberman (Cracker Jack) (Hack)", "Hack of Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, { "df62a658496ac98a3aa4a6ee5719c251", "Atari - Sears", "CX2626 - 6-99829, 49-75116", "Miniature Golf (1979) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "df6a28a89600affe36d94394ef597214", "Apollo, Dan Oliver", "AP-2002", "Space Cavern (1981) (Apollo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "df6a46714960a3e39b57b3c3983801b5", "Goliath", "8", "Sea Monster (1983) (Goliath) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2613,7 +2612,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "e1a51690792838c5c687da80cd764d78", "20th Century Fox, John Russell", "", "Alligator People (1983) (20th Century Fox) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e1b90f1e01b1a316d7bbf141525cc00e", "", "", "Sky Jinks (Unknown) (PAL) (4K) (Hack)", "", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e1c8d02ca138083db868501360cf12a8", "", "", "Image - Baboon (10-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e1d5c8213e82820128fa9c4775f1e166", "", "", "Jungle King (2003) (Jess Ragan) (Jungle Hunt Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e1d5c8213e82820128fa9c4775f1e166", "Jess Ragan", "", "Jungle King (2003) (Jess Ragan) (Hack)", "Hack of Jungle Hunt", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e1e09e2f280e8e142121a377d0dc1b46", "Thomas Jentzsch", "", "Thrust (V1.21) (2000) (TJ)", "Won't work with Stella < V1.2, bugfixed", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e1f88da6da8a7d521ca1dcbf2bc6978b", "Activision, Bob Whitehead - Ariola", "EAG-005, PAG-005, EAG-005-04B - 711 005-715", "Skiing (1980) (Activision) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e20eff36464df39b192a6c220a3da95e", "", "", "Indiana Pitfall (Pitfall Hack) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2624,7 +2623,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "e25e173740f7ecc0e23025445c4591f3", "Greg Zumwalt", "", "Comitoid (Greg Zumwalt)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e275cbe7d4e11e62c3bfcfb38fca3d49", "M Network, Ken Smith - INTV", "MT5658", "Super Challenge Football (1982) (Mattel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e28113d10c0c14cc3b5f430b0d142fcb", "CCE", "C-816", "Keystone Kappers (1983) (CCE) [a]", "AKA Keystone Kapers", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e2846af3e4d172b251ab77cbdd01761e", "", "", "Adventure Plus (2003) (Steve Engelhardt) (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e2846af3e4d172b251ab77cbdd01761e", "Steve Engelhardt", "", "Adventure Plus (2003) (Steve Engelhardt) (Hack)", "Hack of Adventure", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e2904748da63dfefc8816652b924b642", "Jone Yuan Telephonic Enterprise Co", "", "Catch Time (Jone Yuan)", "AKA Plaque Attack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e2b682f6e6d76b35c180c7d847e93b4f", "", "", "Dodge Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e2c89f270f72cd256ed667507fa038a2", "Starpath Corporation, Stephen Harland Landrum", "AR-4101", "Communist Mutants from Space (1982) (Starpath) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2638,7 +2637,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "e363e467f605537f3777ad33e74e113a", "Atari, Bob Whitehead - Sears", "CX2603 - 99803, 49-75601", "Star Ship (1977) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e377c3af4f54a51b85efe37d4b7029e6", "20th Century Fox Video Games, Steve Beck", "11035", "Save the Whales (1983) (20th Century Fox) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "25", "215", "", "", "" }, { "e37c8055d70979af354251ebe9f1b7dd", "HES", "", "Mega Funpak - Gorf, P. Patrol, Pacman, Skeet Shoot (HES) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e39843c56b7a4a08b18fa7949ec3ee6b", "", "", "Joshua Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e39843c56b7a4a08b18fa7949ec3ee6b", "", "", "Joshua Invaders (Hack)", "Hack of Space Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e39a13b13dc82c5fdbfbbfd55ba1230e", "", "", "Analog Clock (Additional Frame Info) (V0.0) (20-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e3c0451d29dad724231bc5818ec4bae0", "", "", "Single-Scanline Positioning Demo 1 (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e3c35eac234537396a865d23bafb1c84", "TechnoVision", "TVS1001", "Nuts (1983) (TechnoVision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2650,13 +2649,13 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "e49ac0ec879a0d7820bc2598fc2cfcd4", "CCE", "", "Kaboom! (CCE) (4K)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "e4a0b28befaaa2915df1fa01238b1e29", "", "", "Gunfight 2600 - Red River (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e4afe157c09962cf39cdb25845d83d47", "Activision, David Crane - Ariola", "EAG-009, PAG-009 - 711 009-720", "Freeway (1981) (Activision) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e4b12deaafd1dbf5ac31afe4b8e9c233", "", "", "Lord of the Rings - Fellowship of the Ring by Adam Thornton (Dark Mage Hack) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "e4b12deaafd1dbf5ac31afe4b8e9c233", "Adam Thornton", "", "Lord of the Rings (Adam Thornton) (Hack) [a]", "Hack of Dark Mage", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "e4bff1d5df70163c0428a1ead309c22d", "Atari, Robert C. Polaro, Alan J. Murphy", "CX2609, CX2609P", "Defender (1982) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e4c00beb17fdc5881757855f2838c816", "20th Century Fox Video Games - Sirius, Ed Hodapp", "11004", "Deadly Duck (1982) (20th Century Fox)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e4c2077a18e3c27f4819aa7757903aa0", "", "", "Many Blue Bars Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e4c666ca0c36928b95b13d33474dbb44", "Arcadia Corporation, Steve Hales, Stephen Harland Landrum", "AR-4102", "Suicide Mission (1982) (Arcadia)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "e4d41f2d59a56a9d917038682b8e0b8c", "", "", "Kiss Meets Pacman (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, - { "e4e9125a8741977583776729359614e1", "", "", "Comitoid beta 4 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e4d41f2d59a56a9d917038682b8e0b8c", "Cody Pittman", "", "Kiss Meets Pacman (Cody Pittman) (Hack)", "Hack of Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, + { "e4e9125a8741977583776729359614e1", "SnailSoft", "", "Comitoid beta 4 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e505bd8e59e31aaed20718d47b15c61b", "Action Hi-Tech - Hi-Score", "", "Condor Attack (Action Hi-Tech) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e51030251e440cffaab1ac63438b44ae", "Parker Bros", "PB5110", "James Bond 007 (1983) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "e51c23389e43ab328ccfb05be7d451da", "Starpath Corporation, Scott Nelson", "13", "Sweat! - The Decathlon Game (1983) (Starpath) (Prototype)", "Uses the Paddle Controllers (left only)", "Prototype", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, @@ -2677,14 +2676,14 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "e61210293b14c9c4ecc91705072c6a7e", "Gameworld", "133-005", "Bugs (1983) (Gameworld) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, { "e62e60a3e6cb5563f72982fcd83de25a", "Jone Yuan Telephonic Enterprise Co", "", "World End (Jone Yuan)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e63a87c231ee9a506f9599aa4ef7dfb9", "Tigervision, Warren Schwader", "7-003", "Threshold (1982) (Tigervision)", "", "", "", "", "", "", "", "", "", "", "", "", "21", "214", "", "", "" }, - { "e63efdfda9a4003dcd77a854a781a06a", "Paul Slocum", "", "Combat Rock (PD) [a1]", "Hack of Combat (1977) (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e643aaec9a9e1c8ab7fe1eae90bc77d7", "", "", "Asymmetric Playfield (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e63efdfda9a4003dcd77a854a781a06a", "Paul Slocum", "", "Combat Rock (PD) (Hack) [a]", "Hack of Combat", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e643aaec9a9e1c8ab7fe1eae90bc77d7", "Roger Williams", "", "Asymmetric Playfield (Roger Williams)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e64a8008812327853877a37befeb6465", "Answer Software Corporation", "ASC1002", "Gauntlet (1983) (Answer Software)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e6508b878145187b87b9cded097293e7", "", "", "Oystron (V2.8) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e66e5af5dea661d58420088368e4ef0d", "Activision, Bob Whitehead", "AG-011", "Stampede (1981) (Activision) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e6d5948f451a24994dfaaca51dfdb4e1", "Jone Yuan Telephonic Enterprise Co", "", "Football (Jone Yuan) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e6de4ef9ab62e2196962aa6b0dedac59", "Imagic, Wilfredo 'Willy' Aguilar, Michael Becker, Dennis Koble", "13206", "Solar Storm (1983) (Imagic) (PAL)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "" }, - { "e6e5bb0e4f4350da573023256268313d", "Ariola / Thomas Jentzsch", "", "Missile Control (AKA Raketen-Angriff) (Ariola) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e6e5bb0e4f4350da573023256268313d", "Thomas Jentzsch", "", "Missile Control (Thomas Jentzsch)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e6f49a1053c79211f82be4d90dc9fe3d", "", "", "Gunfight 2600 - Little progress... (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e72eb8d4410152bdcb69e7fba327b420", "Atari, Douglas Neubauer", "CX26136", "Solaris (1986) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e72ee2d6e501f07ec5e8a0efbe520bee", "Imagic, Dave Johnson", "13211, EIX-004-04I", "Quick Step! (1983) (Imagic) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2706,17 +2705,17 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "e88340f5bd2f03e2e9ce5ecfa9c644f5", "", "", "Lock 'n' Chase (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e8a3473bf786cf796d1336d2d03a0008", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 120583)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "e8aa36e3d49e9bfa654c25dcc19c74e6", "Atari, Joe Decuir, Steve Mayer, Larry Wagner", "CX2601", "Combat (1977) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "36", "260", "", "", "" }, - { "e8e7b9bdf4bf04930c2bcaa0278ee637", "", "", "Boring Taz (Taz Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e8f7679359c4f532f5d5e93af7d8a985", "", "", "Hangman Invader Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e8e7b9bdf4bf04930c2bcaa0278ee637", "", "", "Boring Taz (Hack)", "Hack of Taz", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e8f7679359c4f532f5d5e93af7d8a985", "", "", "Hangman Invader Original Words (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e908611d99890733be31733a979c62d8", "Atari, Dan Hitchens", "CX2697", "Mario Bros. (1983) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e91d2ecf8803ae52b55bbf105af04d4b", "Atari, Howard Scott Warshaw", "CX2655, CX2655P", "Yars' Revenge (1982) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "e923001015bedd7901569f035d9c592c", "", "", "Adventure II (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e923001015bedd7901569f035d9c592c", "", "", "Adventure II (Hack)", "Hack of Adventure", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e927ecf80f3784d745abd8368d78f2f3", "", "", "Space Instigators (V1.8) (19-10-2002) (CT) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e932f44fad2a66b6d5faec9addec208e", "", "", "Atari Logo Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e94632b0d863dd76459d689a9865bb33", "Jone Yuan Telephonic Enterprise Co", "", "Combat (Jone Yuan) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e957eb4612d6bd5940d3492dfa749668", "", "", "Tunnel Demo (27-03-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e959b5a2c882ccaacb43c32790957c2d", "", "", "Phantom II / Pirate (NTSC)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e9be3e8e4a7e73dd63ed4235a3a1a25f", "", "", "MMetall (Miniature Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e9be3e8e4a7e73dd63ed4235a3a1a25f", "", "", "MMetall (Hack)", "Hack of Miniature Golf", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e9c5d04643855949a23ff29349af74ea", "", "", "SCSIcide (Score Hack 2) (24-02-2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e9c71f8cdba6037521c9a3c70819d171", "Action Hi Tech - Hi-Score", "", "Bank Heist (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e9cb18770a41a16de63b124c1e8bd493", "Parker Brothers, Joe Gaucher", "931519", "Popeye (1983) (Parker Bros) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -2772,18 +2771,18 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "ee8e2aa00e3a9cf1238157cbcff7de74", "Tigervision", "7-007", "Polaris (1983) (Tigervision) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ee9caee4eb958284fb10c277b14537f1", "Carrere Video, Garry Kitchen - Teldec", "USC1001", "Space Jockey (1983) (Carrere Video) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "59", "", "", "", "" }, { "eea0da9b987d661264cce69a7c13c3bd", "Coleco", "2454", "Zaxxon (1982) (Coleco)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "eeb92f3f46df841487d1504f2896d61a", "", "", "Corys Adventure (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, + { "eeb92f3f46df841487d1504f2896d61a", "Cody Pittman", "", "Corys Adventure (Cody Pittman) (Hack)", "Hack of Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, { "eec61cc4250df70939d48fe02d7122ac", "Activision, Bob Whitehead - Ariola", "EAG-005, PAG-005, EAG-005-04B - 711 005-715", "Skiing (1980) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eed9eaf1a0b6a2b9bc4c8032cb43e3fb", "Atari - Axlon, Steve DeFrisco", "CX26192", "Klax (1990) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eee7695ae3eea7818321df0b790b31f3", "", "", "Sound Paddle V2 (Dennis Caswell & Jim Nitchals) (PD)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "" }, - { "ef263d40a23483ab339cac44d9515a56", "", "", "Fatal Run (NTSC Conversion) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ef263d40a23483ab339cac44d9515a56", "Thomas Jentzsch", "", "Fatal Run (TJ)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ef3a4f64b6494ba770862768caf04b86", "Activision, Bob Whitehead", "AG-034-04", "Private Eye (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ef5c02c95a1e7ed24f24193935755cd3", "Thomas Jentzsch", "", "Jammed Demo (1999) (Hozer Video Games)", "Won't work with Stella < V1.2", "New Release", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, { "ef60b06fddb675b0d783afbfa5fc5232", "", "", "Many Blue Bars and Text Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ef66af190840871409fe1702d2483554", "", "", "DiscoTech (12-02-2003) (Andrew Davie, Paul Slocum And Christopher Tumber)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ef66af190840871409fe1702d2483554", "Andrew Davie, Paul Slocum, Christopher Tumber", "", "DiscoTech (12-02-2003) (Andrew Davie)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ef71e9fb0d8d477226d8d42261fbf0a7", "Piero Cavina", "", "Multi-Sprite Demo V2.0 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ef76ea05655a0b62cb1018c92b9b4b7d", "Gakken", "010", "Strategy X (1983) (Gakken) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "efa1098c7d091b940c2543abe372f036", "Scott Stilphen", "", "E.T. The Extra-Terrestrial by Scott Stilphen (Pits Hack)", "Hack of E.T. The Extra-Terrestrial (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "efa1098c7d091b940c2543abe372f036", "Scott Stilphen", "", "E.T. The Extra-Terrestrial (Scott Stilphen) (Hack)", "Hack of E.T. The Extra-Terrestrial", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "efb47d70b2965ce689e2c5757616b286", "", "", "Time Test Demo (Eckhard Stolberg) (PAL) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "efd387430a35a659ff569a9a0ec22209", "Atari - GCC", "CX26118", "Millipede (1984) (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "efefc02bbc5258815457f7a5b8d8750a", "CBS Electronics, Richard K. Balaska Jr.", "4L 2520 5000", "Tunnel Runner (1983) (CBS Electronics) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2796,10 +2795,10 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "f0541d2f7cda5ec7bab6d62b6128b823", "Atari, Paul Donaldson", "", "Bionic Breakthrough (1984) (Atari) (Prototype)", "Uses Mindlink Controller (left only)", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f060826626aac9e0d8cda0282f4b7fc3", "Atari, David Crane - Sears", "CX2605 - 6-99822, 49-75109", "Outlaw (1978) (Atari) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0631c6675033428238408885d7e4fde", "Paul Slocum", "", "Test Cart (2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "f066bea7ab0a37b83c83c924a87c5b67", "", "", "Air Raiders (1982) (Mattel) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f066bea7ab0a37b83c83c924a87c5b67", "", "", "Air Raiders (1982) (Unknown)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0a6e99f5875891246c3dbecbf2d2cea", "Atari, James Andreasen - Sears", "CX2654 - 49-75141", "Haunted House (1982) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0b7db930ca0e548c41a97160b9f6275", "Atari, Larry Wagner, Bob Whitehead - Sears", "CX2645 - 49-75181", "Video Chess (1979) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f0cacae1d1b79ee92f0dc035f42e0560", "", "", "Boring Donkey Kong (Donkey Kong Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f0cacae1d1b79ee92f0dc035f42e0560", "", "", "Boring Donkey Kong (Hack)", "Hack of Donkey Kong", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0daaa966199ef2b49403e9a29d12c50", "", "", "Mr. Postman (Unknown)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0e0addc07971561ab80d9abe1b8d333", "Imagic, Rob Fulop", "IA3200, IX-006-04", "Demon Attack (1982) (Imagic) [a]", "AKA Death from Above", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0ee2b055fed6c1df4f3cbb2e12b2c15", "Starpath Corporation, Stephen Harland Landrum", "AR-4400", "Dragonstomper (1982) (Starpath) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2841,11 +2840,11 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "f3dfae774f3bd005a026e29894db40d3", "Quelle", "649635", "See Saw (1983) (Quelle) (PAL)", "AKA Circus Atari", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f3f5f72bfdd67f3d0e45d097e11b8091", "Sears Tele-Games, Matthew L. Hubbard", "CX2647 - 49-75142", "Submarine Commander (1982) (Sears)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f3f92aad3a335f0a1ead24a0214ff446", "", "", "Spectrum Color Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f4204fc92d17ed4cb567c40361ad58f1", "Inky", "", "Beanie Baby Bash by Inky (Beany Bopper Hack)", "Hack of Beany Bopper (1982) (20th Century Fox)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f4204fc92d17ed4cb567c40361ad58f1", "Inky", "", "Beanie Baby Bash (Inky) (Hack)", "Hack of Beany Bopper", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f4469178cd8998cb437fa110a228eaca", "Digitel", "", "Frostbite (1983) (Digitel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f45644ff82b533a781a1ee50f2e95f3c", "", "", "Overhead Adventure Demo 6 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f457674cef449cfd85f21db2b4f631a7", "U.S. Games Corporation, Wes Trager", "VC1004", "Commando Raid (1982) (U.S. Games Corp)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f473f99e47d4026a7a571184922ebf04", "Philp R. Frey", "", "Donkey Claus by Philip R. Frey (Donkey Kong Hack)", "Hack of Donkey Kong (Coleco)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f473f99e47d4026a7a571184922ebf04", "Philip R. Frey", "", "Donkey Claus (Philip R. Frey) (Hack)", "Hack of Donkey Kong", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f48022230bb774a7f22184b48a3385af", "Atari, Rob Fulop - Sears", "CX2633 - 49-75119", "Night Driver (1980) (Atari) (4K)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "YES", "", "" }, { "f48735115ec302ba8bb2d2f3a442e814", "", "", "Dancing Plate (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "f49a34f1fdd7dc147cbf96ce2ce71b76", "", "", "Qb (Special Edition) (PAL) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -2871,7 +2870,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "f6a9ea814d15b85bffe980c927df606b", "", "", "Missile Command (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "f6c13e816e58c8c62f82b2c8b91a2d67", "", "", "Scrolling Playfield 2 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f6d512bef1bf253dc935d0e13c3d1462", "", "", "Slot Racers (Unknown) (PAL) (4K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f6daebc0424fa0f8d9aaf26c86df50f4", "", "", "Color Tweaker (V1.0) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f6daebc0424fa0f8d9aaf26c86df50f4", "Brian Watson", "", "Color Tweaker (V1.0) (2001) (B. Watson)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f6efa00ae99aaf33e427b674bcfd834d", "", "", "2600 Digital Clock (Demo 3) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f6f1b27efc247a0e8d473ddb4269ff9e", "Rainbow Vision - Suntek", "SS-015", "Catch Time (Rainbow Vision) (PAL)", "AKA Plaque Attack", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, { "f70e3f3bb2d19ec2aaec8f78dc43744f", "Jone Yuan Telephonic Enterprise Co", "", "Pooyan (Jone Yuan) (Hack)", "", "Hack", "", "", "", "", "", "", "", "", "", "", "26", "", "", "", "" }, @@ -2932,7 +2931,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "fa529ec88eca679f6d5fd0ccb2120e46", "", "", "20 Sprites at Once Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fa6fe97a10efb9e74c0b5a816e6e1958", "ZiMAG - Emag - Vidco", "707-111 - GN-030", "Tanks But No Tanks (1983) (ZiMAG)", "AKA Phantom Tank", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, { "fa7ce62e7fd77e02b3e2198d70742f80", "Atari, Peter C. Niday", "CX26108", "Donald Duck's Speedboat (1983) (Atari) (Prototype) (PAL)", "AKA Donald Duck's Regatta", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fa7e11a3dbea4365975cd2f094e61d25", "Tim Snider", "", "Mystery Science Theater 2600 by Tim Snider (Megamania Hack)", "Hack of Megamania (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fa7e11a3dbea4365975cd2f094e61d25", "Tim Snider", "", "Mystery Science Theater 2600 (1999) (Tim Snider) (Hack)", "Hack of Megamania", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fabca526d57de46768b392f758f1a008", "", "", "Laseresal 2600 (16-12-2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fac28963307b6e85082ccd77c88325e7", "CCE", "", "Berzerk (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fae0b86934a7c5a362281dffebdb43a0", "Retroactive", "", "Qb (2.07) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, @@ -2954,7 +2953,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "fbb4f3debf48dc961b559384467f2057", "Digitel", "", "River Raid III (1985) (Digitel)", "AKA River Raid", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fbd6102e17a5c02c6e1911381b7203f9", "", "", "Star Fire - Warping!! (10-04-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fbe554aa8f759226d251ba6b64a9cce4", "Atari - GCC, Mike Feinstein", "CX2681, CX2681P", "Battlezone (1983) (Atari) (PAL)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fbfebee9c14694719e3eda4854dc42ee", "", "", "Baubles 3 (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fbfebee9c14694719e3eda4854dc42ee", "Jake Patterson", "", "Baubles 3 (Jake Patterson) (PD)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fc2104dd2dadf9a6176c1c1c8f87ced9", "Coleco", "2663", "Time Pilot (1983) (Coleco)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fc2233fc116faef0d3c31541717ca2db", "Atari, Tod Frye", "CX2646", "Pac-Man (1981) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fc24a94d4371c69bc58f5245ada43c44", "Atari - Axlon, Nolan Bushnell, Steve DeFrisco", "CX26170", "Secret Quest (1989) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2963,7 +2962,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "fc92d74f073a44bc6e46a3b3fa8256a2", "", "", "Megademo (19xx) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fc9c1652fe3a2cade6188f4d3692481f", "", "", "Andrew Davies early notBoulderDash demo (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "fca4a5be1251927027f2c24774a02160", "Activision, John Van Ryzin", "AZ-036-04", "H.E.R.O. (1984) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fcea12625c071ddc49f4e409f4038c60", "", "", "Balls! (16-09-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "fcea12625c071ddc49f4e409f4038c60", "Fabrizio Zavagli", "", "Balls! (16-09-2002) (Fabrizio Zavagli)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "fcf8e306f6615f74feba5cb25550038c", "", "", "Blue Dot Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fd0e5148162e8ec6719445d559f018a9", "Activision, Steve Cartwright - Ariola", "EAX-022, EAX-022-04I - 711 022-720", "Seaquest (1983) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fd10915633aea4f9cd8b518a25d62b55", "Atari, John Dunn", "CX2631, CX2631P", "Superman (1979) (Atari) (PAL) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2980,7 +2979,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "fe3b461d4c8b179fe68bc77760294c25", "Atari, Joe Decuir", "CX2621, CX2621P", "Video Olympics (1977) (Atari) (PAL) (4K)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "" }, { "fe67087f9c22655ce519616fc6c6ef4d", "Atari, Robert Neve", "CX26142", "Crack'ed (1987) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fe870018332a0221eb59fb18b0c6bccc", "", "", "Incoming (08-11-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fe9ae625d924b54c9f8a14ac9a0f6c6d", "", "", "High Bid! (BG Dodson) (Pepsi Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fe9ae625d924b54c9f8a14ac9a0f6c6d", "BG Dodson", "", "High Bid! (BG Dodson) (Hack)", "Hack of Pepsi Invaders", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "feba8686fd0376015258d1152923958a", "", "", "Super Circus (Unknown) (PAL)", "AKA Circus Atari", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fec0c2e2ab0588ed20c750b58cf3baa3", "Activision, David Rolfe - Cheshire Engineering", "EAZ-037-04, EAZ-037-04I", "Beamrider (1984) (Activision) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fece458a8023a809a5006867feca40e8", "", "", "SCSIcide (24-02-2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, diff --git a/stella/src/emucore/M6532.cxx b/stella/src/emucore/M6532.cxx index de3d254b3..46356f4d4 100644 --- a/stella/src/emucore/M6532.cxx +++ b/stella/src/emucore/M6532.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: M6532.cxx,v 1.12 2008-02-06 13:45:21 stephena Exp $ +// $Id: M6532.cxx,v 1.13 2008-02-19 12:33:05 stephena Exp $ //============================================================================ #include @@ -74,6 +74,12 @@ void M6532::systemCyclesReset() // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void M6532::install(System& system) +{ + install(system, *this); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void M6532::install(System& system, Device& device) { // Remember which system I'm installed in mySystem = &system; @@ -84,27 +90,18 @@ void M6532::install(System& system) // Make sure the system we're being installed in has a page size that'll work assert((0x1080 & mask) == 0); - // All accesses are to this device + // All accesses are to the given device System::PageAccess access; - access.device = this; + access.device = &device; // We're installing in a 2600 system for(int address = 0; address < 8192; address += (1 << shift)) { if((address & 0x1080) == 0x0080) { - if((address & 0x0200) == 0x0000) - { - access.directPeekBase = &myRAM[address & 0x007f]; - access.directPokeBase = &myRAM[address & 0x007f]; - mySystem->setPageAccess(address >> shift, access); - } - else - { - access.directPeekBase = 0; - access.directPokeBase = 0; - mySystem->setPageAccess(address >> shift, access); - } + access.directPeekBase = 0; + access.directPokeBase = 0; + mySystem->setPageAccess(address >> shift, access); } } } @@ -112,6 +109,15 @@ void M6532::install(System& system) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - uInt8 M6532::peek(uInt16 addr) { + // Access RAM directly. Originally, accesses to RAM could bypass + // this method and its pages could be installed directly into the + // system. However, certain cartridges (notably 4A50) can mirror + // the RAM address space, making it necessary to chain accesses. + if((addr & 0x1080) == 0x0080 && (addr & 0x0200) == 0x0000) + { + return myRAM[addr & 0x007f]; + } + switch(addr & 0x07) { case 0x00: // Port A I/O Register (Joystick) @@ -215,7 +221,15 @@ uInt8 M6532::peek(uInt16 addr) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void M6532::poke(uInt16 addr, uInt8 value) { - if((addr & 0x07) == 0x00) // Port A I/O Register (Joystick) + // Access RAM directly. Originally, accesses to RAM could bypass + // this method and its pages could be installed directly into the + // system. However, certain cartridges (notably 4A50) can mirror + // the RAM address space, making it necessary to chain accesses. + if((addr & 0x1080) == 0x0080 && (addr & 0x0200) == 0x0000) + { + myRAM[addr & 0x007f] = value; + } + else if((addr & 0x07) == 0x00) // Port A I/O Register (Joystick) { uInt8 a = value & myDDRA; @@ -251,12 +265,13 @@ void M6532::poke(uInt16 addr, uInt8 value) work on real hardware. */ Controller &c = myConsole.controller(Controller::Right); - if(c.type() == Controller::AtariVox) { + if(c.type() == Controller::AtariVox) + { c.write(Controller::One, !(value & 0x01)); c.write(Controller::Two, !(value & 0x02)); c.write(Controller::Three, !(value & 0x04)); c.write(Controller::Four, !(value & 0x08)); - } + } #endif } else if((addr & 0x07) == 0x02) // Port B I/O Register (Console switches) diff --git a/stella/src/emucore/M6532.hxx b/stella/src/emucore/M6532.hxx index 10eeefa9f..55128266b 100644 --- a/stella/src/emucore/M6532.hxx +++ b/stella/src/emucore/M6532.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: M6532.hxx,v 1.7 2008-02-06 13:45:22 stephena Exp $ +// $Id: M6532.hxx,v 1.8 2008-02-19 12:33:05 stephena Exp $ //============================================================================ #ifndef M6532_HXX @@ -31,7 +31,7 @@ class Deserializer; RIOT @author Bradford W. Mott - @version $Id: M6532.hxx,v 1.7 2008-02-06 13:45:22 stephena Exp $ + @version $Id: M6532.hxx,v 1.8 2008-02-19 12:33:05 stephena Exp $ */ class M6532 : public Device { @@ -69,6 +69,17 @@ class M6532 : public Device */ virtual void install(System& system); + /** + Install 6532 in the specified system and device. Invoked by + the system when the 6532 is attached to it. All devices + which invoke this method take responsibility for chaining + requests back to *this* device. + + @param system The system the device should install itself in + @param device The device responsible for this address space + */ + virtual void install(System& system, Device& device); + /** Save the current state of this device to the given Serializer. diff --git a/stella/src/emucore/TIA.cxx b/stella/src/emucore/TIA.cxx index 3e92312c9..51c85c11a 100644 --- a/stella/src/emucore/TIA.cxx +++ b/stella/src/emucore/TIA.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: TIA.cxx,v 1.83 2008-02-06 13:45:22 stephena Exp $ +// $Id: TIA.cxx,v 1.84 2008-02-19 12:33:05 stephena Exp $ //============================================================================ #include @@ -272,6 +272,12 @@ void TIA::systemCyclesReset() // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void TIA::install(System& system) +{ + install(system, *this); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void TIA::install(System& system, Device& device) { // Remember which system I'm installed in mySystem = &system; @@ -279,11 +285,11 @@ void TIA::install(System& system) uInt16 shift = mySystem->pageShift(); mySystem->resetCycles(); - // All accesses are to this device + // All accesses are to the given device System::PageAccess access; access.directPeekBase = 0; access.directPokeBase = 0; - access.device = this; + access.device = &device; // We're installing in a 2600 system for(uInt32 i = 0; i < 8192; i += (1 << shift)) diff --git a/stella/src/emucore/TIA.hxx b/stella/src/emucore/TIA.hxx index f2d44d1ff..5207596b4 100644 --- a/stella/src/emucore/TIA.hxx +++ b/stella/src/emucore/TIA.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: TIA.hxx,v 1.44 2008-02-06 13:45:22 stephena Exp $ +// $Id: TIA.hxx,v 1.45 2008-02-19 12:33:05 stephena Exp $ //============================================================================ #ifndef TIA_HXX @@ -40,7 +40,7 @@ class Settings; be displayed on screen. @author Bradford W. Mott - @version $Id: TIA.hxx,v 1.44 2008-02-06 13:45:22 stephena Exp $ + @version $Id: TIA.hxx,v 1.45 2008-02-19 12:33:05 stephena Exp $ */ class TIA : public Device , public MediaSource { @@ -86,6 +86,17 @@ class TIA : public Device , public MediaSource */ virtual void install(System& system); + /** + Install TIA in the specified system and device. Invoked by + the system when the TIA is attached to it. All devices + which invoke this method take responsibility for chaining + requests back to *this* device. + + @param system The system the device should install itself in + @param device The device responsible for this address space + */ + virtual void install(System& system, Device& device); + /** Save the current state of this device to the given Serializer. diff --git a/stella/src/emucore/m6502/src/System.cxx b/stella/src/emucore/m6502/src/System.cxx index 6d7d2748a..60c53e838 100644 --- a/stella/src/emucore/m6502/src/System.cxx +++ b/stella/src/emucore/m6502/src/System.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: System.cxx,v 1.24 2008-02-06 13:45:22 stephena Exp $ +// $Id: System.cxx,v 1.25 2008-02-19 12:33:07 stephena Exp $ //============================================================================ #include @@ -21,6 +21,7 @@ #include "Device.hxx" #include "M6502.hxx" +#include "M6532.hxx" #include "TIA.hxx" #include "System.hxx" @@ -113,6 +114,16 @@ void System::attach(M6502* m6502) myM6502->install(*this); } +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void System::attach(M6532* m6532) +{ + // Remember the processor + myM6532 = m6532; + + // Attach it as a normal device + attach((Device*) m6532); +} + // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void System::attach(TIA* tia) { diff --git a/stella/src/emucore/m6502/src/System.hxx b/stella/src/emucore/m6502/src/System.hxx index df67f0c70..96d70752f 100644 --- a/stella/src/emucore/m6502/src/System.hxx +++ b/stella/src/emucore/m6502/src/System.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: System.hxx,v 1.18 2008-02-06 13:45:22 stephena Exp $ +// $Id: System.hxx,v 1.19 2008-02-19 12:33:07 stephena Exp $ //============================================================================ #ifndef SYSTEM_HXX @@ -21,6 +21,7 @@ class Device; class M6502; +class M6532; class TIA; class NullDevice; @@ -46,7 +47,7 @@ class NullDevice; dynamic code for that page of memory. @author Bradford W. Mott - @version $Id: System.hxx,v 1.18 2008-02-06 13:45:22 stephena Exp $ + @version $Id: System.hxx,v 1.19 2008-02-19 12:33:07 stephena Exp $ */ class System : public Serializable { @@ -88,6 +89,14 @@ class System : public Serializable */ void attach(M6502* m6502); + /** + Attach the specified processor and claim ownership of it. The + processor will be asked to install itself. + + @param m6532 The 6532 microprocessor to attach to the system + */ + void attach(M6532* m6532); + /** Attach the specified TIA device and claim ownership of it. The device will be asked to install itself. @@ -108,6 +117,17 @@ class System : public Serializable return *myM6502; } + /** + Answer the 6532 processor attached to the system. If a + processor has not been attached calling this function will fail. + + @return The attached 6532 microprocessor + */ + M6532& m6532() + { + return *myM6532; + } + /** Answer the TIA device attached to the system. @@ -326,6 +346,9 @@ class System : public Serializable // 6502 processor attached to the system or the null pointer M6502* myM6502; + // 6532 processor attached to the system or the null pointer + M6532* myM6532; + // TIA device attached to the system or the null pointer TIA* myTIA; diff --git a/stella/src/emucore/stella.pro b/stella/src/emucore/stella.pro index 9e982a455..6857a01d4 100644 --- a/stella/src/emucore/stella.pro +++ b/stella/src/emucore/stella.pro @@ -20,7 +20,10 @@ "" "Cartridge.MD5" "000509d1ed2b8d30a9d94be1b3b5febb" -"Cartridge.Name" "Jungle Jane (2003) (Greg Zumwalt) (Pitfall! Hack)" +"Cartridge.Manufacturer" "Greg Zumwalt" +"Cartridge.Name" "Jungle Jane (2003) (Greg Zumwalt) (Hack)" +"Cartridge.Note" "Hack of Pitfall!" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "008543ae43497af015e9428a5e3e874e" @@ -90,7 +93,7 @@ "Cartridge.MD5" "0685bd0bcb975ceef7041749a5454a48" "Cartridge.Manufacturer" "Piero Cavina" "Cartridge.Name" "11 Sprite Demo (Piero Cavina) (PD)" -"Cartridge.Rarity" "New Release" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "02a5fc90a0d183f870e8eebac1f16591" @@ -100,10 +103,10 @@ "" "Cartridge.MD5" "012020625a3227815e47b37fd025e480" -"Cartridge.Manufacturer" "Atari" -"Cartridge.ModelNo" "CX2632" -"Cartridge.Name" "Better Space Invaders (1999) (Rob Kudla) (PAL) [!]" -"Cartridge.Rarity" "Common" +"Cartridge.Manufacturer" "Rob Kudla" +"Cartridge.Name" "Better Space Invaders (1999) (Rob Kudla) (Hack) [a]" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "028024fb8e5e5f18ea586652f9799c96" @@ -337,9 +340,10 @@ "" "Cartridge.MD5" "0546f4e6b946f38956799dd00caab3b1" -"Cartridge.Manufacturer" "HES / Thomas Jentzsch" -"Cartridge.Name" "My Golf (1990) (HES) (NTSC by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "My Golf (Thomas Jentzsch)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "04fccc7735155a6c1373d453b110c640" @@ -369,7 +373,9 @@ "" "Cartridge.MD5" "05d61b925d3d2474bab83f0a79bb5df1" +"Cartridge.Manufacturer" "Eckhard Stolberg" "Cartridge.Name" "Cosmic Ark Stars (1997) (Eckhard Stolberg)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "05aedf04803c43eb5e09dfd098d3fd01" @@ -453,7 +459,10 @@ "" "Cartridge.MD5" "09274c3fc1c43bf1e362fda436651fd8" -"Cartridge.Name" "Acid Drop (NTSC Conversion) (TJ)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Acid Drop (TJ)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "Display.YStart" "8" "Display.Height" "240" "" @@ -521,7 +530,10 @@ "" "Cartridge.MD5" "07c76f2d88552d20ad2c0ed7aef406c6" -"Cartridge.Name" "Blob, The (Cody Pittman) (Halloween Hack)" +"Cartridge.Manufacturer" "Cody Pittman" +"Cartridge.Name" "Blob (Cody Pittman) (Hack)" +"Cartridge.Note" "Hack of Halloween" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "07973be3ecfd55235bf59aa56bdef28c" @@ -700,7 +712,9 @@ "" "Cartridge.MD5" "0a1b98937911d621b004b1617446d124" -"Cartridge.Name" "Hangman Pac-Man Biglist1 (Hangman Hack)" +"Cartridge.Name" "Hangman Pac-Man Biglist1 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "09e1ecf9bd2a3030d5670dba7a65e78d" @@ -811,9 +825,9 @@ "Cartridge.MD5" "0af51ceb4aecc7a8fc89781ac44a1973" "Cartridge.Manufacturer" "Barry Laws Jr." -"Cartridge.Name" "Face Invaders Deluxe by Barry Laws Jr. (Space Invaders Hack)" -"Cartridge.Note" "Hack of Space Invaders (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Face Invaders Deluxe (Barry Laws Jr.) (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "0b1056f1091cfdc5eb0e2301f47ac6c3" @@ -1021,7 +1035,11 @@ "" "Cartridge.MD5" "1287535256bf5dff404839ac9e25c3e7" -"Cartridge.Name" "Alien Pac-Man (Rev 2) by PacManPlus (Alien Hack)" +"Cartridge.Manufacturer" "PacManPlus" +"Cartridge.ModelNo" "Rev 2" +"Cartridge.Name" "Alien Pac-Man (PacManPlus) (Hack)" +"Cartridge.Note" "Hack of Alien" +"Cartridge.Rarity" "Hack" "Display.Phosphor" "YES" "" @@ -1043,8 +1061,9 @@ "" "Cartridge.MD5" "0e0808227ef41f6825c06f25082c2e56" -"Cartridge.Name" "Candi (Space Invaders Hack)[o1]" -"Cartridge.Note" "Hack of Space Invaders (Atari)" +"Cartridge.Name" "Candi (Hack) [a]" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "0de53160a8b54c3aa5aed8d68c970b62" @@ -1065,9 +1084,10 @@ "" "Cartridge.MD5" "0eebfb60d437796d536039701ec43845" -"Cartridge.Manufacturer" "Fabrizio Zavagli / CommaVid" -"Cartridge.Name" "Cakewalk (PAL Conversion) (Fabrizio Zavagli)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Fabrizio Zavagli" +"Cartridge.Name" "Cakewalk (Fabrizio Zavagli)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "0e224ea74310da4e7e2103400eb1b4bf" @@ -1197,10 +1217,9 @@ "" "Cartridge.MD5" "10958cd0a1a81d599005f1797ab0e51d" -"Cartridge.Manufacturer" "Eduardo" -"Cartridge.Name" "Centipede 2k (2000) (PD)" -"Cartridge.Note" "Hack of Centipede (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Centipede 2k (2000) (PD) (Hack)" +"Cartridge.Note" "Hack of Centipede" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "106855474c69d08c8ffa308d47337269" @@ -1234,10 +1253,7 @@ "" "Cartridge.MD5" "110ac8ecaf1b69f41bc94c59dfcb8b2d" -"Cartridge.Manufacturer" "Imagic" -"Cartridge.ModelNo" "IA3200" -"Cartridge.Name" "Demon Attack (1982) (Imagic) [t1]" -"Cartridge.Rarity" "Common" +"Cartridge.Name" "Demon Attack (Unknown)" "" "Cartridge.MD5" "10f62443f1ae087dc588a77f9e8f43e9" @@ -1366,12 +1382,14 @@ "Cartridge.MD5" "1345e972dbe08ea3e70850902e20e1a5" "Cartridge.Manufacturer" "Greg Troutman" "Cartridge.Name" "Dark Mage (rough beta) (Greg Troutman) (PD)" -"Cartridge.Rarity" "New Release" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" "Cartridge.MD5" "135708b9a7dd20576c1b66ab2a41860d" -"Cartridge.Name" "Hangman Man Biglist1 (Hangman Hack)" +"Cartridge.Name" "Hangman Man Biglist1 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "1351c67b42770c1bd758c3e42f553fea" @@ -1394,9 +1412,9 @@ "Cartridge.MD5" "13abc32f803165c458bb086fa57195fb" "Cartridge.Manufacturer" "Christian Samuel" -"Cartridge.Name" "E.T. The Extra-Testical by Christian Samuel (E.T. Hack)" -"Cartridge.Note" "Hack of E.T. The Extra-Terrestrial (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "E.T. The Extra-Testical (Christian Samuel) (Hack)" +"Cartridge.Note" "Hack of E.T. The Extra-Terrestrial" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "13a991bc9c2ff03753aeb322d3e3e2e5" @@ -1525,10 +1543,10 @@ "" "Cartridge.MD5" "171cd6b55267573e6a9c2921fb720794" -"Cartridge.Manufacturer" "Atari / Kurt Howe" -"Cartridge.Name" "Adventure 34 by Kurt Howe (Adventure Hack)" -"Cartridge.Rarity" "New Release (Hack)" -"Controller.Right" "NONE" +"Cartridge.Manufacturer" "Kurt Howe" +"Cartridge.Name" "Adventure 34 (Kurt Howe) (Hack)" +"Cartridge.Note" "Hack of Adventure" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "16cb43492987d2f32b423817cdaaf7c4" @@ -1630,7 +1648,9 @@ "" "Cartridge.MD5" "1733772165d7b886a94e2b4ed0f74ccd" -"Cartridge.Name" "Boring Journey Escape (Journey - Escape Hack)" +"Cartridge.Name" "Boring Journey Escape (Hack)" +"Cartridge.Note" "Hack of Journey - Escape" +"Cartridge.Rarity" "Hack" "Display.Height" "230" "" @@ -1641,11 +1661,15 @@ "" "Cartridge.MD5" "176d3fba7d687f2b23158098e103c34a" +"Cartridge.Manufacturer" "Zach Matley" "Cartridge.Name" "Combat AI (16-02-2003) (Zach Matley)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "1738b2e3f25ab3eef3cecb95e1d0d957" -"Cartridge.Name" "Hangman Monkey Biglist1 (Hangman Hack)" +"Cartridge.Name" "Hangman Monkey Biglist1 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "17515a4d0b7ea5029ffff7dfa8456671" @@ -1712,7 +1736,10 @@ "" "Cartridge.MD5" "183020a80848e06a1238a1ab74079d52" -"Cartridge.Name" "Missile Command (Amiga Mouse) (PAL) (2002) (TJ)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Missile Command (Amiga Mouse) (2002) (TJ) (PAL)" +"Cartridge.Note" "Uses Amiga Mouse Controller" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -2137,10 +2164,9 @@ "" "Cartridge.MD5" "200a9d2a7cb4441ce4f002df6aa47e38" -"Cartridge.Manufacturer" "Eduardo" -"Cartridge.Name" "Doomzerk (PD)" -"Cartridge.Note" "Hack of Berzerk (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Doomzerk (PD) (Hack)" +"Cartridge.Note" "Hack of Berzerk" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "1f773a94d919b2a3c647172bbb97f6b4" @@ -2151,7 +2177,9 @@ "" "Cartridge.MD5" "1f562b89d081e36d58e6fc943512ec05" -"Cartridge.Name" "Hangman Man Biglist2 (Hangman Hack)" +"Cartridge.Name" "Hangman Man Biglist2 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "1f2ae0c70a04c980c838c2cdc412cf45" @@ -2200,7 +2228,9 @@ "" "Cartridge.MD5" "205070b6a0d454961dd9196a8e81d877" -"Cartridge.Name" "Hangman Monkey Biglist2 (Hangman Hack)" +"Cartridge.Name" "Hangman Monkey Biglist2 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "2016726db38ad6a68b4c48ba6fe51557" @@ -2231,7 +2261,10 @@ "" "Cartridge.MD5" "211f76dff0b7dad3f6fcac9d938ee61a" -"Cartridge.Name" "Custer's Viagra (JSK) (Custer's Revenge Hack) [a1]" +"Cartridge.Manufacturer" "JSK" +"Cartridge.Name" "Custer's Viagra (JSK) (Hack) [a]" +"Cartridge.Note" "Hack of Custer's Revenge" +"Cartridge.Rarity" "Hack" "Display.YStart" "32" "" @@ -2351,7 +2384,9 @@ "" "Cartridge.MD5" "227532d82505c3c185a878273c285d5f" -"Cartridge.Name" "Hangman Man Original Words (Hangman Hack)" +"Cartridge.Name" "Hangman Man Original Words (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "22675cacd9b71dea21800cbf8597f000" @@ -2384,10 +2419,9 @@ "" "Cartridge.MD5" "235436ab0832370e73677c9c6f0c8b06" -"Cartridge.Manufacturer" "Jeff 'Yak' Minter" -"Cartridge.Name" "Beast Invaders (double shot Hack)" -"Cartridge.Note" "Hack of Space Invaders (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Beast Invaders (Double Shot) (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "2351d26d0bfdee3095bec9c05cbcf7b0" @@ -2404,7 +2438,10 @@ "" "Cartridge.MD5" "2365e1534d67f94d8670394ab99150ce" -"Cartridge.Name" "Missile Command (CX-80 Trackball) (NTSC) (2002) (TJ)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Missile Command (CX-80 Trackball) (2002) (TJ)" +"Cartridge.Note" "Uses CX-80 TrackBall Controller" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -2453,8 +2490,10 @@ "" "Cartridge.MD5" "24d9a55d8f0633e886a1b33ee1e0e797" -"Cartridge.Name" "Dragon Defender (NTSC by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Dragon Defender (Thomas Jentzsch)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "Display.YStart" "15" "Display.Height" "240" "Display.Phosphor" "YES" @@ -2632,9 +2671,11 @@ "" "Cartridge.MD5" "260c787e8925bf3649c8aeae5b97dcc0" -"Cartridge.Manufacturer" "ITT Family Games / Thomas Jentzsch" -"Cartridge.Name" "Hell Driver (ITT Family Games) (NTSC by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Hell Driver (Thomas Jentzsch)" +"Cartridge.Note" "NTSC Conversion, joystick ports swapped" +"Cartridge.Rarity" "Homebrew" +"Console.SwapPorts" "YES" "Display.YStart" "36" "" @@ -2736,7 +2777,9 @@ "" "Cartridge.MD5" "278155fc9956e9b6ef2359eb238f7c7f" -"Cartridge.Name" "Donkey Kong Junior (Coleco) [h1]" +"Cartridge.Name" "Donkey Kong Junior (Unknown) (Hack)" +"Cartridge.Note" "Hack of Donkey Kong Junior" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "27c6a2ca16ad7d814626ceea62fa8fb4" @@ -2803,7 +2846,10 @@ "" "Cartridge.MD5" "28a2bea8f84936cb2e063f857414cda0" -"Cartridge.Name" "Mega Mania Raid (1999) (Thiago Paiva)" +"Cartridge.Manufacturer" "Thiago Paiva" +"Cartridge.Name" "Mega Mania Raid (1999) (Thiago Paiva) (Hack)" +"Cartridge.Note" "Hack of Megamania" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "283dee88f295834c4c077d788f151125" @@ -2825,7 +2871,10 @@ "" "Cartridge.MD5" "2cefa695df2ed020899a7df7bb1e3a95" -"Cartridge.Name" "A-Team (2002) (Manuel Polik And Fabrizio Zavagli) (A-Team Hack)" +"Cartridge.Manufacturer" "Manuel Polik, Fabrizio Zavagli" +"Cartridge.Name" "A-Team (2002) (Manuel Polik) (Hack)" +"Cartridge.Note" "Hack of A-Team" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "2a10053fd08664c7cfbbb104386ed77f" @@ -2871,9 +2920,9 @@ "" "Cartridge.MD5" "295f3679bdf91ca5e37da3f787b29997" -"Cartridge.Name" "Exorcise (Adventure Hack)" -"Cartridge.Note" "Hack of Adventure (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Exorcise (Hack)" +"Cartridge.Note" "Hack of Adventure" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "294762000e853b4319f9991c1ced5dfc" @@ -2893,7 +2942,9 @@ "" "Cartridge.MD5" "2982e655dffc89d218a0a3072cfc6811" -"Cartridge.Name" "Mini Golf 812631 (Miniature Golf Hack)" +"Cartridge.Name" "Mini Golf 812631 (Hack)" +"Cartridge.Note" "Hack of Miniature Golf" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "2a0ba55e56e7a596146fa729acf0e109" @@ -2903,7 +2954,9 @@ "" "Cartridge.MD5" "2a33e21447bf9e13dcfed85077ff6b40" -"Cartridge.Name" "Backwards Cannonball v2 (Human Cannonball Hack)" +"Cartridge.Name" "Backwards Cannonball v2 (Hack)" +"Cartridge.Note" "Hack of Human Cannonball" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "2a2f46b3f4000495239cbdad70f17c59" @@ -2955,7 +3008,9 @@ "" "Cartridge.MD5" "2b42da79a682ed6e2d735facbf70107e" -"Cartridge.Name" "DKjr Improved (Donkey Kong Junior Hack)" +"Cartridge.Name" "DKjr Improved (Hack)" +"Cartridge.Note" "Hack of Donkey Kong Jr." +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "2abc3d46b3f2140160759e2e10bc86d9" @@ -3020,7 +3075,7 @@ "Cartridge.MD5" "2b71a59a53be5883399917bf582b7772" "Cartridge.Manufacturer" "Greg Troutman" "Cartridge.Name" "Dark Mage (final beta) (Greg Troutman) (PD)" -"Cartridge.Rarity" "New Release" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -3117,11 +3172,17 @@ "" "Cartridge.MD5" "2c9fadd510509cc7f28f1ccba931855f" -"Cartridge.Name" "Hangman Invader Biglist1 (Hangman Hack)" +"Cartridge.Name" "Hangman Invader Biglist1 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "2c8c11295d8613f875b7bcf5253ab9bb" -"Cartridge.Name" "Kool Aid Man (PAL Conversion) (16-11-2002) (Fabrizio Zavagli)" +"Cartridge.Manufacturer" "Fabrizio Zavagli" +"Cartridge.Name" "Kool Aid Man (PAL Conversion) (16-11-2002) (Fabrizio Zavagli) (PAL60)" +"Cartridge.Note" "PAL60 Conversion" +"Cartridge.Rarity" "Homebrew" +"Display.Format" "PAL60" "" "Cartridge.MD5" "2cccc079c15e9af94246f867ffc7e9bf" @@ -3134,9 +3195,9 @@ "Cartridge.MD5" "2dbdca3058035d2b40c734dcf06a86d9" "Cartridge.Manufacturer" "Thomas Jentzsch" -"Cartridge.Name" "Asteroids DC+ by Thomas Jentzsch (Asteroids Hack)" +"Cartridge.Name" "Asteroids DC+ (Thomas Jentzsch) (Hack)" "Cartridge.Note" "Uses the Joystick (left) or Steering (right) Controller" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Rarity" "Hack" "Controller.Right" "DRIVING" "Display.Phosphor" "YES" "" @@ -3407,7 +3468,9 @@ "" "Cartridge.MD5" "30c92c685224dc7a72b9bbe5eb62d004" -"Cartridge.Name" "Hangman Monkey Original Words (Hangman Hack)" +"Cartridge.Name" "Hangman Monkey Original Words (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "30997031b668e37168d4d0e299ccc46f" @@ -3428,7 +3491,9 @@ "" "Cartridge.MD5" "30e012e8d50330c8972f126b8e913bc4" -"Cartridge.Name" "Indy 500 (1978) (Atari) [h3]" +"Cartridge.Name" "Indy 500 (Hack) [a2]" +"Cartridge.Note" "Hack of Indy 500" +"Cartridge.Rarity" "Hack" "Controller.Left" "DRIVING" "Controller.Right" "DRIVING" "Display.YStart" "28" @@ -3504,16 +3569,21 @@ "" "Cartridge.MD5" "335793736cbf6fc99c9359ed2a32a49d" -"Cartridge.Name" "Analog Clock (V0.0) (20-01-2003) (AD) [a1]" +"Cartridge.Name" "Analog Clock (V0.0) (20-01-2003) (AD) [a]" "" "Cartridge.MD5" "327468d6c19697e65ab702f06502c7ed" -"Cartridge.Name" "Aster-Hawk (2002) (Charles Morgan) (Asteroids Hack)" +"Cartridge.Manufacturer" "Charles Morgan" +"Cartridge.Name" "Aster-Hawk (2002) (Charles Morgan) (Hack)" +"Cartridge.Note" "Hack of Asteroids" +"Cartridge.Rarity" "Hack" "Display.Phosphor" "YES" "" "Cartridge.MD5" "324cb4a749bcac4f3db9da842b85d2f7" +"Cartridge.Manufacturer" "Dennis Debro" "Cartridge.Name" "Climber 5 (01-05-2003) (Dennis Debro)" +"Cartridge.Rarity" "Homebrew" "Display.YStart" "28" "Emulation.HmoveBlanks" "NO" "" @@ -3601,7 +3671,9 @@ "" "Cartridge.MD5" "331938989f0f33ca39c10af4c09ff640" +"Cartridge.Manufacturer" "Zach Matley" "Cartridge.Name" "Combat - Tank AI (19-04-2003) (Zach Matley)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "32f4e47a71601ab06cfb59e1c6a0b846" @@ -3733,7 +3805,10 @@ "" "Cartridge.MD5" "34f4b1d809aa705ace6e46b13253fd3b" -"Cartridge.Name" "Nothern Alliance (Aaron Bergstrom) (Space Invaders Hack)" +"Cartridge.Manufacturer" "Aaron Bergstrom" +"Cartridge.Name" "Nothern Alliance (Aaron Bergstrom) (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "34e37eaffc0d34e05e40ed883f848b40" @@ -3761,7 +3836,9 @@ "" "Cartridge.MD5" "35b10a248a7e67493ec43aeb9743538c" -"Cartridge.Name" "Defender (Dor-x) (Defender Hack)" +"Cartridge.Manufacturer" "Dor-x" +"Cartridge.Name" "Defender (Dor-x) (Hack)" +"Cartridge.Note" "Hack of Defender" "" "Cartridge.MD5" "35b43b54e83403bb3d71f519739a9549" @@ -3942,7 +4019,9 @@ "" "Cartridge.MD5" "38c362dcd5cad5a62e73ae52631bd9d8" +"Cartridge.Manufacturer" "Jake Patterson" "Cartridge.Name" "Baubles (14-11-2001) (Jake Patterson) (PD)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "384f5fbf57b5e92ed708935ebf8a8610" @@ -4373,13 +4452,15 @@ "" "Cartridge.MD5" "3eb1e34a4f0eec36f12e7336badcecf2" +"Cartridge.Manufacturer" "Jake Patterson" "Cartridge.Name" "Baubles (V0.001) (2001) (Jake Patterson) (PD)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "3e6dab92009d6034618cb6b7844c5216" -"Cartridge.Name" "Ed Invaders (Pepsi Invaders Hack)" -"Cartridge.Note" "Hack of Pepsi Invaders (Coca-Cola)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Ed Invaders (Hack)" +"Cartridge.Note" "Hack of Pepsi Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "3e90cf23106f2e08b2781e41299de556" @@ -4448,9 +4529,10 @@ "" "Cartridge.MD5" "3f251c50aa7237e61a38ab42315ebed4" -"Cartridge.Manufacturer" "Atari / Thomas Jentzsch" -"Cartridge.Name" "Ikari Warriors (1990) (Atari) (NTSC by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Ikari Warriors (1990) (Thomas Jentzsch)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "3f6dbf448f25e2bd06dea44248eb122d" @@ -4524,7 +4606,10 @@ "" "Cartridge.MD5" "47b82d47e491ac7fdb5053a88fccc832" -"Cartridge.Name" "Asteroid 2 (Atari Freak 1 and Franklin Cruz)" +"Cartridge.Manufacturer" "Atari Freak 1, Franklin Cruz" +"Cartridge.Name" "Asteroid 2 (Atari Freak 1) (Hack)" +"Cartridge.Note" "Hack of Asteroids" +"Cartridge.Rarity" "Hack" "Display.Phosphor" "YES" "" @@ -4658,7 +4743,9 @@ "" "Cartridge.MD5" "428b2d36f5d716765460701f7016ac91" -"Cartridge.Name" "Brooni (NTSC) (2001) (Andrew Wallace) (PD)" +"Cartridge.Manufacturer" "Andrew Wallace" +"Cartridge.Name" "Brooni (2001) (Andrew Wallace) (PD)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "4279485e922b34f127a88904b31ce9fa" @@ -5128,6 +5215,12 @@ "Cartridge.Rarity" "Hack" "" +"Cartridge.MD5" "49b41972cbbc6d148c79b27967d828c9" +"Cartridge.Name" "ultindy500_0.1.bin" +"Controller.Left" "DRIVING" +"Controller.Right" "DRIVING" +"" + "Cartridge.MD5" "4a45c6d75b1ba131f94a9c13194d8e46" "Cartridge.Name" "How to Draw a Playfield II (Joystick Hack) (1997) (Eric Bacher) (PD)" "" @@ -5156,7 +5249,7 @@ "Cartridge.MD5" "4ac9f40ddfcf194bd8732a75b3f2f214" "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26106" -"Cartridge.Name" "Grover's Music Maker (Atari) (Prototype)" +"Cartridge.Name" "Grover's Music Maker (1983) (Atari) (Prototype)" "Cartridge.Note" "Uses Kids/Keypad Controllers" "Cartridge.Rarity" "Prototype" "Controller.Left" "KEYBOARD" @@ -5208,7 +5301,9 @@ "" "Cartridge.MD5" "4b753a97aee91e4b3e4e02f5e9758c72" -"Cartridge.Name" "Asymmetric Reflected Playfield (Glenn Saunders And Roger Williams)" +"Cartridge.Manufacturer" "Glenn Saunders, Roger Williams" +"Cartridge.Name" "Asymmetric Reflected Playfield (Glenn Saunders)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "4b71197153d651480830638cb6a03249" @@ -5218,7 +5313,9 @@ "" "Cartridge.MD5" "4d0a28443f7df5f883cf669894164cfa" -"Cartridge.Name" "Beast Invaders (Space Invaders Hack)" +"Cartridge.Name" "Beast Invaders (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "4c4ce802cbfd160f7b3ec0f13f2a29df" @@ -5331,7 +5428,9 @@ "" "Cartridge.MD5" "4ca90ba45eced6f5ad560ea8938641b2" -"Cartridge.Name" "Hangman Man Wordlist (Hangman Hack)" +"Cartridge.Name" "Hangman Man Wordlist (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "4cabc895ea546022c2ecaa5129036634" @@ -5358,10 +5457,10 @@ "" "Cartridge.MD5" "4d5f6db55f7f44fd0253258e810bde21" -"Cartridge.Manufacturer" "Mattel / Fabrizio Zavagli" -"Cartridge.Name" "Betterblast by Fabrizio Zavagli (Astroblast Hack)" -"Cartridge.Note" "Hack of Astroblast (Mattel)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Manufacturer" "Fabrizio Zavagli" +"Cartridge.Name" "Betterblast (Fabrizio Zavagli) (Hack)" +"Cartridge.Note" "Hack of Astroblast" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "4d38e1105c3a5f0b3119a805f261fcb5" @@ -5392,12 +5491,15 @@ "Cartridge.MD5" "4e2c884d04b57b43f23a5a2f4e9d9750" "Cartridge.Name" "Baby Center Animation (PD)" +"Cartridge.Rarity" "Homebrew" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "4dbf47c7f5ac767a3b07843a530d29a5" "Cartridge.Manufacturer" "Ric Pryor" -"Cartridge.Name" "Breaking News (2002) (Ric Pryor) (Bump 'n' Jump Hack)" -"Cartridge.Note" "Bump 'n' Jump Hack" +"Cartridge.Name" "Breaking News (2002) (Ric Pryor) (Hack)" +"Cartridge.Note" "Hack of Bump 'n' Jump" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "4d8396deeabb40b5e8578276eb5a8b6d" @@ -5408,11 +5510,10 @@ "" "Cartridge.MD5" "4df6124093ccb4f0b6c26a719f4b7706" -"Cartridge.Manufacturer" "Atari" -"Cartridge.ModelNo" "CX2622" -"Cartridge.Name" "Breakout - Breakaway IV (1978) (Atari) [t1]" +"Cartridge.Manufacturer" "Atari, Steve Jobs, Brad Stewart - Sears" +"Cartridge.ModelNo" "CX2622 - 6-99813, 49-75107" +"Cartridge.Name" "Breakout (1978) (Atari) [a]" "Cartridge.Note" "Uses the Paddle Controllers" -"Cartridge.Rarity" "Common" "Controller.Left" "PADDLES" "" @@ -5449,11 +5550,16 @@ "" "Cartridge.MD5" "4e4895c3381aa4220f8c2795d6338237" -"Cartridge.Name" "Backwards Cannonball v1 (Human Cannonball Hack)" +"Cartridge.Name" "Backwards Cannonball v1 (Hack)" +"Cartridge.Note" "Hack of Human Cannonball" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "4e37992a37ea36489283f7eb90913bbc" -"Cartridge.Name" "Hangman Ghost Halloween (Kris) (Hangman Hack)" +"Cartridge.Manufacturer" "Kris" +"Cartridge.Name" "Hangman Ghost Halloween (Kris) (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "4f781f0476493c50dc578336f1132a67" @@ -5532,7 +5638,7 @@ "" "Cartridge.MD5" "51f15b39d9f502c2361b6ba6a73464d4" -"Cartridge.Name" "Amanda Invaders (PD) [o1]" +"Cartridge.Name" "Amanda Invaders (PD) [a]" "" "Cartridge.MD5" "51de328e79d919d7234cf19c1cd77fbc" @@ -5542,7 +5648,9 @@ "" "Cartridge.MD5" "502044b1ac111b394e6fbb0d821fca41" -"Cartridge.Name" "Hangman Invader 4letter (Hangman Hack)" +"Cartridge.Name" "Hangman Invader 4letter (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "4fc1b85b8074b4b9436d097900e34f29" @@ -5566,8 +5674,9 @@ "" "Cartridge.MD5" "50568c80ac61cab789d9923c9b05b68e" -"Cartridge.Manufacturer" "ebivision" -"Cartridge.Name" "Merlin's Walls - Standard Edition (1999) (Ebivision) [!]" +"Cartridge.Manufacturer" "Ebivision" +"Cartridge.Name" "Merlin's Walls - Standard Edition (1999) (Ebivision)" +"Cartridge.Note" "Image rotated 90 degrees CW" "" "Cartridge.MD5" "504688d49a41bf03d8a955512609f3f2" @@ -5640,9 +5749,9 @@ "Cartridge.MD5" "5355f80cacf0e63a49cbf4ade4e27034" "Cartridge.Manufacturer" "Christian Samuel" -"Cartridge.Name" "Cute Dead Things House by Christian Samuel (Haunted House Hack)" -"Cartridge.Note" "Hack of Haunted House (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Cute Dead Things House (Christian Samuel) (Hack)" +"Cartridge.Note" "Hack of Haunted House" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "52615ae358a68de6e76467e95eb404c7" @@ -5759,7 +5868,10 @@ "" "Cartridge.MD5" "543b4b8ff1d616fa250c648be428a75c" -"Cartridge.Name" "Adventure (1978) (Atari) [t1]" +"Cartridge.Manufacturer" "Warren Robinett" +"Cartridge.Name" "Adventure (1978) (Warren Robinett) (Hack)" +"Cartridge.Note" "Hack of Adventure" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "5409d20c1aea0b89c56993aec5dc5740" @@ -5767,7 +5879,10 @@ "" "Cartridge.MD5" "5385cf2a04de1d36ab55c73174b84db0" -"Cartridge.Name" "Combat Rock (PD)" +"Cartridge.Manufacturer" "Paul Slocum" +"Cartridge.Name" "Combat Rock (PD) (Hack)" +"Cartridge.Note" "Hack of Combat" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "540075f657d4b244a1f74da1b9e4bf92" @@ -5828,9 +5943,9 @@ "Cartridge.MD5" "551a64a945d7d6ece81e9c1047acedbc" "Cartridge.Manufacturer" "Matthias Jaap" -"Cartridge.Name" "Coffee Cup Soccer by matthias Jaap (Pele's Soccer Hack)" -"Cartridge.Note" "Hack of Pele's Soccer (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Coffee Cup Soccer (Matthias Jaap) (Hack)" +"Cartridge.Note" "Hack of Pele's Soccer" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "54a1c1255ed45eb8f71414dadb1cf669" @@ -5986,9 +6101,9 @@ "Cartridge.MD5" "579baa6a4aa44f035d245908ea7a044d" "Cartridge.Manufacturer" "Jess Ragan" -"Cartridge.Name" "Galaxian by Jess Ragan (Enhanced Graphics)" -"Cartridge.Note" "Hack of Galaxian (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Galaxian Enhanced Graphics (Jess Ragan) (Hack)" +"Cartridge.Note" "Hack of Galaxian" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "57939b326df86b74ca6404f64f89fce9" @@ -6058,11 +6173,15 @@ "" "Cartridge.MD5" "599cbf919d47a05af975ad447df29497" +"Cartridge.Manufacturer" "Jake Patterson" "Cartridge.Name" "Baubles (V0.002) (2001) (Jake Patterson) (PD)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "58c396323ea3e85671e34c98eb54e2a4" +"Cartridge.Manufacturer" "Brian Watson" "Cartridge.Name" "Color Tweaker (B. Watson)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "58a82e1da64a692fd727c25faef2ecc9" @@ -6203,7 +6322,9 @@ "" "Cartridge.MD5" "5b98e0536c3f60547dd708ae22adb04b" -"Cartridge.Name" "Donkey Kong Gingerbread Man (Prototype) (Ben Hudman)" +"Cartridge.Manufacturer" "Ben Hudman" +"Cartridge.Name" "Donkey Kong Gingerbread Man (Ben Hudman) (Prototype)" +"Cartridge.Rarity" "Prototype" "" "Cartridge.MD5" "5b6f5bcbbde42fc77d0bdb3146693565" @@ -6242,11 +6363,16 @@ "" "Cartridge.MD5" "5bd79139a0c03b63f6f2cf00a7d385d2" +"Cartridge.Manufacturer" "Marc de Smet" "Cartridge.Name" "An Exercise In Minimalism (V1) (1999) (Marc de Smet) (PD)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "5bc9998b7e9a970e31d2cb60e8696cc4" -"Cartridge.Name" "Borgwars Asteroids (2003) (Jack Kortkamp) (Asteroids Hack)" +"Cartridge.Manufacturer" "Jack Kortkamp" +"Cartridge.Name" "Borgwars Asteroids (2003) (Jack Kortkamp) (Hack)" +"Cartridge.Note" "Hack of Asteroids" +"Cartridge.Rarity" "Hack" "Display.Phosphor" "YES" "" @@ -6267,14 +6393,16 @@ "" "Cartridge.MD5" "5df32450b9fbcaf43f9d83bd66bd5a81" +"Cartridge.Manufacturer" "Eric Ball" "Cartridge.Name" "Atari Logo Playfield Demo (2001) (Eric Ball) (PD)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "5c0227ad63300670a647fcebf595ea37" -"Cartridge.Manufacturer" "Imagic / Josh" -"Cartridge.Name" "Battle for Naboo by Josh (Atlantis Hack)" -"Cartridge.Note" "Hack of Atlantis (Imagic)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Manufacturer" "Josh" +"Cartridge.Name" "Battle for Naboo (Josh) (Hack)" +"Cartridge.Note" "Hack of Atlantis" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "5be03a1fe7b2c114725150be04b38704" @@ -6288,7 +6416,10 @@ "" "Cartridge.MD5" "5c618a50dfa23daac97ba459b9ff5206" -"Cartridge.Name" "Berzerk Renegade (2002) (Steve Engelhardt) (Room of Doom Hack)" +"Cartridge.Manufacturer" "Steve Engelhardt" +"Cartridge.Name" "Berzerk Renegade (2002) (Steve Engelhardt) (Hack)" +"Cartridge.Note" "Hack of Room of Doom" +"Cartridge.Rarity" "Hack" "Display.YStart" "29" "Display.Phosphor" "YES" "" @@ -6326,7 +6457,9 @@ "" "Cartridge.MD5" "5ce98f22ade915108860424d8dde0d35" -"Cartridge.Name" "Hangman Man Biglist3 (Hangman Hack)" +"Cartridge.Name" "Hangman Man Biglist3 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "5c73693a89b06e5a09f1721a13176f95" @@ -6543,21 +6676,23 @@ "Cartridge.MD5" "6015a9cef783e97e98a2aa2cf070ae06" "Cartridge.Manufacturer" "Thomas Jentzsch" -"Cartridge.Name" "Battlezone TC by Thomas Jentzsch (2 joystick Hack)" -"Cartridge.Note" "Uses two simultaneous Joystick Controllers, Hack of Battlezone (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Battlezone TC (Thomas Jentzsch) (Hack)" +"Cartridge.Note" "Uses two simultaneous Joystick Controllers, Hack of Battlezone" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "613abf596c304ef6dbd8f3351920c37a" -"Cartridge.Name" "Boring Pac-man (Pac-Man Hack)" +"Cartridge.Name" "Boring Pac-Man (Hack)" +"Cartridge.Note" "Hack of Pac-Man" +"Cartridge.Rarity" "Hack" "Display.YStart" "33" "" "Cartridge.MD5" "60358edf0c2cc76b1e549e031e50e130" "Cartridge.Manufacturer" "Manuel Polik" -"Cartridge.Name" "Cyber Goth Galaxian by Manuel Polik (Galaxian Hack)" -"Cartridge.Note" "Hack of Galaxian (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Cyber Goth Galaxian (Manuel Polik) (Hack)" +"Cartridge.Note" "Hack of Galaxian" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "6076b187a5d8ea7a2a05111c19b5d5cd" @@ -6721,18 +6856,23 @@ "" "Cartridge.MD5" "6354f9c7588a27109c66905b0405825b" -"Cartridge.Name" "Amidar DS (2003) (TJ) (Amidar Hack)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Amidar DS (2003) (TJ) (Hack)" +"Cartridge.Note" "Hack of Amidar" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "6333ef5b5cbb77acd47f558c8b7a95d3" "Cartridge.Manufacturer" "Greg Troutman" -"Cartridge.Name" "Dark Mage (8K) (Greg Troutman) (PD)" -"Cartridge.Rarity" "New Release" +"Cartridge.Name" "Dark Mage (Greg Troutman) (PD) (8K)" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" "Cartridge.MD5" "63166867f75869a3592b7a94ea62d147" -"Cartridge.Name" "Indy 500 (1978) (Atari) [h2]" +"Cartridge.Name" "Indy 500 (Hack) [a1]" +"Cartridge.Note" "Hack of Indy 500" +"Cartridge.Rarity" "Hack" "Controller.Left" "DRIVING" "Controller.Right" "DRIVING" "Display.YStart" "28" @@ -6761,8 +6901,9 @@ "Cartridge.MD5" "63a7445b1d3046d3cdcdbd488dca38d9" "Cartridge.Manufacturer" "Rob Kudla" -"Cartridge.Name" "Better Space Invaders (1999) (Rob Kudla) [!]" -"Cartridge.Note" "Hack of Space Invaders (Atari)" +"Cartridge.Name" "Better Space Invaders (1999) (Rob Kudla) (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "63a6eda1da30446569ac76211d0f861c" @@ -6826,9 +6967,9 @@ "Cartridge.MD5" "63e783994df824caf289b69a084cbf3e" "Cartridge.Manufacturer" "David Marli" -"Cartridge.Name" "Fat Albert by David Marli (Fast Food Hack)" -"Cartridge.Note" "Hack of Fast Food (Telesys)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Fat Albert (David Marli) (Hack)" +"Cartridge.Note" "Hack of Fast Food" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "640a08e9ca019172d612df22a9190afb" @@ -6839,7 +6980,10 @@ "" "Cartridge.MD5" "63e9e612bbee31045f8d184a4e53f8ec" -"Cartridge.Name" "Moby Blues (2002) (ATARITALIA) (Mario Bros Hack)" +"Cartridge.Manufacturer" "ATARITALIA" +"Cartridge.Name" "Moby Blues (2002) (ATARITALIA) (Hack)" +"Cartridge.Note" "Hack of Mario Bros" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "643e6451eb6b8ab793eb60ba9c02e000" @@ -6877,9 +7021,10 @@ "" "Cartridge.MD5" "64d43859258dc8ca54949e9ff4174202" -"Cartridge.Manufacturer" "Starsoft / Thomas Jentzsch" -"Cartridge.Name" "Lilly Adventure (Starsoft) (NTSC by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Lilly Adventure (Thomas Jentzsch)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "Display.Height" "230" "" @@ -6912,7 +7057,9 @@ "" "Cartridge.MD5" "6b8fb021bb2e1f1e9bd7ee57f2a8e709" -"Cartridge.Name" "3-D Corridor (29-03-2003) (Paul Slocum) (PD) [a1]" +"Cartridge.Manufacturer" "Paul Slocum" +"Cartridge.Name" "3-D Corridor (29-03-2003) (Paul Slocum) (PD) [a]" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "6672de8f82c4f7b8f7f1ef8b6b4f614d" @@ -6927,7 +7074,9 @@ "" "Cartridge.MD5" "662eca7e3d89175ba0802e8e3425dedb" -"Cartridge.Name" "Hangman Pac-Man Biglist3 (Hangman Hack)" +"Cartridge.Name" "Hangman Pac-Man Biglist3 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "65917ae29a8c9785bb1f2acb0d6aafd0" @@ -7007,7 +7156,9 @@ "" "Cartridge.MD5" "6b01a519b413f8cfa2f399f4d2841b42" -"Cartridge.Name" "Aphex Invaders (Space Invaders Hack)" +"Cartridge.Name" "Aphex Invaders (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "6a9e0c72fab92df70084eccd9061fdbd" @@ -7017,7 +7168,10 @@ "" "Cartridge.MD5" "68cd2adc6b1fc9a1f263ab4561112f30" +"Cartridge.Manufacturer" "Thomas Jentzsch" "Cartridge.Name" "Boulderdash Demo (09-12-2002) (TJ)" +"Cartridge.Rarity" "Homebrew" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "68597264c8e57ada93be3a5be4565096" @@ -7048,9 +7202,9 @@ "" "Cartridge.MD5" "66b54641b5786ea3ff0215aa39d61e01" -"Cartridge.Name" "KC Pacman (Pac-Man Hack)" -"Cartridge.Note" "Hack of Pac-Man (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "KC Pacman (Hack)" +"Cartridge.Note" "Hack of Pac-Man" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "669840b0411bfbab5c05b786947d55d4" @@ -7105,7 +7259,9 @@ "" "Cartridge.MD5" "67cf913d1df0bf2d7ae668060d0b6694" -"Cartridge.Name" "Hangman Monkey 4letter (Hangman Hack)" +"Cartridge.Name" "Hangman Monkey 4letter (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "679d30c7886b283cbe1db4e7dbe5f2a6" @@ -7182,6 +7338,11 @@ "Display.Height" "256" "" +"Cartridge.MD5" "6847ce70819b74febcfd03e99610243b" +"Cartridge.Name" "ruby_4A50.bin" +"Cartridge.Type" "4A50" +"" + "Cartridge.MD5" "68c80e7e1d30df98a0cf67ecbf39cc67" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Name" "Gunfight 2600 - One Step Forward & Two Steps Back (2001) (MP)" @@ -7222,7 +7383,10 @@ "" "Cartridge.MD5" "698f569eab5a9906eec3bc7c6b3e0980" -"Cartridge.Name" "Demons! (2003) (SpkLeader) (Phoenix Hack)" +"Cartridge.Manufacturer" "SpkLeader" +"Cartridge.Name" "Demons! (2003) (SpkLeader) (Hack)" +"Cartridge.Note" "Hack of Phoenix" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "6982854657a2cc87d712f718e402bf85" @@ -7304,7 +7468,10 @@ "" "Cartridge.MD5" "6a3b0c33cf74b1e213a629e3c142b73c" -"Cartridge.Name" "Cory The Interviewer - The Hunt For Begis Billboard (Cody Pittman) (PD)" +"Cartridge.Manufacturer" "Cody Pittman" +"Cartridge.Name" "Cory The Interviewer (Cody Pittman) (Hack)" +"Cartridge.Note" "Hack of Ghostbusters" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "6a882fb1413912d2ce5cf5fa62cf3875" @@ -7330,7 +7497,9 @@ "" "Cartridge.MD5" "6aa66e9c3eea76a0c40ef05513497c40" -"Cartridge.Name" "Hangman Ghost Biglist2 (Hangman Hack)" +"Cartridge.Name" "Hangman Ghost Biglist2 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "6ac3fd31a51730358708c7fdc62487f8" @@ -7433,7 +7602,9 @@ "" "Cartridge.MD5" "6d218dafbf5a691045cdc1f67ceb6a8f" +"Cartridge.Manufacturer" "Robin Harbron" "Cartridge.Name" "6 Digit Score Display (1998) (Robin Harbron) (PD)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "6c76fe09aa8b39ee52035e0da6d0808b" @@ -7446,7 +7617,9 @@ "" "Cartridge.MD5" "6c658b52d03e01828b9d2d4718a998ac" -"Cartridge.Name" "Hangman Invader Biglist2 (Hangman Hack)" +"Cartridge.Name" "Hangman Invader Biglist2 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "6c91ac51421cb9fc72c9833c4f440d65" @@ -7466,7 +7639,7 @@ "Cartridge.MD5" "6cd506509e8fd5627f55603780e862a8" "Cartridge.Manufacturer" "Greg Troutman" "Cartridge.Name" "Dark Mage (SuperCharger) (Greg Troutman) (PD)" -"Cartridge.Rarity" "New Release" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -7500,7 +7673,9 @@ "" "Cartridge.MD5" "6f74ed915ffe73b524ef0f63819e2a1d" +"Cartridge.Manufacturer" "Eckhard Stolberg" "Cartridge.Name" "An Exercise In Minimalism (V2) (1999) (Eckhard Stolberg)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "6d8a04ee15951480cb7c466e5951eee0" @@ -7781,9 +7956,10 @@ "" "Cartridge.MD5" "718ee85ea7ec27d5bea60d11f6d40030" -"Cartridge.Manufacturer" "Salu / Thomas Jentzsch" -"Cartridge.Name" "Ghostbusters II (1992) (Salu) (NTSC by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Ghostbusters II (1992) (Thomas Jentzsch)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -7817,7 +7993,10 @@ "" "Cartridge.MD5" "72bda70c75dfa2365b3f8894bace9e6a" -"Cartridge.Name" "Atlantis (Hack 01) (TJ) (Atlantis Hack)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Atlantis (TJ) (Hack)" +"Cartridge.Note" "Hack of Atlantis" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "72876fd7c7435f41d571f1101fc456ea" @@ -8039,6 +8218,7 @@ "" "Cartridge.MD5" "755fed16b48e81de05130708a905d00d" +"Cartridge.Manufacturer" "SnailSoft" "Cartridge.Name" "Comitoid beta 3 (SnailSoft)" "" @@ -8159,7 +8339,9 @@ "" "Cartridge.MD5" "76c88341017eae660efc6e49c4b6ab40" -"Cartridge.Name" "Indiana Pitfall (Pitfall Hack)" +"Cartridge.Name" "Indiana Pitfall (Hack)" +"Cartridge.Note" "Hack of Pitfall!" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "76f66ce3b83d7a104a899b4b3354a2f2" @@ -8186,7 +8368,10 @@ "" "Cartridge.MD5" "77cd9a9dd810ce8042bdb9d40e256dfe" -"Cartridge.Name" "Evil Dead (2003) (Kyle Pittman) (Haunted House Hack)" +"Cartridge.Manufacturer" "Kyle Pittman" +"Cartridge.Name" "Evil Dead (2003) (Kyle Pittman) (Hack)" +"Cartridge.Note" "Hack of Haunted House" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "77887e4192a6b0a781530e6cf9be7199" @@ -8197,7 +8382,9 @@ "" "Cartridge.MD5" "7860716fa5dbc0fffab93fb9a4cb4132" -"Cartridge.Name" "Hangman Monkey Wordlist (Hangman Hack)" +"Cartridge.Name" "Hangman Monkey Wordlist (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "78297db7f416af3052dd793b53ff014e" @@ -8240,9 +8427,9 @@ "Cartridge.MD5" "7926083ad423ed685de3b3a04a914315" "Cartridge.Manufacturer" "Barry Laws Jr." -"Cartridge.Name" "Face Invaders 2 by Barry Laws Jr. (Space Invaders Hack)" -"Cartridge.Note" "Hack of Astroblast (Mattel)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Face Invaders 2 (Barry Laws Jr.) (Hack)" +"Cartridge.Note" "Hack of Astroblast" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "78c2de58e42cd1faac2ea7df783eaeb3" @@ -8325,7 +8512,9 @@ "" "Cartridge.MD5" "79d4af56036ec28f298cad964a2e2494" -"Cartridge.Name" "Hangman Pac-Man Wordlist (Hangman Hack)" +"Cartridge.Name" "Hangman Pac-Man Wordlist (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "79b649fb812c50b4347d12e7ddbb8400" @@ -8420,7 +8609,8 @@ "" "Cartridge.MD5" "7b33407b2b198af74906b936ce1eecbb" -"Cartridge.Name" "Ghostbuster 2 (NTSC) (King Atari)" +"Cartridge.Manufacturer" "King Atari" +"Cartridge.Name" "Ghostbuster 2 (King Atari)" "Display.Phosphor" "YES" "" @@ -8531,8 +8721,15 @@ "Display.Phosphor" "YES" "" +"Cartridge.MD5" "7cafc884a21aa3b7052f7109e690ca70" +"Cartridge.Name" "sgems.bin" +"Display.YStart" "30" +"" + "Cartridge.MD5" "7eaf009a892f03d90682dc1e67e85f07" +"Cartridge.Manufacturer" "Fabrizio Zavagli" "Cartridge.Name" "Bounce! (18-03-2003) (Fabrizio Zavagli)" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -8759,7 +8956,9 @@ "" "Cartridge.MD5" "805f9a32ef97ac25f999a25014dc5c23" -"Cartridge.Name" "Balthazar (aka Babylon 5) (SnailSoft)" +"Cartridge.Manufacturer" "SnailSoft" +"Cartridge.Name" "Balthazar (SnailSoft)" +"Cartridge.Note" "AKA Babylon 5" "Display.Phosphor" "YES" "" @@ -8775,13 +8974,6 @@ "Cartridge.Rarity" "New Release" "" -"Cartridge.MD5" "7fd52208fb6391bae0cd7e68c27bde6f" -"Cartridge.Manufacturer" "CBS Electronics" -"Cartridge.ModelNo" "2653" -"Cartridge.Name" "Donkey Kong Junior (Coleco) [b1]" -"Cartridge.Rarity" "Rare" -"" - "Cartridge.MD5" "7fcd1766de75c614a3ccc31b25dd5b7a" "Cartridge.Manufacturer" "PlayAround" "Cartridge.ModelNo" "203" @@ -9001,8 +9193,9 @@ "" "Cartridge.MD5" "85478bb289dfa5c63726b9153992a920" -"Cartridge.Name" "Candi (Space Invaders Hack)" -"Cartridge.Note" "Hack of Space Invaders (Atari)" +"Cartridge.Name" "Candi (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "83f50fa0fbae545e4b88bb53b788c341" @@ -9094,14 +9287,10 @@ "Cartridge.Name" "Death Derby (19-01-2003) (TJ)" "" -"Cartridge.MD5" "84d1cf884f029e458db196548db9c2ad" -"Cartridge.Manufacturer" "Ishido" -"Cartridge.Name" "Domino (Ishido) (PD) [b1]" -"Cartridge.Rarity" "New Release" -"" - "Cartridge.MD5" "840a5a2eaea24d95d289f514fd12f9bb" -"Cartridge.Name" "GBImprov (Ghostbusters Hack)" +"Cartridge.Name" "GBImprov (Hack)" +"Cartridge.Note" "Hack of Ghostbusters" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "83fafd7bd12e3335166c6314b3bde528" @@ -9322,7 +9511,9 @@ "" "Cartridge.MD5" "87b460df21b7bbcfc57b1c082c6794b0" +"Cartridge.Manufacturer" "Dennis Debro" "Cartridge.Name" "Climber 5 (20-03-2003) (Dennis Debro)" +"Cartridge.Rarity" "Homebrew" "Display.YStart" "28" "Emulation.HmoveBlanks" "NO" "" @@ -9471,7 +9662,9 @@ "" "Cartridge.MD5" "898748d5eaac3164b0391a64ae1e0e32" -"Cartridge.Name" "Hangman Man 4letter (Hangman Hack)" +"Cartridge.Name" "Hangman Man 4letter (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "890c13590e0d8d5d6149737d930e4d95" @@ -9518,7 +9711,9 @@ "" "Cartridge.MD5" "8a42e2c7266439d8997a55d0124c912c" -"Cartridge.Name" "Hangman Invader Wordlist (Hangman Hack)" +"Cartridge.Name" "Hangman Invader Wordlist (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "89afff4a10807093c105740c73e9b544" @@ -9539,7 +9734,9 @@ "" "Cartridge.MD5" "8a9d953ac3db52a313a90d6a9b139c76" -"Cartridge.Name" "Hangman Invader Biglist3 (Hangman Hack)" +"Cartridge.Name" "Hangman Invader Biglist3 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "8a8e401369e2b63a13e18a4d685387c6" @@ -9629,13 +9826,18 @@ "" "Cartridge.MD5" "8c103a79b007a2fd5af602334937b4e1" -"Cartridge.Manufacturer" "ITT Family Games / Thomas Jentzsch" -"Cartridge.Name" "Laser Base (AKA World End) (ITT Family Games) (NTSC by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Laser Base (Thomas Jentzsch)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" +"Display.Height" "240" "" "Cartridge.MD5" "8bebac614571135933116045204f0f00" -"Cartridge.Name" "Missile Command (CX-22 Trackball) (PAL) (2002) (TJ)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Missile Command (CX-22 Trackball) (2002) (TJ) (PAL)" +"Cartridge.Note" "Uses CX-22 Trackball Controller" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -9713,18 +9915,25 @@ "" "Cartridge.MD5" "8ce9126066f2ddd5173e9f1f9ce1494e" -"Cartridge.Name" "Missile Command (CX-22 Trackball) (NTSC) (2002) (TJ)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Missile Command (CX-22 Trackball) (2002) (TJ)" +"Cartridge.Note" "Uses CX-22 Trackball Controller" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" "Cartridge.MD5" "93b9229fc0ea4fb959d604f83f8f603c" -"Cartridge.Name" "Amidar DS (Fast Enemies) (2003) (TJ) (Amidar Hack)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Amidar DS (Fast Enemies) (2003) (TJ) (Hack)" +"Cartridge.Note" "Hack of Amidar" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "8df4be9ddc54ac363b13dc57ceaf161a" -"Cartridge.Manufacturer" "Atari / Scott Stilphen" -"Cartridge.Name" "Asteroids SS (Asteroids Hack)" -"Cartridge.Note" "Hack of Asteroids (Atari)" +"Cartridge.Manufacturer" "Scott Stilphen" +"Cartridge.Name" "Asteroids SS (Scott Stilphen) (Hack)" +"Cartridge.Note" "Hack of Asteroids" +"Cartridge.Rarity" "Hack" "Display.Phosphor" "YES" "" @@ -9733,7 +9942,10 @@ "" "Cartridge.MD5" "8d1e2a6d2885966e6d86717180938f87" -"Cartridge.Name" "Missile Command (Amiga Mouse) (NTSC) (2002) (TJ)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Missile Command (Amiga Mouse) (2002) (TJ)" +"Cartridge.Note" "Uses Amiga Mouse Controller" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -9760,9 +9972,10 @@ "" "Cartridge.MD5" "8e879aa58db41edb67cbf318b77766c4" -"Cartridge.Manufacturer" "CCE / Thomas Jentzsch" -"Cartridge.Name" "Cosmic Commuter (PAL60 by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Cosmic Commuter (Thomas Jentzsch) (PAL60)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Hack" "Display.Format" "PAL60" "" @@ -9803,7 +10016,9 @@ "" "Cartridge.MD5" "8e822b39a71c84ac875f0107fb61d6f0" -"Cartridge.Name" "Hangman Ghost Original Words (Hangman Hack)" +"Cartridge.Name" "Hangman Ghost Original Words (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "8ee3f64dc0f349adc893fe93df5245d8" @@ -9827,9 +10042,9 @@ "Cartridge.MD5" "93420cc4cb1af1f2175c63e52ec18332" "Cartridge.Manufacturer" "Tim Snider" -"Cartridge.Name" "Blair Witch Project by Tim Snider (Haunted House Hack)" -"Cartridge.Note" "Hack of Haunted House (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Blair Witch Project (Tim Snider) (Hack)" +"Cartridge.Note" "Hack of Haunted House" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "9295570a141cdec18074c55dc7229d08" @@ -9845,9 +10060,11 @@ "" "Cartridge.MD5" "9072c142728a3a3d994956d03bfacba2" -"Cartridge.Manufacturer" "Fabrizio Zavagli / 20th Century Fox" -"Cartridge.Name" "Crash Dive (PAL Conversion) (Fabrizio Zavagli)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Fabrizio Zavagli" +"Cartridge.Name" "Crash Dive (Fabrizio Zavagli) (PAL60)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Hack" +"Display.Format" "PAL60" "Display.YStart" "30" "" @@ -10016,6 +10233,7 @@ "Cartridge.ModelNo" "CA282" "Cartridge.Name" "Great Escape (1983) (Bomb)" "Cartridge.Note" "AKA Asteroid Fire" +"Display.YStart" "28" "" "Cartridge.MD5" "925dda3c61b81eeb7bd8467b6e99dedc" @@ -10130,7 +10348,10 @@ "" "Cartridge.MD5" "93eb1795c8b1065b1b3d62bb9ec0ccdc" -"Cartridge.Name" "Custer's Viagra (JSK) (Custer's Revenge Hack)" +"Cartridge.Manufacturer" "JSK" +"Cartridge.Name" "Custer's Viagra (JSK) (Hack)" +"Cartridge.Note" "Hack of Custer's Revenge" +"Cartridge.Rarity" "Hack" "Display.YStart" "32" "" @@ -10214,7 +10435,9 @@ "" "Cartridge.MD5" "96670d0bf3610da2afcabd8e21d8eabf" -"Cartridge.Name" "Boring Pitfall (Pitfall Hack)" +"Cartridge.Name" "Boring Pitfall (Hack)" +"Cartridge.Note" "Hack of Pitfall!" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "962ffd3eaf865230a7a312b80e6c5cfd" @@ -10272,7 +10495,9 @@ "" "Cartridge.MD5" "9671b658286e276cc4a3d02aa25931d2" -"Cartridge.Name" "Hangman Ghost Wordlist (Hangman Hack)" +"Cartridge.Name" "Hangman Ghost Wordlist (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "966b11d3c147d894dd9e4ebb971ea309" @@ -10280,7 +10505,8 @@ "" "Cartridge.MD5" "9848b5ef7a0c02fe808b920a2ac566d2" -"Cartridge.Name" "Baseball (2002) (Skyworks) [!]" +"Cartridge.Manufacturer" "Skyworks Technology Inc." +"Cartridge.Name" "Baseball (2002) (Skyworks)" "" "Cartridge.MD5" "969b968383d9f0e9d8ffd1056bcaef49" @@ -10301,7 +10527,10 @@ "" "Cartridge.MD5" "96eccc2277043508a6c481ea432d7dd9" -"Cartridge.Name" "Missile Command (CX-80 Trackball) (PAL) (2002) (TJ)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Missile Command (CX-80 Trackball) (2002) (TJ) (PAL)" +"Cartridge.Note" "Uses CX-80 Trackball Controller" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -10344,7 +10573,10 @@ "" "Cartridge.MD5" "97d0151beb84acbe82aa6db18cd91b98" -"Cartridge.Name" "Lunar Attack (2002) (Steve Engelhardt) (Z-Tack Hack)" +"Cartridge.Manufacturer" "Steve Engelhardt" +"Cartridge.Name" "Lunar Attack (2002) (Steve Engelhardt) (Hack)" +"Cartridge.Note" "Hack of Z-Tack" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "97cd63c483fe3c68b7ce939ab8f7a318" @@ -10378,9 +10610,9 @@ "" "Cartridge.MD5" "98ba601a60172cb46c5bf9a962fd5b1f" -"Cartridge.Name" "Gorilla Kong (Donkey Kong Hack)" -"Cartridge.Note" "Hack of Donkey Kong (Coleco)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Gorilla Kong (Hack)" +"Cartridge.Note" "Hack of Donkey Kong" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "98ccd15345b1aee6caf51e05955f0261" @@ -10421,7 +10653,9 @@ "" "Cartridge.MD5" "98e7caaab8ec237558378d2776c66616" +"Cartridge.Manufacturer" "Bradford W. Mott" "Cartridge.Name" "HMOVE Test (Bradford W. Mott) (1998) (PD)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "98e6e34af45a0664597972c3bb31180f" @@ -10449,7 +10683,9 @@ "" "Cartridge.MD5" "9989f974c3cf9c641db6c8a70a2a2267" -"Cartridge.Name" "Colours Selector (Eckhard Stolberg) (PAL)" +"Cartridge.Manufacturer" "Eckhard Stolberg" +"Cartridge.Name" "Colours Selector (Eckhard Stolberg)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "99112a46486b52b1110bae607bfa8cd6" @@ -10487,11 +10723,14 @@ "" "Cartridge.MD5" "99f7c6c26046bbe95f1c604b25da8360" +"Cartridge.Manufacturer" "SnailSoft" "Cartridge.Name" "Comitoid beta 2 (SnailSoft)" "" "Cartridge.MD5" "99a24d7bb31d49b720b422550b32c35f" -"Cartridge.Name" "Hangman Ghost Biglist1 (Hangman Hack)" +"Cartridge.Name" "Hangman Ghost Biglist1 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "9a21fba9ee9794e0fadd7c7eb6be4e12" @@ -10523,7 +10762,9 @@ "" "Cartridge.MD5" "9be58a14e055b0e7581fc4d6c2f6b31d" -"Cartridge.Name" "Adventure (Color Scrolling) [h1]" +"Cartridge.Name" "Adventure (Color Scrolling) (Hack)" +"Cartridge.Note" "Hack of Adventure" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "9b246683f44c963a50e41d6b485bee77" @@ -10540,7 +10781,9 @@ "" "Cartridge.MD5" "9bd4e0d5f28ba6da417c26649171f8e4" -"Cartridge.Name" "Hangman Pac-Man Original Words (Hangman Hack)" +"Cartridge.Name" "Hangman Pac-Man Original Words (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "9bb136b62521c67ac893213e01dd338f" @@ -10556,7 +10799,10 @@ "" "Cartridge.MD5" "9d4bc7c6fe9a7c8c4aa24a237c340adb" -"Cartridge.Name" "Climber 5 (For Philly Classic 4) (16-04-2003) (Dennis Debro)" +"Cartridge.Manufacturer" "Dennis Debro" +"Cartridge.Name" "Climber 5 (16-04-2003) (Dennis Debro)" +"Cartridge.Note" "For Philly Classic 4" +"Cartridge.Rarity" "Homebrew" "Display.YStart" "28" "Emulation.HmoveBlanks" "NO" "" @@ -10567,9 +10813,9 @@ "" "Cartridge.MD5" "9c729017dd2f9ccbadcb511187f80e6b" -"Cartridge.Name" "J-Pac (Pac-Man Hack)" -"Cartridge.Note" "Hack of Pac-Man (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "J-Pac (Hack)" +"Cartridge.Note" "Hack of Pac-Man" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "9c6fd6ed3599978ab7b6f900484b9be6" @@ -10757,7 +11003,10 @@ "" "Cartridge.MD5" "9f59eddf9ba91a7d93bce7ee4b7693bc" -"Cartridge.Name" "Montezuma's Revenge - Starring Panama Joe (PAL60 by Thomas Jentzsch).a26" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Montezuma's Revenge (Thomas Jentzsch) (PAL60)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "Display.Format" "PAL60" "" @@ -10786,8 +11035,9 @@ "Cartridge.MD5" "a00ee0aed5c8979add4c170f5322c706" "Cartridge.Manufacturer" "Barry Laws Jr." -"Cartridge.Name" "Egghead by Barry Laws Jr. (Pac-Man Hack)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Egghead (Barry Laws Jr.) (Hack)" +"Cartridge.Note" "Hack of Pac-Man" +"Cartridge.Rarity" "Hack" "Display.YStart" "33" "" @@ -10877,9 +11127,9 @@ "Cartridge.MD5" "a100eff2d7ae61ca2b8e65baf7e2aae8" "Cartridge.Manufacturer" "David Marli" -"Cartridge.Name" "Muncher by David Marli (Pac-Man Hack)" -"Cartridge.Note" "Hack of Pac-Man (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Muncher (David Marli) (Hack)" +"Cartridge.Note" "Hack of Pac-Man" +"Cartridge.Rarity" "Hack" "Display.YStart" "33" "" @@ -10989,9 +11239,7 @@ "Cartridge.MD5" "a29df35557f31dfea2e2ae4609c6ebb7" "Cartridge.Manufacturer" "Atari" -"Cartridge.ModelNo" "CX2630 / 4975122" -"Cartridge.Name" "Circus Atari (1978) (Atari) (Joystick)" -"Cartridge.Rarity" "Common" +"Cartridge.Name" "Circus Atari (1980) (Atari) (Joystick)" "" "Cartridge.MD5" "a2aae759e4e76f85c8afec3b86529317" @@ -11001,9 +11249,9 @@ "Cartridge.MD5" "a2de0fc85548871279ed2a3c1325c13e" "Cartridge.Manufacturer" "George Veeder" -"Cartridge.Name" "Cat and Mouse by George Veeder (Pac-Man Hack)" -"Cartridge.Note" "Hack of Pac-Man (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Cat and Mouse (George Veeder) (Hack)" +"Cartridge.Note" "Hack of Pac-Man" +"Cartridge.Rarity" "Hack" "Display.YStart" "33" "" @@ -11019,6 +11267,7 @@ "Cartridge.MD5" "a2eb84cfeed55acd7fece7fefdc83fbb" "Cartridge.Name" "Kool Aid Man (Fixed) (15-11-2002) (CT)" +"Cartridge.Note" "HMOVE handling fixed in this version" "" "Cartridge.MD5" "a2f296ea2d6d4b59979bac5dfbf4edf0" @@ -11100,7 +11349,9 @@ "" "Cartridge.MD5" "a4aa7630e4c0ad7ebb9837d2d81de801" -"Cartridge.Name" "Atari 2600 Invaders (Space Invaders Hack)" +"Cartridge.Name" "Atari 2600 Invaders (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "a47e26096de6f6487bf5dd2d1cced294" @@ -11155,7 +11406,9 @@ "" "Cartridge.MD5" "a537879d8e82e1061d3ad800479d3b84" -"Cartridge.Name" "Brooni (PAL) (2001) (Andrew Wallace) (PD)" +"Cartridge.Manufacturer" "Andrew Wallace" +"Cartridge.Name" "Brooni (2001) (Andrew Wallace) (PD) (PAL)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "a4ab331e8768eafdc20ce8b0411ff77a" @@ -11207,7 +11460,9 @@ "" "Cartridge.MD5" "a5b7f420ca6cc1384da0fed523920d8e" -"Cartridge.Name" "Adventure (New Graphics) [h1]" +"Cartridge.Name" "Adventure (New Graphics) (Hack)" +"Cartridge.Note" "Hack of Adventure" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "a591b5e8587aae0d984a0f6fe2cc7d1c" @@ -11261,7 +11516,9 @@ "" "Cartridge.MD5" "a62e3e19280ff958407e05ca0a2d5ec7" -"Cartridge.Name" "Hangman Ghost Biglist3 (Hangman Hack)" +"Cartridge.Name" "Hangman Ghost Biglist3 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "a641d14c516d00da81cd12c2dbaa06db" @@ -11297,7 +11554,10 @@ "" "Cartridge.MD5" "a7cf2b9afdbb3a161bf418dbcf0321dc" -"Cartridge.Name" "Attack Of The Mutant Space Urchins (2002) (Barry Laws Jr.) (Alien Hack)" +"Cartridge.Manufacturer" "Barry Laws Jr." +"Cartridge.Name" "Attack Of The Mutant Space Urchins (2002) (Barry Laws Jr.) (Hack)" +"Cartridge.Note" "Hack of Alien" +"Cartridge.Rarity" "Hack" "Display.Phosphor" "YES" "" @@ -11311,9 +11571,9 @@ "Cartridge.MD5" "a81b29177f258494b499fbac69789cef" "Cartridge.Manufacturer" "Greg Thompson" -"Cartridge.Name" "Console Wars (PD)" -"Cartridge.Note" "Hack of Space Jockey (US Games)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Console Wars (Greg Thompson) (Hack)" +"Cartridge.Note" "Hack of Space Jockey" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "a81697b0c8bbc338ae4d0046ede0646b" @@ -11339,7 +11599,9 @@ "" "Cartridge.MD5" "a867b76098786c4091dba2fcee5084c3" -"Cartridge.Name" "Dragrace (Dragster Hack)" +"Cartridge.Name" "Dragrace (Hack)" +"Cartridge.Note" "Hack of Dragster" +"Cartridge.Rarity" "Hack" "Display.YStart" "27" "" @@ -11371,11 +11633,10 @@ "Cartridge.MD5" "a93e8ea1f565c3c1e86b708cf0dc2fa9" "Cartridge.Manufacturer" "Jess Ragan" -"Cartridge.Name" "Kabul! by Jess Ragan (Kaboom! Hack)" -"Cartridge.Note" "Hack of Kaboom! (Activision); Uses the Paddle Controllers (left only)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Kabul! (Jess Ragan) (Hack)" +"Cartridge.Note" "Hack of Kaboom!, Uses the Paddle Controllers (left only)" +"Cartridge.Rarity" "Hack" "Controller.Left" "PADDLES" -"Controller.Right" "NONE" "" "Cartridge.MD5" "a8d4a9500b18b0a067a1f272f869e094" @@ -11543,7 +11804,10 @@ "" "Cartridge.MD5" "ac0ddbcff34d064009591607746e33b8" -"Cartridge.Name" "Atlantis FH (2003) (TJ) (Atlantis Hack)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Atlantis FH (2003) (TJ) (Hack)" +"Cartridge.Note" "Hack of Atlantis" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "ab4ac994865fb16ebb85738316309457" @@ -11654,7 +11918,9 @@ "" "Cartridge.MD5" "b95a6274ca0e0c773bfdc06b4c3daa42" +"Cartridge.Manufacturer" "Paul Slocum" "Cartridge.Name" "3-D Corridor (29-03-2003) (Paul Slocum)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "b6960be26bee87d53ba4e2e71cfe772f" @@ -11707,9 +11973,10 @@ "" "Cartridge.MD5" "afe776db50e3378cd6f29c7cdd79104a" -"Cartridge.Manufacturer" "CCE / Thomas Jentzsch" -"Cartridge.Name" "Bobby is Going Home (CCE) (NTSC by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Bobby is Going Home (TJ)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "Display.YStart" "23" "Display.Height" "245" "" @@ -11806,10 +12073,9 @@ "" "Cartridge.MD5" "aeb104f1e7b166bc0cbaca0a968fde51" -"Cartridge.Manufacturer" "Rob Kudla" -"Cartridge.Name" "Ms. Pac-Man (1982) (Atari) [h1]" -"Cartridge.Note" "Hack of Ms. Pac-Man (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Ms. Pac-Man (1999) (Hack)" +"Cartridge.Note" "Hack of Ms. Pac-Man" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "aed0b7bd64cc384f85fdea33e28daf3b" @@ -11973,7 +12239,9 @@ "" "Cartridge.MD5" "b5110f55ed99d5279f18266d001a8cd5" +"Cartridge.Manufacturer" "Eckhard Stolberg" "Cartridge.Name" "Auto-mobile Demo (2001) (Eckhard Stolberg)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "b4f87ce75f7329c18301a2505fe59cd3" @@ -12028,14 +12296,12 @@ "" "Cartridge.MD5" "b2d1e63f7f22864096b7b6c154151d55" +"Cartridge.Manufacturer" "Fabrizio Zavagli" "Cartridge.Name" "Bounce! (17-03-2003) (Fabrizio Zavagli)" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" -"Cartridge.MD5" "b2b78febdbc0ac184084092c1375162a" -"Cartridge.Name" "Decathlon (1983) (Activision) (PAL) [b1]" -"" - "Cartridge.MD5" "b28b3d07ffd5f56938a922b7448730b9" "Cartridge.Name" "Greeting Cart Autobots(PD)" "" @@ -12203,9 +12469,10 @@ "" "Cartridge.MD5" "b676a9b7094e0345a76ef027091d916b" -"Cartridge.Manufacturer" "Video Gems / Thomas Jentzsch" -"Cartridge.Name" "Mission Survive (1983) (NTSC by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Mission Survive (Thomas Jentzsch)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "Console.RightDifficulty" "A" "Display.Phosphor" "YES" "" @@ -12226,9 +12493,10 @@ "" "Cartridge.MD5" "b7903268e235310dc346a164af4c7022" -"Cartridge.Manufacturer" "UA / Thomas Jentzsch" -"Cartridge.Name" "Cat Trax (PAL60 by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Cat Trax (Thomas Jentzsch) (PAL60)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Hack" "Display.Format" "PAL60" "Display.YStart" "30" "Display.Phosphor" "YES" @@ -12236,9 +12504,9 @@ "Cartridge.MD5" "b719ada17771a8d206c7976553825139" "Cartridge.Manufacturer" "Ron Corcoran" -"Cartridge.Name" "DUP Space Invaders (Ron Corcoran)" -"Cartridge.Note" "Hack of Space Invaders (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "DUP Space Invaders (Ron Corcoran) (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "b6d52a0cf53ad4216feb04147301f87d" @@ -12578,10 +12846,9 @@ "" "Cartridge.MD5" "be41463cd918daef107d249f8cde3409" -"Cartridge.Manufacturer" "Dan Hitchens and Mike Mika" -"Cartridge.Name" "Berzerk (Voice Enhanced) (Berzerk Hack)" -"Cartridge.Note" "Hack of Berzerk (Atari)" -"Cartridge.Rarity" "New Release" +"Cartridge.Name" "Berzerk (Voice Enhanced) (Hack)" +"Cartridge.Note" "Hack of Berzerk" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "bd1bd6f6b928df17a702def0302f46f4" @@ -12599,7 +12866,10 @@ "" "Cartridge.MD5" "bdb4b584ddc90c9d2ec7e21632a236b6" -"Cartridge.Name" "Nitemare at Sunshine Bowl-a-Rama (beta 1) (Atari Freak 1)" +"Cartridge.Manufacturer" "Atari Freak 1" +"Cartridge.Name" "Nitemare at Sunshine Bowl-a-Rama (Atari Freak 1) (Hack)" +"Cartridge.Note" "Hack of Pac-Man Jr." +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "bd430c2193045c68d1a20a018a976248" @@ -12613,7 +12883,10 @@ "" "Cartridge.MD5" "be1922bd8e09d74da471287e1e968653" -"Cartridge.Name" "Hangman Pacman Demo (Cropsy) (PD)" +"Cartridge.Manufacturer" "Cropsy" +"Cartridge.Name" "Hangman Pacman Demo (Cropsy) (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "bdbaeff1f7132358ea64c7be9e46c1ac" @@ -12718,7 +12991,9 @@ "" "Cartridge.MD5" "c02e1afa0671e438fd526055c556d231" -"Cartridge.Name" "A-Team, The (Atari) (Prototype) (PAL-60) [!]" +"Cartridge.Manufacturer" "Atari" +"Cartridge.Name" "A-Team (Atari) (Prototype) (PAL60)" +"Cartridge.Rarity" "Prototype" "Display.Format" "PAL60" "" @@ -12788,7 +13063,9 @@ "" "Cartridge.MD5" "c2a37f1c7603c5fd97df47d6c562abfa" +"Cartridge.Manufacturer" "Roger Williams" "Cartridge.Name" "Bar-Score Demo (2001) (Roger Williams)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "c1cb228470a87beb5f36e90ac745da26" @@ -12877,7 +13154,9 @@ "" "Cartridge.MD5" "c221607529cabc93450ef25dbac6e8d2" +"Cartridge.Manufacturer" "Eckhard Stolberg" "Cartridge.Name" "Color Test (26-09-2002) (Eckhard Stolberg)" +"Cartridge.Rarity" "Homebrew" "Console.RightDifficulty" "A" "" @@ -12995,7 +13274,9 @@ "" "Cartridge.MD5" "c3e4aa718f46291311f1cce53e6ccd79" -"Cartridge.Name" "Hangman Ghost 4letter (Hangman Hack)" +"Cartridge.Name" "Hangman Ghost 4letter (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "c3aeb796fdaf9429e8cd6af6346f337e" @@ -13152,7 +13433,10 @@ "" "Cartridge.MD5" "c58708c09ccb61625cda9d15ddcd8be6" -"Cartridge.Name" "NOIZ Invaders by SPIKE the Percussionist (2002) (Space Invaders Hack)" +"Cartridge.Manufacturer" "SPIKE the Percussionist" +"Cartridge.Name" "NOIZ Invaders (SPIKE) (2002) (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "c569e57dca93d3bee115a49923057fd7" @@ -13646,7 +13930,9 @@ "" "Cartridge.MD5" "ce17325834bf8b0a0d0d8de08478d436" -"Cartridge.Name" "Boring Freeway (Freeway Hack)" +"Cartridge.Name" "Boring Freeway (Hack)" +"Cartridge.Note" "Hack of Freeway" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "cd88ef1736497288c4533bcca339f881" @@ -13662,7 +13948,9 @@ "" "Cartridge.MD5" "cd032ab6764b55438a7b0bfb5e78595a" -"Cartridge.Name" "Hangman Pac-Man 4letter (Hangman Hack)" +"Cartridge.Name" "Hangman Pac-Man 4letter (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "ccd6ce508eee4b3fca67212833edcd85" @@ -13677,7 +13965,9 @@ "" "Cartridge.MD5" "cd34b3b3ef9e485201e841ba71beb253" +"Cartridge.Manufacturer" "Bradford W. Mott" "Cartridge.Name" "Hit HMOVE At Various Cycles After WSYNC Test (Bradford W. Mott) (1998) (PD)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "cd139ae6d09f3665ad09eb79da3f9e49" @@ -13837,9 +14127,10 @@ "" "Cartridge.MD5" "d0a379946ed77b1b126230ca68461333" -"Cartridge.Name" "Atari Invaders by Ataripoll (Space Invaders Hack)" -"Cartridge.Note" "Hack of Space Invaders (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Manufacturer" "Ataripoll" +"Cartridge.Name" "Atari Invaders (Ataripoll) (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "cf3c2725f736d4bcb84ad6f42de62a41" @@ -13908,9 +14199,9 @@ "Cartridge.MD5" "cff9950d4e650094f65f40d179a9882d" "Cartridge.Manufacturer" "Paul Slocum" -"Cartridge.Name" "Mr. Roboto by Paul Slocum (Berzerk Hack)" -"Cartridge.Note" "Hack of Berzerk (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Mr. Roboto (Paul Slocum) (Hack)" +"Cartridge.Note" "Hack of Berzerk" +"Cartridge.Rarity" "Hack" "Display.Phosphor" "YES" "" @@ -14026,13 +14317,6 @@ "Cartridge.Rarity" "New Release" "" -"Cartridge.MD5" "d1fc4cf675c9b49fb7deb792f2f3a7a5" -"Cartridge.Manufacturer" "Atari" -"Cartridge.ModelNo" "CX26120" -"Cartridge.Name" "Defender II (1984) (Atari) [b1]" -"Cartridge.Rarity" "Rare" -"" - "Cartridge.MD5" "d1b4075925e8d3031a7616d2f02fdd1f" "Cartridge.Name" "Demo Image Series #7 - Two Marios (27-02-2003) (AD)" "" @@ -14114,7 +14398,10 @@ "" "Cartridge.MD5" "d2901c34bb6496bb96c7bc78a9e6142a" -"Cartridge.Name" "Fish Revenge (2003) (Greg Zumwalt) (Space Invaders Hack)" +"Cartridge.Manufacturer" "Greg Zumwalt" +"Cartridge.Name" "Fish Revenge (2003) (Greg Zumwalt) (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "d2c4f8a4a98a905a9deef3ba7380ed64" @@ -14140,7 +14427,9 @@ "" "Cartridge.MD5" "dafc3945677ccc322ce323d1e9930beb" -"Cartridge.Name" "A-Team, The (Atari) (Prototype) (PAL) [!]" +"Cartridge.Manufacturer" "Atari" +"Cartridge.Name" "A-Team (Atari) (Prototype) (PAL)" +"Cartridge.Rarity" "Prototype" "" "Cartridge.MD5" "d573089534ca596e64efef474be7b6bc" @@ -14206,7 +14495,8 @@ "" "Cartridge.MD5" "d36308387241e98f813646f346e7f9f7" -"Cartridge.Name" "Ghostbuster 2 (PAL) (King Atari)" +"Cartridge.Manufacturer" "King Atari" +"Cartridge.Name" "Ghostbuster 2 (King Atari) (PAL)" "Display.Phosphor" "YES" "" @@ -14318,7 +14608,7 @@ "" "Cartridge.MD5" "da0fb2a484d0d2d8f79d6e063c94063d" -"Cartridge.Name" "Air Raiders (1982) (Mattel) [a1][!]" +"Cartridge.Name" "Air Raiders (1982) (Unknown) [a]" "" "Cartridge.MD5" "d61629bbbe035f45552e31cef7d591b2" @@ -14330,7 +14620,10 @@ "" "Cartridge.MD5" "d57eb282d7540051bc9b5427cf966f03" -"Cartridge.Name" "Custer's Viagra (Atari Troll) (Custer's Revenge Hack)" +"Cartridge.Manufacturer" "Atari Troll" +"Cartridge.Name" "Custer's Viagra (Atari Troll) (Hack)" +"Cartridge.Note" "Hack of Custer's Revenge" +"Cartridge.Rarity" "Hack" "Display.YStart" "32" "" @@ -14462,11 +14755,16 @@ "" "Cartridge.MD5" "d90205e29bb73a4cdf28ea7662ba0c3c" +"Cartridge.Manufacturer" "Thomas Jentzsch" "Cartridge.Name" "Boulderdash Demo (Brighter Version) (09-12-2002) (TJ)" +"Cartridge.Rarity" "Homebrew" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "d82c8a58098a6b46c5b81c16180354d1" -"Cartridge.Name" "Climber 5 (Prototype) (30-10-2002) (Dennis Debro)" +"Cartridge.Manufacturer" "Dennis Debro" +"Cartridge.Name" "Climber 5 (30-10-2002) (Dennis Debro) (Prototype)" +"Cartridge.Rarity" "Prototype" "Display.YStart" "28" "Emulation.HmoveBlanks" "NO" "" @@ -14597,7 +14895,9 @@ "" "Cartridge.MD5" "dac38b4dd3da73bb7b2e9d70c61d2b7c" -"Cartridge.Name" "Hangman Monkey Biglist3 (Hangman Hack)" +"Cartridge.Name" "Hangman Monkey Biglist3 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "da732c57697ad7d7af414998fa527e75" @@ -14662,9 +14962,9 @@ "Cartridge.MD5" "daef7d8e5a09981c4aa81573d4dbb380" "Cartridge.Manufacturer" "Adam Thornton" -"Cartridge.Name" "Lord of the Rings - Fellowship of the Ring by Adam Thornton (Dark Mage Hack) (PD)" -"Cartridge.Note" "Hack of Dark Mage by SuperCharger" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Lord of the Rings (Adam Thornton) (Hack)" +"Cartridge.Note" "Hack of Dark Mage" +"Cartridge.Rarity" "Hack" "Display.Phosphor" "YES" "" @@ -14675,7 +14975,10 @@ "" "Cartridge.MD5" "e2846af3e4d172b251ab77cbdd01761e" -"Cartridge.Name" "Adventure Plus (2003) (Steve Engelhardt) (Adventure Hack)" +"Cartridge.Manufacturer" "Steve Engelhardt" +"Cartridge.Name" "Adventure Plus (2003) (Steve Engelhardt) (Hack)" +"Cartridge.Note" "Hack of Adventure" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "e1a51690792838c5c687da80cd764d78" @@ -14719,8 +15022,8 @@ "Cartridge.MD5" "dba270850ae997969a18ee0001675821" "Cartridge.Manufacturer" "Greg Troutman" -"Cartridge.Name" "Dark Mage (4K) (Greg Troutman) (PD)" -"Cartridge.Rarity" "New Release" +"Cartridge.Name" "Dark Mage (Greg Troutman) (PD) (4K)" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -14805,7 +15108,9 @@ "" "Cartridge.MD5" "dca941dab5c6f859b71883b13ade9744" -"Cartridge.Name" "Hangman Pac-Man Biglist2 (Hangman Hack)" +"Cartridge.Name" "Hangman Pac-Man Biglist2 (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "dc81c4805bf23959fcf2c649700b82bf" @@ -14898,7 +15203,10 @@ "" "Cartridge.MD5" "dda23757407c4e217f64962c87ad0c82" -"Cartridge.Name" "Nitemare at Sunshine Bowl-a-Rama (beta 2) (Atari Freak 1)" +"Cartridge.Manufacturer" "Atari Freak 1" +"Cartridge.Name" "Nitemare at Sunshine Bowl-a-Rama (Atari Freak 1) (Hack) [a]" +"Cartridge.Note" "Hack of Pac-Man Jr." +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "dd92d6ad50976f881d86b52d38616118" @@ -14955,8 +15263,9 @@ "Cartridge.MD5" "df40af244a8d68b492bfba9e97dea4d6" "Cartridge.Manufacturer" "Franklin Cruz" -"Cartridge.Name" "Asteroids 2 (Asteroids Hack)" -"Cartridge.Note" "Hack of Asteroids (Atari)" +"Cartridge.Name" "Asteroids 2 (Franlin Cruz) (Hack)" +"Cartridge.Note" "Hack of Asteroids" +"Cartridge.Rarity" "Hack" "Display.Phosphor" "YES" "" @@ -15000,9 +15309,9 @@ "Cartridge.MD5" "df5cc5cccdc140eb7107f5b8adfacda1" "Cartridge.Manufacturer" "Cracker Jack Productions" -"Cartridge.Name" "Lumberman by Cracker Jack Productions (Pac-Man Hack)" -"Cartridge.Note" "Hack of Pac-Man (1981) (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Lumberman (Cracker Jack) (Hack)" +"Cartridge.Note" "Hack of Pac-Man" +"Cartridge.Rarity" "Hack" "Display.YStart" "33" "" @@ -15210,7 +15519,10 @@ "" "Cartridge.MD5" "e1d5c8213e82820128fa9c4775f1e166" -"Cartridge.Name" "Jungle King (2003) (Jess Ragan) (Jungle Hunt Hack)" +"Cartridge.Manufacturer" "Jess Ragan" +"Cartridge.Name" "Jungle King (2003) (Jess Ragan) (Hack)" +"Cartridge.Note" "Hack of Jungle Hunt" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "e1e09e2f280e8e142121a377d0dc1b46" @@ -15325,7 +15637,9 @@ "" "Cartridge.MD5" "e923001015bedd7901569f035d9c592c" -"Cartridge.Name" "Adventure II (Adventure Hack)" +"Cartridge.Name" "Adventure II (Hack)" +"Cartridge.Note" "Hack of Adventure" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "e5fcc62e1d73706be7b895e887e90f84" @@ -15338,7 +15652,9 @@ "" "Cartridge.MD5" "e39843c56b7a4a08b18fa7949ec3ee6b" -"Cartridge.Name" "Joshua Invaders (Space Invaders Hack)" +"Cartridge.Name" "Joshua Invaders (Hack)" +"Cartridge.Note" "Hack of Space Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "e37c8055d70979af354251ebe9f1b7dd" @@ -15373,6 +15689,7 @@ "" "Cartridge.MD5" "e4e9125a8741977583776729359614e1" +"Cartridge.Manufacturer" "SnailSoft" "Cartridge.Name" "Comitoid beta 4 (SnailSoft)" "" @@ -15438,7 +15755,10 @@ "" "Cartridge.MD5" "e4b12deaafd1dbf5ac31afe4b8e9c233" -"Cartridge.Name" "Lord of the Rings - Fellowship of the Ring by Adam Thornton (Dark Mage Hack) (PD) [a1]" +"Cartridge.Manufacturer" "Adam Thornton" +"Cartridge.Name" "Lord of the Rings (Adam Thornton) (Hack) [a]" +"Cartridge.Note" "Hack of Dark Mage" +"Cartridge.Rarity" "Hack" "Display.Phosphor" "YES" "" @@ -15449,7 +15769,10 @@ "" "Cartridge.MD5" "e4d41f2d59a56a9d917038682b8e0b8c" -"Cartridge.Name" "Kiss Meets Pacman (Cody Pittman) (PD)" +"Cartridge.Manufacturer" "Cody Pittman" +"Cartridge.Name" "Kiss Meets Pacman (Cody Pittman) (Hack)" +"Cartridge.Note" "Hack of Pac-Man" +"Cartridge.Rarity" "Hack" "Display.YStart" "33" "" @@ -15547,7 +15870,9 @@ "" "Cartridge.MD5" "e643aaec9a9e1c8ab7fe1eae90bc77d7" +"Cartridge.Manufacturer" "Roger Williams" "Cartridge.Name" "Asymmetric Playfield (Roger Williams)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "e61210293b14c9c4ecc91705072c6a7e" @@ -15571,9 +15896,9 @@ "Cartridge.MD5" "e63efdfda9a4003dcd77a854a781a06a" "Cartridge.Manufacturer" "Paul Slocum" -"Cartridge.Name" "Combat Rock (PD) [a1]" -"Cartridge.Note" "Hack of Combat (1977) (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Combat Rock (PD) (Hack) [a]" +"Cartridge.Note" "Hack of Combat" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "e63a87c231ee9a506f9599aa4ef7dfb9" @@ -15600,9 +15925,10 @@ "" "Cartridge.MD5" "e6e5bb0e4f4350da573023256268313d" -"Cartridge.Manufacturer" "Ariola / Thomas Jentzsch" -"Cartridge.Name" "Missile Control (AKA Raketen-Angriff) (Ariola) (NTSC by Thomas Jentzsch)" -"Cartridge.Rarity" "New Release (Video Format Conversion)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Missile Control (Thomas Jentzsch)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "e6508b878145187b87b9cded097293e7" @@ -15686,7 +16012,9 @@ "" "Cartridge.MD5" "e8e7b9bdf4bf04930c2bcaa0278ee637" -"Cartridge.Name" "Boring Taz (Taz Hack)" +"Cartridge.Name" "Boring Taz (Hack)" +"Cartridge.Note" "Hack of Taz" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "e80a4026d29777c3c7993fbfaee8920f" @@ -15738,7 +16066,9 @@ "" "Cartridge.MD5" "e8f7679359c4f532f5d5e93af7d8a985" -"Cartridge.Name" "Hangman Invader Original Words (Hangman Hack)" +"Cartridge.Name" "Hangman Invader Original Words (Hack)" +"Cartridge.Note" "Hack of Hangman" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "e908611d99890733be31733a979c62d8" @@ -15768,7 +16098,9 @@ "" "Cartridge.MD5" "e9be3e8e4a7e73dd63ed4235a3a1a25f" -"Cartridge.Name" "MMetall (Miniature Golf Hack)" +"Cartridge.Name" "MMetall (Hack)" +"Cartridge.Note" "Hack of Miniature Golf" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "e957eb4612d6bd5940d3492dfa749668" @@ -15861,7 +16193,7 @@ "" "Cartridge.MD5" "f066bea7ab0a37b83c83c924a87c5b67" -"Cartridge.Name" "Air Raiders (1982) (Mattel) [h1]" +"Cartridge.Name" "Air Raiders (1982) (Unknown)" "" "Cartridge.MD5" "ee6665683ebdb539e89ba620981cb0f6" @@ -16084,7 +16416,10 @@ "" "Cartridge.MD5" "eeb92f3f46df841487d1504f2896d61a" -"Cartridge.Name" "Corys Adventure (Cody Pittman) (PD)" +"Cartridge.Manufacturer" "Cody Pittman" +"Cartridge.Name" "Corys Adventure (Cody Pittman) (Hack)" +"Cartridge.Note" "Hack of Pac-Man" +"Cartridge.Rarity" "Hack" "Display.YStart" "33" "" @@ -16128,11 +16463,15 @@ "" "Cartridge.MD5" "ef66af190840871409fe1702d2483554" -"Cartridge.Name" "DiscoTech (12-02-2003) (Andrew Davie, Paul Slocum And Christopher Tumber)" +"Cartridge.Manufacturer" "Andrew Davie, Paul Slocum, Christopher Tumber" +"Cartridge.Name" "DiscoTech (12-02-2003) (Andrew Davie)" "" "Cartridge.MD5" "ef263d40a23483ab339cac44d9515a56" -"Cartridge.Name" "Fatal Run (NTSC Conversion) (TJ)" +"Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Fatal Run (TJ)" +"Cartridge.Note" "NTSC Conversion" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "eed9eaf1a0b6a2b9bc4c8032cb43e3fb" @@ -16174,9 +16513,9 @@ "Cartridge.MD5" "efa1098c7d091b940c2543abe372f036" "Cartridge.Manufacturer" "Scott Stilphen" -"Cartridge.Name" "E.T. The Extra-Terrestrial by Scott Stilphen (Pits Hack)" -"Cartridge.Note" "Hack of E.T. The Extra-Terrestrial (Atari)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "E.T. The Extra-Terrestrial (Scott Stilphen) (Hack)" +"Cartridge.Note" "Hack of E.T. The Extra-Terrestrial" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "ef71e9fb0d8d477226d8d42261fbf0a7" @@ -16263,7 +16602,9 @@ "" "Cartridge.MD5" "f0cacae1d1b79ee92f0dc035f42e0560" -"Cartridge.Name" "Boring Donkey Kong (Donkey Kong Hack)" +"Cartridge.Name" "Boring Donkey Kong (Hack)" +"Cartridge.Note" "Hack of Donkey Kong" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "f0a6e99f5875891246c3dbecbf2d2cea" @@ -16453,9 +16794,9 @@ "Cartridge.MD5" "f4204fc92d17ed4cb567c40361ad58f1" "Cartridge.Manufacturer" "Inky" -"Cartridge.Name" "Beanie Baby Bash by Inky (Beany Bopper Hack)" -"Cartridge.Note" "Hack of Beany Bopper (1982) (20th Century Fox)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Beanie Baby Bash (Inky) (Hack)" +"Cartridge.Note" "Hack of Beany Bopper" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "f34f08e5eb96e500e851a80be3277a56" @@ -16553,10 +16894,10 @@ "" "Cartridge.MD5" "f473f99e47d4026a7a571184922ebf04" -"Cartridge.Manufacturer" "Philp R. Frey" -"Cartridge.Name" "Donkey Claus by Philip R. Frey (Donkey Kong Hack)" -"Cartridge.Note" "Hack of Donkey Kong (Coleco)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Manufacturer" "Philip R. Frey" +"Cartridge.Name" "Donkey Claus (Philip R. Frey) (Hack)" +"Cartridge.Note" "Hack of Donkey Kong" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "f48022230bb774a7f22184b48a3385af" @@ -16661,7 +17002,9 @@ "" "Cartridge.MD5" "f6daebc0424fa0f8d9aaf26c86df50f4" +"Cartridge.Manufacturer" "Brian Watson" "Cartridge.Name" "Color Tweaker (V1.0) (2001) (B. Watson)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "f6a282374441012b01714e19699fc62a" @@ -17041,9 +17384,9 @@ "Cartridge.MD5" "fa7e11a3dbea4365975cd2f094e61d25" "Cartridge.Manufacturer" "Tim Snider" -"Cartridge.Name" "Mystery Science Theater 2600 by Tim Snider (Megamania Hack)" -"Cartridge.Note" "Hack of Megamania (Activision)" -"Cartridge.Rarity" "New Release (Hack)" +"Cartridge.Name" "Mystery Science Theater 2600 (1999) (Tim Snider) (Hack)" +"Cartridge.Note" "Hack of Megamania" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "fa6fe97a10efb9e74c0b5a816e6e1958" @@ -17166,7 +17509,9 @@ "" "Cartridge.MD5" "fbfebee9c14694719e3eda4854dc42ee" +"Cartridge.Manufacturer" "Jake Patterson" "Cartridge.Name" "Baubles 3 (Jake Patterson) (PD)" +"Cartridge.Rarity" "Homebrew" "" "Cartridge.MD5" "fc92d74f073a44bc6e46a3b3fa8256a2" @@ -17208,7 +17553,9 @@ "" "Cartridge.MD5" "fcea12625c071ddc49f4e409f4038c60" +"Cartridge.Manufacturer" "Fabrizio Zavagli" "Cartridge.Name" "Balls! (16-09-2002) (Fabrizio Zavagli)" +"Cartridge.Rarity" "Homebrew" "Display.Phosphor" "YES" "" @@ -17310,7 +17657,10 @@ "" "Cartridge.MD5" "fe9ae625d924b54c9f8a14ac9a0f6c6d" -"Cartridge.Name" "High Bid! (BG Dodson) (Pepsi Invaders Hack)" +"Cartridge.Manufacturer" "BG Dodson" +"Cartridge.Name" "High Bid! (BG Dodson) (Hack)" +"Cartridge.Note" "Hack of Pepsi Invaders" +"Cartridge.Rarity" "Hack" "" "Cartridge.MD5" "fe870018332a0221eb59fb18b0c6bccc" diff --git a/stella/src/gui/Dialog.cxx b/stella/src/gui/Dialog.cxx index b814e7072..bc90fe7a0 100644 --- a/stella/src/gui/Dialog.cxx +++ b/stella/src/gui/Dialog.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Dialog.cxx,v 1.57 2008-02-06 13:45:23 stephena Exp $ +// $Id: Dialog.cxx,v 1.58 2008-02-19 12:33:07 stephena Exp $ // // Based on code from ScummVM - Scumm Interpreter // Copyright (C) 2002-2004 The ScummVM project @@ -250,6 +250,7 @@ void Dialog::drawDialog() // Tell the framebuffer this area is dirty fb.addDirtyRect(_x, _y, _w, _h); +//cerr << "dirty: x = " << _x << ", y = " << _y << ", w = " << _w << ", h = " << _h << endl; _dirty = false; }