diff --git a/Announce.txt b/Announce.txt index 872455817..62d35df94 100644 --- a/Announce.txt +++ b/Announce.txt @@ -9,7 +9,7 @@ SSSS ttt eeeee llll llll aaaaa =========================================================================== - Release 3.9.2 for Linux, MacOSX and Windows + Release 3.9.3 for Linux, MacOSX and Windows =========================================================================== The Atari 2600 Video Computer System (VCS), introduced in 1977, was the @@ -21,28 +21,28 @@ all of your favourite Atari 2600 games again! Stella was originally developed for Linux by Bradford W. Mott, however, it has been ported to a number of other platforms and is currently maintained by Stephen Anthony. -This is the 3.9.2 release of Stella for Linux, Mac OSX and Windows. The +This is the 3.9.3 release of Stella for Linux, Mac OSX and Windows. The distributions currently available are: * Binaries for Windows XP/Vista/7/8 : - Stella-3.9.2-win32.exe (32-bit EXE installer) - Stella-3.9.2-x64.exe (64-bit EXE installer) - Stella-3.9.2-windows.zip (32/64 bit versions) + Stella-3.9.3-win32.exe (32-bit EXE installer) + Stella-3.9.3-x64.exe (64-bit EXE installer) + Stella-3.9.3-windows.zip (32/64 bit versions) * Binary distribution for MacOS X 32-bit & 64-bit : - Stella-3.9.2-macosx.dmg (32-bit Universal Binary) - Stella-3.9.2_intel-macosx.dmg (32/64-bit Intel/OSX 10.6+) + Stella-3.9.3-macosx.dmg (32-bit Universal Binary) + Stella-3.9.3_intel-macosx.dmg (32/64-bit Intel/OSX 10.6+) * Binary distribution in 32-bit & 64-bit Ubuntu DEB format : - stella_3.9.2-1_i386.deb - stella_3.9.2-1_amd64.deb + stella_3.9.3-1_i386.deb + stella_3.9.3-1_amd64.deb * Binary distribution in 32-bit & 64-bit RPM format : - stella-3.9.2-2.i386.rpm - stella-3.9.2-2.x86_64.rpm + stella-3.9.3-2.i386.rpm + stella-3.9.3-2.x86_64.rpm * Source code distribution for all platforms : - stella-3.9.2-src.tar.gz + stella-3.9.3-src.tar.gz Distribution Site diff --git a/Changes.txt b/Changes.txt index 9030e51da..ac2056905 100644 --- a/Changes.txt +++ b/Changes.txt @@ -12,7 +12,7 @@ Release History =========================================================================== -3.9.2 to 3.9.3: (xxxx xx, 2013) +3.9.3 to 4.0: (xxxx xx, 2014) * Added 'savesnap' debugger prompt command, and also associated context menu item to the debugger TIA output area. This saves the @@ -23,6 +23,18 @@ -Have fun! +3.9.2 to 3.9.3: (January 20, 2014) + + * Added bankswitch schemes BF, BFSC, DF, DFSC and 4KSC, thanks to + RevEng and CPUWIZ of AtariAge. + + * Updated ROM properties for several ROMs, thanks to Omegamatrix of + AtariAge. + + * Fixed program crash when specifying a bankswitch type that Stella + didn't recognize; an error message is now displayed. + + 3.9.1 to 3.9.2: (August 31, 2013) * Improved parsing of the DASM lst file for the debugger disassembly; diff --git a/debian/changelog b/debian/changelog index fe91d392b..9ebcbd5d3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +stella (3.9.3-1) stable; urgency=high + + * Version 3.9.3 release + + -- Stephen Anthony Sat, 18 Jan 2014 15:16:30 -0330 + + stella (3.9.2-1) stable; urgency=high * Version 3.9.2 release diff --git a/docs/index.html b/docs/index.html index 72cb16287..3a7ec1137 100644 --- a/docs/index.html +++ b/docs/index.html @@ -10,7 +10,7 @@

A multi-platform Atari 2600 VCS emulator

-

Release 3.9.2

+

Release 3.9.3



User's Guide

@@ -54,7 +54,7 @@


-
February 1999 - August 2013
+
February 1999 - January 2014
The Stella Team
Stella Homepage
@@ -3221,9 +3221,14 @@ Ms Pac-Man (Stella extended codes): 3F 512K Tigervision 4A50 64K 4A50 + ram 4K 4K Atari + 4KSC CPUWIZ 4K + ram AR Supercharger + BF CPUWIZ 256K + BFSC CPUWIZ 256K + ram CM ¹Spectravideo CompuMate CV Commavid extra ram + DF CPUWIZ 128K + DFSC CPUWIZ 128K + ram DPC Pitfall II DPC+Enhanced DPC E0 8K Parker Bros diff --git a/src/emucore/Cart.cxx b/src/emucore/Cart.cxx index 1450f6711..0a7b729b5 100644 --- a/src/emucore/Cart.cxx +++ b/src/emucore/Cart.cxx @@ -248,9 +248,15 @@ Cartridge* Cartridge::create(const uInt8* image, uInt32 size, string& md5, else if(type == "X07") cartridge = new CartridgeX07(image, size, settings); else if(dtype == "WRONG_SIZE") - cerr << "ERROR: Invalid cartridge size for type " << type << " ..." << endl; + { + string err = "Invalid cart size for type '" + type + "'"; + throw err.c_str(); + } else - cerr << "ERROR: Invalid cartridge type " << type << " ..." << endl; + { + string err = "Invalid cart type '" + type + "'"; + throw err.c_str(); + } if(size < 1024) buf << " (" << size << "B) "; diff --git a/src/emucore/DefProps.hxx b/src/emucore/DefProps.hxx index 873189995..6c9e84bad 100644 --- a/src/emucore/DefProps.hxx +++ b/src/emucore/DefProps.hxx @@ -27,7 +27,7 @@ regenerated and the application recompiled. */ -#define DEF_PROPS_SIZE 3238 +#define DEF_PROPS_SIZE 3250 static const char* DefProps[DEF_PROPS_SIZE][21] = { { "000509d1ed2b8d30a9d94be1b3b5febb", "Greg Zumwalt", "", "Jungle Jane (2003) (Greg Zumwalt) (Hack)", "Hack of Pitfall!", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -323,6 +323,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "16cb43492987d2f32b423817cdaaf7c4", "Atari, Larry Kaplan - Sears", "CX2602 - 99802, 6-99802, 49-75102", "Air-Sea Battle (1977) (Atari)", "AKA Target Fun (Anti-Aircraft)", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "16cc6d1b4ddce51c767a1ba8e5ff196c", "", "", "Big - Move This Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, { "16e04823887c547dc24bc70dff693df4", "Atari", "CX26163P", "Tennis (32 in 1) (1988) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "16ee443c990215f61f7dd1e55a0d2256", "Spectravideo, David Lubar", "SA-218C", "Bumper Bash (1983) (Spectravideo) (PAL)", "", "", "", "", "", "", "", "", "PADDLES_IAXIS", "", "", "", "", "54", "", "", "" }, { "16f494f20af5dc803bc35939ef924020", "Mark De Smet", "", "Video Simon (Mark De Smet)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "16fbb36a6124567405a235821e8f69ee", "", "", "Star Fire (28-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "170e7589a48739cfb9cc782cbb0fe25a", "M Network, Hal Finney - INTV", "MT5666", "Astroblast (1982) (M Network) [fixed]", "Can also use left joystick", "Uncommon", "", "", "", "", "", "", "PADDLES", "", "YES", "", "", "", "", "", "" }, @@ -380,7 +381,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "1bb91bae919ddbd655fa25c54ea6f532", "Suntek", "SS-026", "Treasure Island (Suntek) (PAL)", "AKA Treasure Discovery", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1bc2427ac9b032a52fe527c7b26ce22c", "Intellivision Productions - M Network, Bruce Pedersen, Larry Zwick", "MT5860", "Sea Battle (1983) (M Network)", "High Seas", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1bef389e3dd2d4ca4f2f60d42c932509", "Dimax - Sinmax", "SM8001", "Space Robot (1983) (Dimax - Sinmax) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, - { "1bf503c724001b09be79c515ecfcbd03", "Spectravideo, David Lubar", "SA-218", "Bumper Bash (1983) (Spectravideo) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "" }, + { "1bf503c724001b09be79c515ecfcbd03", "", "", "Bumper Bash (Unknown) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "" }, { "1c3f3133a3e5b023c77ecba94fd65995", "CCE", "C-830", "Planet Patrol (1983) (CCE) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1c5796d277d9e4df3f6648f7012884c4", "Quelle", "715.853 5", "Wachroboter jagt Jupy (Quelle) (PAL)", "AKA Keystone Kapers", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1c6eb740d3c485766cade566abab8208", "Atari, Michael Kosaka, Peter C. Niday, Robert Vieira", "CX26110", "Crystal Castles (1984) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -471,7 +472,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "2365e1534d67f94d8670394ab99150ce", "Thomas Jentzsch", "", "Missile Command (CX-80 Trackball) (2002) (TJ)", "Uses CX-80 Trackball Controller", "Homebrew", "", "", "", "", "", "", "TRACKBALL80", "", "", "", "", "", "", "YES", "" }, { "23d445ea19a18fb78d5035878d9fb649", "CBS Electronics, Sylvia Day, Henry Will IV", "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", "", "" }, + { "23fad5a125bcd4463701c8ad8a0043a9", "CCE", "C-840", "Stone Age (1983) (CCE)", "Uses the Joystick Controllers (swapped)", "", "", "", "A", "A", "", "YES", "", "", "", "", "", "26", "220", "YES", "" }, { "240bfbac5163af4df5ae713985386f92", "Activision, Steve Cartwright", "AX-022", "Seaquest (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2432f33fd278dea5fe6ae94073627fcc", "CBS Electronics, Tom DiDomenico", "4L2477, 4L2482, 4L2485, 4L4171", "Blueprint (1983) (CBS Electronics) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, { "24385ba7f5109fbe76aadc0a375de573", "CCE", "", "Xevious (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, @@ -504,6 +505,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "25d4be3309b89583c6b39d9f93bf654f", "Activision, Bob Whitehead", "AX-015, AX-015-04", "Chopper Command (1982) (Activision) (16K)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "25e73efb9a6edf119114718bd2f646ba", "Atari, Suki Lee", "CX26113", "Miss Piggy's Wedding (1983) (Atari) (Prototype) [a]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "24", "", "", "" }, { "25f2e760cd7f56b88aac88d63757d41b", "Activision, Bob Whitehead - Ariola", "EAG-002, EAG-002-04I, PAG-002 - 711 002-715", "Boxing (1980) (Activision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "25f879ff678130fea615ac418e7943f1", "Activision, Garry Kitchen", "EAX-025", "Keystone Kapers (1983) (Activision) (SECAM)", "", "", "", "", "", "", "", "", "", "", "", "", "SECAM", "", "", "", "" }, { "25f9cf703575c5d63048c222f5463758", "", "", "Multi-Sprite Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1057,6 +1059,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "504688d49a41bf03d8a955512609f3f2", "Thomas Jentzsch", "", "SWOOPS! (TJ)", "Uses the Joystick (L) and Paddle (R) Controllers", "Homebrew", "", "", "", "", "", "", "", "PADDLES", "", "", "", "30", "", "", "" }, { "50568c80ac61cab789d9923c9b05b68e", "Ebivision", "", "Merlin's Walls - Standard Edition (1999) (Ebivision)", "Image rotated 90 degrees CW", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5069fecbe4706371f17737b0357cfa68", "Apollo - Games by Apollo, Steve Stringfellow", "AP-2005", "Shark Attack (1982) (Apollo) (PAL)", "AKA Lochjaw", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5079bfbc7b8f5770f84215ed2e3bdd1b", "Omegamatrix (2012)", "", "Genesis Button Tester", "", "Homebrew", "", "", "", "", "", "", "GENESIS", "GENESIS", "", "", "", "", "", "", "" }, { "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 - Teldec", "7-005", "Marauder (1982) (Tigervision) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1202,6 +1205,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "5ce98f22ade915108860424d8dde0d35", "", "", "Hangman Man Biglist3 (Hack)", "Hack of Hangman", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5d0e8a25cbd23e76f843c75a86b7e15b", "Coleco, Ed Temple", "", "Cabbage Patch Kids (09-07-1984) (Coleco) (Prototype)", "Adventures in the Park", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5d132d121aabc5235dd039dfc46aa024", "", "", "Basketball (208 in 1) (Unknown) (PAL) (Hack)", "Console ports are swapped", "Hack", "", "", "", "", "", "YES", "", "", "", "", "", "", "", "", "" }, + { "5d25df9dc2cde746ceac48e834cf84a7", "Activision, Steve 'Jessica' Kitchen", "EAZ-033", "Space Shuttle (1983) (Activision) (SECAM)", "", "", "", "FE", "", "", "", "", "", "", "", "", "SECAM", "", "", "", "" }, { "5d2cc33ca798783dee435eb29debf6d6", "Activision, Mike Riedel", "AK-043-04", "Commando (1988) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5d799bfa9e1e7b6224877162accada0d", "Spectravision, Spectravideo, David Lubar", "SA-206", "Challenge of.... Nexar, The (1982) (Spectravision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5d8f1ab95362acdf3426d572a6301bf2", "Thomas Jentzsch", "", "SWOOPS! (v0.96) (TJ) (PAL)", "Uses the Joystick (L) and Paddle (R) Controllers", "Homebrew", "", "", "", "", "", "", "", "PADDLES", "", "", "", "30", "", "", "" }, @@ -1304,6 +1308,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "64ca518905311d2d9aeb56273f6caa04", "CCE", "", "Cubo Magico (CCE)", "AKA Cubicolor", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "64d43859258dc8ca54949e9ff4174202", "Thomas Jentzsch", "", "Lilly Adventure (Thomas Jentzsch)", "NTSC Conversion", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "230", "", "" }, { "64fab9d15df937915b1c392fc119b83b", "Atari, Jerome Domurat, Howard Scott Warshaw", "CX26119", "Saboteur (05-20-1983) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "650df778c6ce22d3fd1a7c33c565bcc3", "Atari - GCC, Betty Ryan Tylko, Douglas B. Macrae", "CX2694", "Pole Position (1983) (Atari)", "Genesis controller (B is high gear, C is low gear, left difficulty switch swaps gear buttons)", "Hack of Pole Position", "", "", "", "", "", "", "GENESIS", "", "", "", "", "", "", "", "" }, { "651d2b6743a3a18b426bce2c881af212", "CCE", "C-812", "Pac Man (1983) (CCE) [a]", "", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "" }, { "6522717cfd75d1dba252cbde76992090", "Home Vision - Gem International Corp.", "VCS83102", "War 2000 (1983) (Home Vision) (PAL)", "AKA Astrowar", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6538e454b0498ad2befe1ef0f87815c0", "Joe Grand", "", "SCSIcide (v1.2) (2001) (Joe Grand)", "", "New Release", "", "", "", "", "", "", "PADDLES_IAXDR", "", "", "", "", "", "", "", "" }, @@ -2039,6 +2044,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "9f93734c68f6479eb022cab40814142e", "", "", "Push (V0.07) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9f9ee0f60c119c831e80694b6678ca1a", "Jeffry Johnston", "", "Radial Pong - Version 8 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9fc2d1627dcdd8925f4c042e38eb0bc9", "Atari - GCC, Mike Feinstein, John Allred", "CX2688, CX2688P", "Jungle Hunt (1983) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "E68E28752D3C54EDD3CCDA42C27E320C", "Xonox - K-Tel Software, Anthony R. Henderson", "99007, 6240", "Tomarc the Barbarian (1983) (Xonox)", "Genesis controller (B is jump and throw, C switches between players)", "Hack of Tomarc the Barbarian", "", "", "", "", "", "", "GENESIS", "", "", "", "", "", "", "", "" }, { "a0028f057d496f22b549fd8deecc6f78", "Joe Grand", "", "SCSIcide Pre-release 6 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a00ec89d22fcc0c1a85bb542ddcb1178", "CCE", "C-1012", "Phoenix (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a00ee0aed5c8979add4c170f5322c706", "Barry Laws Jr.", "", "Egghead (Barry Laws Jr.) (Hack)", "Hack of Pac-Man", "Hack", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "" }, @@ -2164,7 +2170,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "a995b6cbdb1f0433abc74050808590e6", "Imagic, Rob Fulop, Bob Smith", "720106-1A, IA3600", "Riddle of the Sphinx (1982) (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a9cb638cd2cb2e8e0643d7a67db4281c", "M Network, Larry Zwick - INTV", "MT5861", "Air Raiders (1982) (M Network)", "AKA Air Battle", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a9e3c23599c0d77151602f8e31daf879", "", "", "Kung Fu Master (Genesis)", "Genesis controller (C is extra kick modes)", "Hack of Kung Fu Master", "", "", "", "", "", "", "GENESIS", "", "", "", "", "", "", "", "" }, - { "aa1c41f86ec44c0a44eb64c332ce08af", "Spectravideo, David Lubar", "SA-218", "Bumper Bash (1983) (Spectravideo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "20", "", "", "" }, + { "aa1c41f86ec44c0a44eb64c332ce08af", "Spectravideo, David Lubar", "SA-218", "Bumper Bash (1983) (Spectravideo)", "", "", "", "", "", "", "", "", "PADDLES_IAXIS", "", "", "", "", "20", "", "", "" }, { "aa2c4b32656bde9a75042a4d158583e1", "", "", "Oystron X (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "aa5cfe3b20395aba1d479135943ad85c", "", "", "Defender (Hack) (Unknown)", "", "Hack of Defender", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "aa7bb54d2c189a31bb1fa20099e42859", "CBS Electronics, Ed English", "4L4478", "Mr. Do! (1983) (CBS Electronics) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, @@ -2613,6 +2619,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "cff1e9170bdbc29859b815203edf18fa", "Retroactive", "", "Push (V0.01) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, { "cff578e5c60de8caecbee7f2c9bbb57b", "George Veeder", "", "Suicide Adventure (George Veeder) (Hack)", "Hack of Adventure", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cff9950d4e650094f65f40d179a9882d", "Paul Slocum", "", "Mr. Roboto (Paul Slocum) (Hack)", "Hack of Berzerk", "Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, + { "cfffc4b97d01cc3e7b9f47575f7b11ec", "Xonox - K-Tel Software, Anthony R. Henderson", "99007, 6240", "Tomarc the Barbarian (1983) (Xonox) (PAL60)", "Genesis controller (B is jump and throw, C switches between players)", "Hack of Tomarc the Barbarian", "", "", "", "", "", "", "GENESIS", "", "", "", "PAL60", "", "", "", "" }, { "d00f6f8ba89559e4b20972a478fc0370", "Spiceware", "SW-01", "Medieval Mayhem (PAL)", "", "Homebrew", "STEREO", "", "", "", "", "", "PADDLES", "PADDLES", "", "01", "", "", "", "", "" }, { "d010e3dfe7366e47561c088079a59439", "Retroactive", "", "Qb (V0.10) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, { "d026716b3c5be2c951cc4c064317c524", "", "", "Fu Kung! (V0.06) (14-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2736,6 +2743,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "d97fd5e6e1daacd909559a71f189f14b", "M Network, Steve Crandall, Patricia Lewis Du Long", "MT4646", "Rocky & Bullwinkle (04-20-1983) (M Network) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d9bd343533b61389b270c0787210943b", "Atari, Douglas 'Solaris' Neubauer", "CX26134", "Last Starfighter (1984) (Atari) (Prototype)", "Genesis controller (C switches to map mode)", "Hack of Last Starfighter (Solaris prototype)", "", "", "", "", "", "", "GENESIS", "", "", "", "", "", "", "", "" }, { "d9c9cece2e769c7985494b1403a25721", "SOLID Corp. (D. Scott Williamson)", "CX2655*", "Star Castle 2600 (SolidCorp)", "http://starcastle2600.blogspot.com/p/star-castle-2600-story.html", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, { "d9da2ae7c7894a29b43b3c6b79f3b7a2", "Atari, Rob Fulop", "CX2633, CX2633P", "Night Driver (1980) (Atari) (PAL) (4K)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "YES", "" }, { "d9fbf1113114fb3a3c97550a0689f10f", "ZiMAG - Emag - Vidco", "713-111 - GN-050", "Pizza Chef (1983) (ZiMAG) (Prototype)", "AKA Pizza Time", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2974,6 +2982,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "ea7e25ade3fe68f5b786ee0aa82b1fe5", "", "", "Galatic (208 in 1) (Unknown) (PAL)", "AKA Challenge of.... Nexar, The", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ea832e2cb6aae6f525f07452c381fa48", "", "", "Polar to Cartesian and VV (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ea86176b27ab0da8cce8f0179884bfaa", "", "", "Demo Image Series #10 - It's Art (28-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eaacfcdc1d4ee1258429b7ae7f084125", "Telegames", "6057 A227", "Quest for Quintana Roo (1989) (Telegames)", "Genesis controller (B is action button, C chooses tool or weapon)", "Hack of Quest for Quintana Roo", "", "", "", "", "", "", "GENESIS", "", "", "", "", "", "", "", "" }, { "ead60451c28635b55ca8fea198444e16", "Sancho - Tang's Electronic Co.", "TEC004", "Nightmare (1983) (Sancho) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "43", "256", "", "" }, { "eada0dd61ce13f8317de774dc1e68604", "", "", "2600 Digital Clock (Demo 1) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eae0c06ee61c63b81cd016096fc901b0", "Joe Grand", "", "SCSIcide (v1.0) (2001) (Joe Grand)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2987,6 +2996,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "eb634650c3912132092b7aee540bbce3", "Atari, Eric Manghise, Joseph Tung", "CX2640", "RealSports Baseball (1982) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "26", "", "YES", "" }, { "eb6d6e22a16f30687ade526d7a6f05c5", "Atari", "CX26150P", "Q-bert (1987) (Atari) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eb71743c6c7ccce5b108fad70a326ad9", "", "", "Euchre (25-11-2001) (Erik Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eb7934360658a29c50aeaff20bfda23b", "Activision, John Van Ryzin", "EAZ-036-04", "H.E.R.O. (1984) (Activision) (SECAM)", "", "", "", "", "", "", "", "", "", "", "", "", "SECAM", "", "", "", "" }, { "eb92193f06b645df0b2a15d077ce435f", "Arcadia Corporation, Steve Hales, Stephen Harland Landrum", "AR-4102", "Suicide Mission (1982) (Arcadia) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, { "eb9712e423b57f0b07ccd315bb9abf61", "Retroactive", "", "Qb (V2.04) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "" }, { "eb9f8b84c193d9d93a58fca112aa39ed", "", "", "Register Twiddler Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3014,6 +3024,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "ed8f319e82d355832195eb7715644795", "Activision, Larry Kaplan, David Crane", "AG-010, AG-010-04", "Kaboom! (1981) (Activision) (8K)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "PADDLES", "", "", "01", "", "", "", "", "" }, { "ed9999911b406dc5f75c850dcc17bdf4", "", "", "Star Fire - Shootable (Friendlier Collision Detection) (26-09-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eddef10fdc0029301064115ae0cd41d4", "CCE", "", "Freeway (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ede4ab11ca346bd023b2c21d941e0c50", "Activision, David Crane", "EAZ-030", "Decathlon (1983) (Activision) (SECAM)", "", "", "", "", "", "", "", "", "", "", "", "", "SECAM", "", "", "", "" }, { "ede7e8bf865b0afb4744f86d13624f9a", "", "", "Demo Image Series #2 - Clown (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "edf69b123e06eaf8663cc78d8aeba06e", "SpkSoft 98", "", "River Raid (SpkSoft 98) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "10", "", "", "" }, { "ee28424af389a7f3672182009472500c", "Atari, Carol Shaw - Ralph Lauren", "", "Polo (1978) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3143,6 +3154,7 @@ static const char* DefProps[DEF_PROPS_SIZE][21] = { { "f724d3dd2471ed4cf5f191dbb724b69f", "Atari, Jerome Domurat, Howard Scott Warshaw", "CX2659", "Raiders of the Lost Ark (1982) (Atari)", "Console ports are swapped", "", "", "", "", "", "", "YES", "", "", "", "", "", "", "", "", "" }, { "f736864442164b29235e8872013180cd", "Telegames", "6057 A227", "Quest for Quintana Roo (1989) (Telegames) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f73d2d0eff548e8fc66996f27acf2b4b", "CCE", "C-813", "Pitfall (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f7424985bac41067502b4a05b64cb75a", "Activision, Steve Cartwright", "AX-027", "Plaque Attack (1983) (Activision)", "Genesis controller (B is fire up, C is fire down)", "Hack of Plaque Attack", "", "", "", "", "", "", "GENESIS", "GENESIS", "", "", "", "", "", "", "" }, { "f74ad642552385c3daa203a2a6fc2291", "Eckhard Stolberg", "", "Cubis (1997) (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f750b5d613796963acecab1690f554ae", "Manuel Polik", "", "Gunfight 2600 (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f75872946e82ad74d48eae5bc28f5f0e", "Sears Tele-Games, Jim Huether", "CX2614 - 49-75126", "Steeplechase (04-15-1980) (Sears) (Prototype)", "Uses the Paddle Controllers", "Prototype", "", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "" }, diff --git a/src/emucore/stella.pro b/src/emucore/stella.pro index 006122bd4..8264e4a0a 100644 --- a/src/emucore/stella.pro +++ b/src/emucore/stella.pro @@ -13664,6 +13664,7 @@ "Cartridge.Manufacturer" "Spectravideo, David Lubar" "Cartridge.ModelNo" "SA-218" "Cartridge.Name" "Bumper Bash (1983) (Spectravideo)" +"Controller.Left" "PADDLES_IAXIS" "Display.YStart" "20" "" @@ -18733,9 +18734,7 @@ "" "Cartridge.MD5" "1bf503c724001b09be79c515ecfcbd03" -"Cartridge.Manufacturer" "Spectravideo, David Lubar" -"Cartridge.ModelNo" "SA-218" -"Cartridge.Name" "Bumper Bash (1983) (Spectravideo) (PAL)" +"Cartridge.Name" "Bumper Bash (Unknown) (PAL)" "Display.YStart" "54" "" @@ -18937,8 +18936,13 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "C-840" "Cartridge.Name" "Stone Age (1983) (CCE)" +"Cartridge.Note" "Uses the Joystick Controllers (swapped)" +"Console.SwapPorts" "YES" +"Console.LeftDifficulty" "A" +"Console.RightDifficulty" "A" "Display.YStart" "26" "Display.Height" "220" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "45cb0f41774b78def53331e4c3bf3362" @@ -19923,3 +19927,103 @@ "Cartridge.Name" "Seaquest (Digivision)" "" +"Cartridge.MD5" "16ee443c990215f61f7dd1e55a0d2256" +"Cartridge.Manufacturer" "Spectravideo, David Lubar" +"Cartridge.ModelNo" "SA-218C" +"Cartridge.Name" "Bumper Bash (1983) (Spectravideo) (PAL)" +"Controller.Left" "PADDLES_IAXIS" +"Display.YStart" "54" +"" + +"Cartridge.MD5" "ede4ab11ca346bd023b2c21d941e0c50" +"Cartridge.Manufacturer" "Activision, David Crane" +"Cartridge.ModelNo" "EAZ-030" +"Cartridge.Name" "Decathlon (1983) (Activision) (SECAM)" +"Display.Format" "SECAM" +"" + +"Cartridge.MD5" "5d25df9dc2cde746ceac48e834cf84a7" +"Cartridge.Manufacturer" "Activision, Steve 'Jessica' Kitchen" +"Cartridge.ModelNo" "EAZ-033" +"Cartridge.Name" "Space Shuttle (1983) (Activision) (SECAM)" +"Cartridge.Type" "FE" +"Display.Format" "SECAM" +"" + +"Cartridge.MD5" "25f879ff678130fea615ac418e7943f1" +"Cartridge.Manufacturer" "Activision, Garry Kitchen" +"Cartridge.ModelNo" "EAX-025" +"Cartridge.Name" "Keystone Kapers (1983) (Activision) (SECAM)" +"Display.Format" "SECAM" +"" + +"Cartridge.MD5" "eb7934360658a29c50aeaff20bfda23b" +"Cartridge.Manufacturer" "Activision, John Van Ryzin" +"Cartridge.ModelNo" "EAZ-036-04" +"Cartridge.Name" "H.E.R.O. (1984) (Activision) (SECAM)" +"Display.Format" "SECAM" +"" + +"Cartridge.MD5" "d9bd343533b61389b270c0787210943b" +"Cartridge.Manufacturer" "Atari, Douglas 'Solaris' Neubauer" +"Cartridge.ModelNo" "CX26134" +"Cartridge.Name" "Last Starfighter (1984) (Atari) (Prototype)" +"Cartridge.Note" "Genesis controller (C switches to map mode)" +"Cartridge.Rarity" "Hack of Last Starfighter (Solaris prototype)" +"Controller.Left" "GENESIS" +"" + +"Cartridge.MD5" "f7424985bac41067502b4a05b64cb75a" +"Cartridge.Manufacturer" "Activision, Steve Cartwright" +"Cartridge.ModelNo" "AX-027" +"Cartridge.Name" "Plaque Attack (1983) (Activision)" +"Cartridge.Note" "Genesis controller (B is fire up, C is fire down)" +"Cartridge.Rarity" "Hack of Plaque Attack" +"Controller.Left" "GENESIS" +"Controller.Right" "GENESIS" +"" + +"Cartridge.MD5" "650df778c6ce22d3fd1a7c33c565bcc3" +"Cartridge.Manufacturer" "Atari - GCC, Betty Ryan Tylko, Douglas B. Macrae" +"Cartridge.ModelNo" "CX2694" +"Cartridge.Name" "Pole Position (1983) (Atari)" +"Cartridge.Note" "Genesis controller (B is high gear, C is low gear, left difficulty switch swaps gear buttons)" +"Cartridge.Rarity" "Hack of Pole Position" +"Controller.Left" "GENESIS" +"" + +"Cartridge.MD5" "E68E28752D3C54EDD3CCDA42C27E320C" +"Cartridge.Manufacturer" "Xonox - K-Tel Software, Anthony R. Henderson" +"Cartridge.ModelNo" "99007, 6240" +"Cartridge.Name" "Tomarc the Barbarian (1983) (Xonox)" +"Cartridge.Note" "Genesis controller (B is jump and throw, C switches between players)" +"Cartridge.Rarity" "Hack of Tomarc the Barbarian" +"Controller.Left" "GENESIS" +"" + +"Cartridge.MD5" "cfffc4b97d01cc3e7b9f47575f7b11ec" +"Cartridge.Manufacturer" "Xonox - K-Tel Software, Anthony R. Henderson" +"Cartridge.ModelNo" "99007, 6240" +"Cartridge.Name" "Tomarc the Barbarian (1983) (Xonox) (PAL60)" +"Cartridge.Note" "Genesis controller (B is jump and throw, C switches between players)" +"Cartridge.Rarity" "Hack of Tomarc the Barbarian" +"Controller.Left" "GENESIS" +"Display.Format" "PAL60" +"" + +"Cartridge.MD5" "eaacfcdc1d4ee1258429b7ae7f084125" +"Cartridge.Manufacturer" "Telegames" +"Cartridge.ModelNo" "6057 A227" +"Cartridge.Name" "Quest for Quintana Roo (1989) (Telegames)" +"Cartridge.Note" "Genesis controller (B is action button, C chooses tool or weapon)" +"Cartridge.Rarity" "Hack of Quest for Quintana Roo" +"Controller.Left" "GENESIS" +"" + +"Cartridge.MD5" "5079bfbc7b8f5770f84215ed2e3bdd1b" +"Cartridge.Manufacturer" "Omegamatrix (2012)" +"Cartridge.Name" "Genesis Button Tester" +"Cartridge.Rarity" "Homebrew" +"Controller.Left" "GENESIS" +"Controller.Right" "GENESIS" +"" diff --git a/src/macosx/Info-Stella.plist b/src/macosx/Info-Stella.plist index 1225f3e58..bdb38cc3c 100644 --- a/src/macosx/Info-Stella.plist +++ b/src/macosx/Info-Stella.plist @@ -53,7 +53,7 @@ CFBundleSignature StLa CFBundleVersion - 3.9.2 + 3.9.3 NSMainNibFile SDLMain.nib NSPrincipalClass diff --git a/src/macosx/stella.xcodeproj/project.pbxproj b/src/macosx/stella.xcodeproj/project.pbxproj index 94aa941f5..89ce64728 100644 --- a/src/macosx/stella.xcodeproj/project.pbxproj +++ b/src/macosx/stella.xcodeproj/project.pbxproj @@ -368,6 +368,26 @@ DCA6277816CB0D45004E9AF0 /* ZipHandler.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCA6277316CB0D45004E9AF0 /* ZipHandler.hxx */; }; DCAE2A9314CCCCBD004327BB /* MouseControl.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAE2A9114CCCCBD004327BB /* MouseControl.cxx */; }; DCAE2A9414CCCCBD004327BB /* MouseControl.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAE2A9214CCCCBD004327BB /* MouseControl.hxx */; }; + DCB29727188D655000B7BEB8 /* Cart4KSC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB2971D188D655000B7BEB8 /* Cart4KSC.cxx */; }; + DCB29728188D655000B7BEB8 /* Cart4KSC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB2971E188D655000B7BEB8 /* Cart4KSC.hxx */; }; + DCB29729188D655000B7BEB8 /* CartBF.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB2971F188D655000B7BEB8 /* CartBF.cxx */; }; + DCB2972A188D655000B7BEB8 /* CartBF.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB29720188D655000B7BEB8 /* CartBF.hxx */; }; + DCB2972B188D655000B7BEB8 /* CartBFSC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB29721188D655000B7BEB8 /* CartBFSC.cxx */; }; + DCB2972C188D655000B7BEB8 /* CartBFSC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB29722188D655000B7BEB8 /* CartBFSC.hxx */; }; + DCB2972D188D655000B7BEB8 /* CartDF.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB29723188D655000B7BEB8 /* CartDF.cxx */; }; + DCB2972E188D655000B7BEB8 /* CartDF.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB29724188D655000B7BEB8 /* CartDF.hxx */; }; + DCB2972F188D655000B7BEB8 /* CartDFSC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB29725188D655000B7BEB8 /* CartDFSC.cxx */; }; + DCB29730188D655000B7BEB8 /* CartDFSC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB29726188D655000B7BEB8 /* CartDFSC.hxx */; }; + DCB2973D188D657B00B7BEB8 /* Cart4KSCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB29733188D657B00B7BEB8 /* Cart4KSCWidget.cxx */; }; + DCB2973E188D657B00B7BEB8 /* Cart4KSCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB29734188D657B00B7BEB8 /* Cart4KSCWidget.hxx */; }; + DCB2973F188D657B00B7BEB8 /* CartBFSCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB29735188D657B00B7BEB8 /* CartBFSCWidget.cxx */; }; + DCB29740188D657B00B7BEB8 /* CartBFSCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB29736188D657B00B7BEB8 /* CartBFSCWidget.hxx */; }; + DCB29741188D657B00B7BEB8 /* CartBFWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB29737188D657B00B7BEB8 /* CartBFWidget.cxx */; }; + DCB29742188D657B00B7BEB8 /* CartBFWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB29738188D657B00B7BEB8 /* CartBFWidget.hxx */; }; + DCB29743188D657B00B7BEB8 /* CartDFSCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB29739188D657B00B7BEB8 /* CartDFSCWidget.cxx */; }; + DCB29744188D657B00B7BEB8 /* CartDFSCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB2973A188D657B00B7BEB8 /* CartDFSCWidget.hxx */; }; + DCB29745188D657B00B7BEB8 /* CartDFWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB2973B188D657B00B7BEB8 /* CartDFWidget.cxx */; }; + DCB29746188D657B00B7BEB8 /* CartDFWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB2973C188D657B00B7BEB8 /* CartDFWidget.hxx */; }; DCB31D3E17C2D667002C0868 /* ConsoleMediumFont.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB31D3D17C2D667002C0868 /* ConsoleMediumFont.hxx */; }; DCB5CEE711F5B78C00C68D09 /* MessageBox.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCB5CEE511F5B78C00C68D09 /* MessageBox.cxx */; }; DCB5CEE811F5B78C00C68D09 /* MessageBox.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCB5CEE611F5B78C00C68D09 /* MessageBox.hxx */; }; @@ -887,6 +907,26 @@ DCA6277316CB0D45004E9AF0 /* ZipHandler.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ZipHandler.hxx; path = ../common/ZipHandler.hxx; sourceTree = SOURCE_ROOT; }; DCAE2A9114CCCCBD004327BB /* MouseControl.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MouseControl.cxx; path = ../common/MouseControl.cxx; sourceTree = SOURCE_ROOT; }; DCAE2A9214CCCCBD004327BB /* MouseControl.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = MouseControl.hxx; path = ../common/MouseControl.hxx; sourceTree = SOURCE_ROOT; }; + DCB2971D188D655000B7BEB8 /* Cart4KSC.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart4KSC.cxx; path = ../emucore/Cart4KSC.cxx; sourceTree = SOURCE_ROOT; }; + DCB2971E188D655000B7BEB8 /* Cart4KSC.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart4KSC.hxx; path = ../emucore/Cart4KSC.hxx; sourceTree = SOURCE_ROOT; }; + DCB2971F188D655000B7BEB8 /* CartBF.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartBF.cxx; path = ../emucore/CartBF.cxx; sourceTree = SOURCE_ROOT; }; + DCB29720188D655000B7BEB8 /* CartBF.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartBF.hxx; path = ../emucore/CartBF.hxx; sourceTree = SOURCE_ROOT; }; + DCB29721188D655000B7BEB8 /* CartBFSC.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartBFSC.cxx; path = ../emucore/CartBFSC.cxx; sourceTree = SOURCE_ROOT; }; + DCB29722188D655000B7BEB8 /* CartBFSC.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartBFSC.hxx; path = ../emucore/CartBFSC.hxx; sourceTree = SOURCE_ROOT; }; + DCB29723188D655000B7BEB8 /* CartDF.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDF.cxx; path = ../emucore/CartDF.cxx; sourceTree = SOURCE_ROOT; }; + DCB29724188D655000B7BEB8 /* CartDF.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDF.hxx; path = ../emucore/CartDF.hxx; sourceTree = SOURCE_ROOT; }; + DCB29725188D655000B7BEB8 /* CartDFSC.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDFSC.cxx; path = ../emucore/CartDFSC.cxx; sourceTree = SOURCE_ROOT; }; + DCB29726188D655000B7BEB8 /* CartDFSC.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDFSC.hxx; path = ../emucore/CartDFSC.hxx; sourceTree = SOURCE_ROOT; }; + DCB29733188D657B00B7BEB8 /* Cart4KSCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart4KSCWidget.cxx; path = ../debugger/gui/Cart4KSCWidget.cxx; sourceTree = SOURCE_ROOT; }; + DCB29734188D657B00B7BEB8 /* Cart4KSCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart4KSCWidget.hxx; path = ../debugger/gui/Cart4KSCWidget.hxx; sourceTree = SOURCE_ROOT; }; + DCB29735188D657B00B7BEB8 /* CartBFSCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartBFSCWidget.cxx; path = ../debugger/gui/CartBFSCWidget.cxx; sourceTree = SOURCE_ROOT; }; + DCB29736188D657B00B7BEB8 /* CartBFSCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartBFSCWidget.hxx; path = ../debugger/gui/CartBFSCWidget.hxx; sourceTree = SOURCE_ROOT; }; + DCB29737188D657B00B7BEB8 /* CartBFWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartBFWidget.cxx; path = ../debugger/gui/CartBFWidget.cxx; sourceTree = SOURCE_ROOT; }; + DCB29738188D657B00B7BEB8 /* CartBFWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartBFWidget.hxx; path = ../debugger/gui/CartBFWidget.hxx; sourceTree = SOURCE_ROOT; }; + DCB29739188D657B00B7BEB8 /* CartDFSCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDFSCWidget.cxx; path = ../debugger/gui/CartDFSCWidget.cxx; sourceTree = SOURCE_ROOT; }; + DCB2973A188D657B00B7BEB8 /* CartDFSCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDFSCWidget.hxx; path = ../debugger/gui/CartDFSCWidget.hxx; sourceTree = SOURCE_ROOT; }; + DCB2973B188D657B00B7BEB8 /* CartDFWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDFWidget.cxx; path = ../debugger/gui/CartDFWidget.cxx; sourceTree = SOURCE_ROOT; }; + DCB2973C188D657B00B7BEB8 /* CartDFWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDFWidget.hxx; path = ../debugger/gui/CartDFWidget.hxx; sourceTree = SOURCE_ROOT; }; DCB31D3D17C2D667002C0868 /* ConsoleMediumFont.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ConsoleMediumFont.hxx; path = ../gui/ConsoleMediumFont.hxx; sourceTree = SOURCE_ROOT; }; DCB5CEE511F5B78C00C68D09 /* MessageBox.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MessageBox.cxx; path = ../gui/MessageBox.cxx; sourceTree = SOURCE_ROOT; }; DCB5CEE611F5B78C00C68D09 /* MessageBox.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = MessageBox.hxx; path = ../gui/MessageBox.hxx; sourceTree = SOURCE_ROOT; }; @@ -1121,10 +1161,16 @@ DCF28EB11729A5CD00DD0CA9 /* Cart3FWidget.hxx */, DCF28EB21729A5CD00DD0CA9 /* Cart4A50Widget.cxx */, DCF28EB31729A5CD00DD0CA9 /* Cart4A50Widget.hxx */, + DCB29733188D657B00B7BEB8 /* Cart4KSCWidget.cxx */, + DCB29734188D657B00B7BEB8 /* Cart4KSCWidget.hxx */, DCF28EB41729A5CD00DD0CA9 /* Cart4KWidget.cxx */, DCF28EB51729A5CD00DD0CA9 /* Cart4KWidget.hxx */, DCF28EB81729A5CD00DD0CA9 /* CartARWidget.cxx */, DCF28EB91729A5CD00DD0CA9 /* CartARWidget.hxx */, + DCB29735188D657B00B7BEB8 /* CartBFSCWidget.cxx */, + DCB29736188D657B00B7BEB8 /* CartBFSCWidget.hxx */, + DCB29737188D657B00B7BEB8 /* CartBFWidget.cxx */, + DCB29738188D657B00B7BEB8 /* CartBFWidget.hxx */, DCF28EBA1729A5CD00DD0CA9 /* CartCMWidget.cxx */, DCF28EBB1729A5CD00DD0CA9 /* CartCMWidget.hxx */, DCF28EBC1729A5CD00DD0CA9 /* CartCTYWidget.cxx */, @@ -1132,6 +1178,10 @@ DCF28EBE1729A5CD00DD0CA9 /* CartCVWidget.cxx */, DCF28EBF1729A5CD00DD0CA9 /* CartCVWidget.hxx */, DCF28EC01729A5CD00DD0CA9 /* CartDebugWidget.hxx */, + DCB29739188D657B00B7BEB8 /* CartDFSCWidget.cxx */, + DCB2973A188D657B00B7BEB8 /* CartDFSCWidget.hxx */, + DCB2973B188D657B00B7BEB8 /* CartDFWidget.cxx */, + DCB2973C188D657B00B7BEB8 /* CartDFWidget.hxx */, DCF28EC11729A5CD00DD0CA9 /* CartDPCPlusWidget.cxx */, DCF28EC21729A5CD00DD0CA9 /* CartDPCPlusWidget.hxx */, DCF28EC31729A5CD00DD0CA9 /* CartDPCWidget.cxx */, @@ -1308,8 +1358,14 @@ DCD56D370B247D920092F9F8 /* Cart4A50.hxx */, 2DE2DF180627AE07006BEC99 /* Cart4K.cxx */, 2DE2DF190627AE07006BEC99 /* Cart4K.hxx */, + DCB2971D188D655000B7BEB8 /* Cart4KSC.cxx */, + DCB2971E188D655000B7BEB8 /* Cart4KSC.hxx */, 2DE2DF1A0627AE07006BEC99 /* CartAR.cxx */, 2DE2DF1B0627AE07006BEC99 /* CartAR.hxx */, + DCB2971F188D655000B7BEB8 /* CartBF.cxx */, + DCB29720188D655000B7BEB8 /* CartBF.hxx */, + DCB29721188D655000B7BEB8 /* CartBFSC.cxx */, + DCB29722188D655000B7BEB8 /* CartBFSC.hxx */, DC3E4A6014B25EB30071D7BC /* CartCM.cxx */, DC3E4A6114B25EB30071D7BC /* CartCM.hxx */, DCDBD3151556F60C00308CC4 /* CartCTY.cxx */, @@ -1317,6 +1373,10 @@ DCDBD3171556F60C00308CC4 /* CartCTYTunes.hxx */, 2DE2DF1C0627AE07006BEC99 /* CartCV.cxx */, 2DE2DF1D0627AE07006BEC99 /* CartCV.hxx */, + DCB29723188D655000B7BEB8 /* CartDF.cxx */, + DCB29724188D655000B7BEB8 /* CartDF.hxx */, + DCB29725188D655000B7BEB8 /* CartDFSC.cxx */, + DCB29726188D655000B7BEB8 /* CartDFSC.hxx */, 2DE2DF1E0627AE07006BEC99 /* CartDPC.cxx */, 2DE2DF1F0627AE07006BEC99 /* CartDPC.hxx */, DC64EB1E1152F9C000DC9140 /* CartDPCPlus.cxx */, @@ -1879,6 +1939,16 @@ DCB31D3E17C2D667002C0868 /* ConsoleMediumFont.hxx in Headers */, DC3F601717C9140100A1977D /* ConsoleBFont.hxx in Headers */, DC3F601817C9140100A1977D /* ConsoleMediumBFont.hxx in Headers */, + DCB29728188D655000B7BEB8 /* Cart4KSC.hxx in Headers */, + DCB2972A188D655000B7BEB8 /* CartBF.hxx in Headers */, + DCB2972C188D655000B7BEB8 /* CartBFSC.hxx in Headers */, + DCB2972E188D655000B7BEB8 /* CartDF.hxx in Headers */, + DCB29730188D655000B7BEB8 /* CartDFSC.hxx in Headers */, + DCB2973E188D657B00B7BEB8 /* Cart4KSCWidget.hxx in Headers */, + DCB29740188D657B00B7BEB8 /* CartBFSCWidget.hxx in Headers */, + DCB29742188D657B00B7BEB8 /* CartBFWidget.hxx in Headers */, + DCB29744188D657B00B7BEB8 /* CartDFSCWidget.hxx in Headers */, + DCB29746188D657B00B7BEB8 /* CartDFWidget.hxx in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2185,6 +2255,16 @@ DC0D76A6177259C3005C7805 /* ConfigPathDialog.cxx in Sources */, DC0D76A8177259C3005C7805 /* SnapshotDialog.cxx in Sources */, DCECD7A917A88E51000A9753 /* Base.cxx in Sources */, + DCB29727188D655000B7BEB8 /* Cart4KSC.cxx in Sources */, + DCB29729188D655000B7BEB8 /* CartBF.cxx in Sources */, + DCB2972B188D655000B7BEB8 /* CartBFSC.cxx in Sources */, + DCB2972D188D655000B7BEB8 /* CartDF.cxx in Sources */, + DCB2972F188D655000B7BEB8 /* CartDFSC.cxx in Sources */, + DCB2973D188D657B00B7BEB8 /* Cart4KSCWidget.cxx in Sources */, + DCB2973F188D657B00B7BEB8 /* CartBFSCWidget.cxx in Sources */, + DCB29741188D657B00B7BEB8 /* CartBFWidget.cxx in Sources */, + DCB29743188D657B00B7BEB8 /* CartDFSCWidget.cxx in Sources */, + DCB29745188D657B00B7BEB8 /* CartDFWidget.cxx in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/src/macosx/stella_intel.xcodeproj/project.pbxproj b/src/macosx/stella_intel.xcodeproj/project.pbxproj index 82342dca3..c99412038 100644 --- a/src/macosx/stella_intel.xcodeproj/project.pbxproj +++ b/src/macosx/stella_intel.xcodeproj/project.pbxproj @@ -354,6 +354,26 @@ DCA00FF80DBABCAD00C3823D /* RiotDebug.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCA00FF60DBABCAD00C3823D /* RiotDebug.hxx */; }; DCA23AE90D75B22500F77B33 /* CartX07.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCA23AE70D75B22500F77B33 /* CartX07.cxx */; }; DCA23AEA0D75B22500F77B33 /* CartX07.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCA23AE80D75B22500F77B33 /* CartX07.hxx */; }; + DCAACAF6188D631500A4D282 /* Cart4KSC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAACAEC188D631500A4D282 /* Cart4KSC.cxx */; }; + DCAACAF7188D631500A4D282 /* Cart4KSC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAACAED188D631500A4D282 /* Cart4KSC.hxx */; }; + DCAACAF8188D631500A4D282 /* CartBF.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAACAEE188D631500A4D282 /* CartBF.cxx */; }; + DCAACAF9188D631500A4D282 /* CartBF.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAACAEF188D631500A4D282 /* CartBF.hxx */; }; + DCAACAFA188D631500A4D282 /* CartBFSC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAACAF0188D631500A4D282 /* CartBFSC.cxx */; }; + DCAACAFB188D631500A4D282 /* CartBFSC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAACAF1188D631500A4D282 /* CartBFSC.hxx */; }; + DCAACAFC188D631500A4D282 /* CartDF.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAACAF2188D631500A4D282 /* CartDF.cxx */; }; + DCAACAFD188D631500A4D282 /* CartDF.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAACAF3188D631500A4D282 /* CartDF.hxx */; }; + DCAACAFE188D631500A4D282 /* CartDFSC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAACAF4188D631500A4D282 /* CartDFSC.cxx */; }; + DCAACAFF188D631500A4D282 /* CartDFSC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAACAF5188D631500A4D282 /* CartDFSC.hxx */; }; + DCAACB0E188D636F00A4D282 /* Cart4KSCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAACB04188D636F00A4D282 /* Cart4KSCWidget.cxx */; }; + DCAACB0F188D636F00A4D282 /* Cart4KSCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAACB05188D636F00A4D282 /* Cart4KSCWidget.hxx */; }; + DCAACB10188D636F00A4D282 /* CartBFSCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAACB06188D636F00A4D282 /* CartBFSCWidget.cxx */; }; + DCAACB11188D636F00A4D282 /* CartBFSCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAACB07188D636F00A4D282 /* CartBFSCWidget.hxx */; }; + DCAACB12188D636F00A4D282 /* CartBFWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAACB08188D636F00A4D282 /* CartBFWidget.cxx */; }; + DCAACB13188D636F00A4D282 /* CartBFWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAACB09188D636F00A4D282 /* CartBFWidget.hxx */; }; + DCAACB14188D636F00A4D282 /* CartDFSCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAACB0A188D636F00A4D282 /* CartDFSCWidget.cxx */; }; + DCAACB15188D636F00A4D282 /* CartDFSCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAACB0B188D636F00A4D282 /* CartDFSCWidget.hxx */; }; + DCAACB16188D636F00A4D282 /* CartDFWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAACB0C188D636F00A4D282 /* CartDFWidget.cxx */; }; + DCAACB17188D636F00A4D282 /* CartDFWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAACB0D188D636F00A4D282 /* CartDFWidget.hxx */; }; DCAAE5D31715887B0080BB82 /* Cart2KWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAAE5B21715887B0080BB82 /* Cart2KWidget.cxx */; }; DCAAE5D41715887B0080BB82 /* Cart2KWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCAAE5B31715887B0080BB82 /* Cart2KWidget.hxx */; }; DCAAE5D51715887B0080BB82 /* Cart3FWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCAAE5B41715887B0080BB82 /* Cart3FWidget.cxx */; }; @@ -871,6 +891,26 @@ DCA23AE70D75B22500F77B33 /* CartX07.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartX07.cxx; path = ../emucore/CartX07.cxx; sourceTree = SOURCE_ROOT; }; DCA23AE80D75B22500F77B33 /* CartX07.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartX07.hxx; path = ../emucore/CartX07.hxx; sourceTree = SOURCE_ROOT; }; DCA43BFF10DED5890070CEFD /* Info-Stella.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Info-Stella.plist"; sourceTree = ""; }; + DCAACAEC188D631500A4D282 /* Cart4KSC.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart4KSC.cxx; path = ../emucore/Cart4KSC.cxx; sourceTree = SOURCE_ROOT; }; + DCAACAED188D631500A4D282 /* Cart4KSC.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart4KSC.hxx; path = ../emucore/Cart4KSC.hxx; sourceTree = SOURCE_ROOT; }; + DCAACAEE188D631500A4D282 /* CartBF.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartBF.cxx; path = ../emucore/CartBF.cxx; sourceTree = SOURCE_ROOT; }; + DCAACAEF188D631500A4D282 /* CartBF.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartBF.hxx; path = ../emucore/CartBF.hxx; sourceTree = SOURCE_ROOT; }; + DCAACAF0188D631500A4D282 /* CartBFSC.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartBFSC.cxx; path = ../emucore/CartBFSC.cxx; sourceTree = SOURCE_ROOT; }; + DCAACAF1188D631500A4D282 /* CartBFSC.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartBFSC.hxx; path = ../emucore/CartBFSC.hxx; sourceTree = SOURCE_ROOT; }; + DCAACAF2188D631500A4D282 /* CartDF.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDF.cxx; path = ../emucore/CartDF.cxx; sourceTree = SOURCE_ROOT; }; + DCAACAF3188D631500A4D282 /* CartDF.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDF.hxx; path = ../emucore/CartDF.hxx; sourceTree = SOURCE_ROOT; }; + DCAACAF4188D631500A4D282 /* CartDFSC.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDFSC.cxx; path = ../emucore/CartDFSC.cxx; sourceTree = SOURCE_ROOT; }; + DCAACAF5188D631500A4D282 /* CartDFSC.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDFSC.hxx; path = ../emucore/CartDFSC.hxx; sourceTree = SOURCE_ROOT; }; + DCAACB04188D636F00A4D282 /* Cart4KSCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart4KSCWidget.cxx; path = ../debugger/gui/Cart4KSCWidget.cxx; sourceTree = SOURCE_ROOT; }; + DCAACB05188D636F00A4D282 /* Cart4KSCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart4KSCWidget.hxx; path = ../debugger/gui/Cart4KSCWidget.hxx; sourceTree = SOURCE_ROOT; }; + DCAACB06188D636F00A4D282 /* CartBFSCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartBFSCWidget.cxx; path = ../debugger/gui/CartBFSCWidget.cxx; sourceTree = SOURCE_ROOT; }; + DCAACB07188D636F00A4D282 /* CartBFSCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartBFSCWidget.hxx; path = ../debugger/gui/CartBFSCWidget.hxx; sourceTree = SOURCE_ROOT; }; + DCAACB08188D636F00A4D282 /* CartBFWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartBFWidget.cxx; path = ../debugger/gui/CartBFWidget.cxx; sourceTree = SOURCE_ROOT; }; + DCAACB09188D636F00A4D282 /* CartBFWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartBFWidget.hxx; path = ../debugger/gui/CartBFWidget.hxx; sourceTree = SOURCE_ROOT; }; + DCAACB0A188D636F00A4D282 /* CartDFSCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDFSCWidget.cxx; path = ../debugger/gui/CartDFSCWidget.cxx; sourceTree = SOURCE_ROOT; }; + DCAACB0B188D636F00A4D282 /* CartDFSCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDFSCWidget.hxx; path = ../debugger/gui/CartDFSCWidget.hxx; sourceTree = SOURCE_ROOT; }; + DCAACB0C188D636F00A4D282 /* CartDFWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDFWidget.cxx; path = ../debugger/gui/CartDFWidget.cxx; sourceTree = SOURCE_ROOT; }; + DCAACB0D188D636F00A4D282 /* CartDFWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDFWidget.hxx; path = ../debugger/gui/CartDFWidget.hxx; sourceTree = SOURCE_ROOT; }; DCAAE5B21715887B0080BB82 /* Cart2KWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart2KWidget.cxx; path = ../debugger/gui/Cart2KWidget.cxx; sourceTree = SOURCE_ROOT; }; DCAAE5B31715887B0080BB82 /* Cart2KWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart2KWidget.hxx; path = ../debugger/gui/Cart2KWidget.hxx; sourceTree = SOURCE_ROOT; }; DCAAE5B41715887B0080BB82 /* Cart3FWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart3FWidget.cxx; path = ../debugger/gui/Cart3FWidget.cxx; sourceTree = SOURCE_ROOT; }; @@ -1118,10 +1158,16 @@ DCAAE5B51715887B0080BB82 /* Cart3FWidget.hxx */, DC676A271729A0B000E4E73D /* Cart4A50Widget.cxx */, DC676A281729A0B000E4E73D /* Cart4A50Widget.hxx */, + DCAACB04188D636F00A4D282 /* Cart4KSCWidget.cxx */, + DCAACB05188D636F00A4D282 /* Cart4KSCWidget.hxx */, DCAAE5B61715887B0080BB82 /* Cart4KWidget.cxx */, DCAAE5B71715887B0080BB82 /* Cart4KWidget.hxx */, DC676A291729A0B000E4E73D /* CartARWidget.cxx */, DC676A2A1729A0B000E4E73D /* CartARWidget.hxx */, + DCAACB06188D636F00A4D282 /* CartBFSCWidget.cxx */, + DCAACB07188D636F00A4D282 /* CartBFSCWidget.hxx */, + DCAACB08188D636F00A4D282 /* CartBFWidget.cxx */, + DCAACB09188D636F00A4D282 /* CartBFWidget.hxx */, DC676A2B1729A0B000E4E73D /* CartCMWidget.cxx */, DC676A2C1729A0B000E4E73D /* CartCMWidget.hxx */, DC676A2D1729A0B000E4E73D /* CartCTYWidget.cxx */, @@ -1129,6 +1175,10 @@ DCAAE5BA1715887B0080BB82 /* CartCVWidget.cxx */, DCAAE5BB1715887B0080BB82 /* CartCVWidget.hxx */, DCAAE5BC1715887B0080BB82 /* CartDebugWidget.hxx */, + DCAACB0A188D636F00A4D282 /* CartDFSCWidget.cxx */, + DCAACB0B188D636F00A4D282 /* CartDFSCWidget.hxx */, + DCAACB0C188D636F00A4D282 /* CartDFWidget.cxx */, + DCAACB0D188D636F00A4D282 /* CartDFWidget.hxx */, DC676A2F1729A0B000E4E73D /* CartDPCPlusWidget.cxx */, DC676A301729A0B000E4E73D /* CartDPCPlusWidget.hxx */, DC676A311729A0B000E4E73D /* CartDPCWidget.cxx */, @@ -1305,8 +1355,14 @@ DCD56D370B247D920092F9F8 /* Cart4A50.hxx */, 2DE2DF180627AE07006BEC99 /* Cart4K.cxx */, 2DE2DF190627AE07006BEC99 /* Cart4K.hxx */, + DCAACAEC188D631500A4D282 /* Cart4KSC.cxx */, + DCAACAED188D631500A4D282 /* Cart4KSC.hxx */, 2DE2DF1A0627AE07006BEC99 /* CartAR.cxx */, 2DE2DF1B0627AE07006BEC99 /* CartAR.hxx */, + DCAACAEE188D631500A4D282 /* CartBF.cxx */, + DCAACAEF188D631500A4D282 /* CartBF.hxx */, + DCAACAF0188D631500A4D282 /* CartBFSC.cxx */, + DCAACAF1188D631500A4D282 /* CartBFSC.hxx */, DC8C1BA714B25DE7006440EE /* CartCM.cxx */, DC8C1BA814B25DE7006440EE /* CartCM.hxx */, DC6727081556F4860023653B /* CartCTY.cxx */, @@ -1314,6 +1370,10 @@ DC67270A1556F4860023653B /* CartCTYTunes.hxx */, 2DE2DF1C0627AE07006BEC99 /* CartCV.cxx */, 2DE2DF1D0627AE07006BEC99 /* CartCV.hxx */, + DCAACAF2188D631500A4D282 /* CartDF.cxx */, + DCAACAF3188D631500A4D282 /* CartDF.hxx */, + DCAACAF4188D631500A4D282 /* CartDFSC.cxx */, + DCAACAF5188D631500A4D282 /* CartDFSC.hxx */, 2DE2DF1E0627AE07006BEC99 /* CartDPC.cxx */, 2DE2DF1F0627AE07006BEC99 /* CartDPC.hxx */, DCAD60A61152F8BD00BC4184 /* CartDPCPlus.cxx */, @@ -1876,6 +1936,16 @@ DC8CF9BD17C15A27004B533D /* ConsoleMediumFont.hxx in Headers */, DC5BE4B317C913AC0091FD64 /* ConsoleBFont.hxx in Headers */, DC5BE4B417C913AC0091FD64 /* ConsoleMediumBFont.hxx in Headers */, + DCAACAF7188D631500A4D282 /* Cart4KSC.hxx in Headers */, + DCAACAF9188D631500A4D282 /* CartBF.hxx in Headers */, + DCAACAFB188D631500A4D282 /* CartBFSC.hxx in Headers */, + DCAACAFD188D631500A4D282 /* CartDF.hxx in Headers */, + DCAACAFF188D631500A4D282 /* CartDFSC.hxx in Headers */, + DCAACB0F188D636F00A4D282 /* Cart4KSCWidget.hxx in Headers */, + DCAACB11188D636F00A4D282 /* CartBFSCWidget.hxx in Headers */, + DCAACB13188D636F00A4D282 /* CartBFWidget.hxx in Headers */, + DCAACB15188D636F00A4D282 /* CartDFSCWidget.hxx in Headers */, + DCAACB17188D636F00A4D282 /* CartDFWidget.hxx in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2184,6 +2254,16 @@ DCDE17FA17724E5D00EB1AC6 /* ConfigPathDialog.cxx in Sources */, DCDE17FC17724E5D00EB1AC6 /* SnapshotDialog.cxx in Sources */, DC79F81217A88D9E00288B91 /* Base.cxx in Sources */, + DCAACAF6188D631500A4D282 /* Cart4KSC.cxx in Sources */, + DCAACAF8188D631500A4D282 /* CartBF.cxx in Sources */, + DCAACAFA188D631500A4D282 /* CartBFSC.cxx in Sources */, + DCAACAFC188D631500A4D282 /* CartDF.cxx in Sources */, + DCAACAFE188D631500A4D282 /* CartDFSC.cxx in Sources */, + DCAACB0E188D636F00A4D282 /* Cart4KSCWidget.cxx in Sources */, + DCAACB10188D636F00A4D282 /* CartBFSCWidget.cxx in Sources */, + DCAACB12188D636F00A4D282 /* CartBFWidget.cxx in Sources */, + DCAACB14188D636F00A4D282 /* CartDFSCWidget.cxx in Sources */, + DCAACB16188D636F00A4D282 /* CartDFWidget.cxx in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/src/unix/stella.spec b/src/unix/stella.spec index 574017cc6..2126ed850 100644 --- a/src/unix/stella.spec +++ b/src/unix/stella.spec @@ -1,5 +1,5 @@ %define name stella -%define version 3.9.2 +%define version 3.9.3 %define rel 1 %define enable_gl 1 @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version} %_datadir/icons/large/%{name}.png %changelog +* Mon Jan 20 2014 Stephen Anthony 3.9.3-1 +- Version 3.9.3 release + * Sat Aug 31 2013 Stephen Anthony 3.9.2-1 - Version 3.9.2 release diff --git a/src/windows/Stella.vcxproj b/src/windows/Stella.vcxproj index 689c9bb49..bfaf60fb1 100644 --- a/src/windows/Stella.vcxproj +++ b/src/windows/Stella.vcxproj @@ -238,11 +238,16 @@ SDLmain.lib + + + + + @@ -269,8 +274,13 @@ SDLmain.lib + + + + + @@ -476,12 +486,17 @@ SDLmain.lib + + + + + @@ -510,9 +525,14 @@ SDLmain.lib + + + + + diff --git a/src/windows/Stella.vcxproj.filters b/src/windows/Stella.vcxproj.filters index e26efa1f4..a9d52774a 100644 --- a/src/windows/Stella.vcxproj.filters +++ b/src/windows/Stella.vcxproj.filters @@ -723,6 +723,36 @@ Source Files + + Source Files\emucore + + + Source Files\emucore + + + Source Files\emucore + + + Source Files\emucore + + + Source Files\emucore + + + Source Files\debugger + + + Source Files\debugger + + + Source Files\debugger + + + Source Files\debugger + + + Source Files\debugger + @@ -1457,6 +1487,36 @@ Header Files\gui + + Header Files\emucore + + + Header Files\emucore + + + Header Files\emucore + + + Header Files\emucore + + + Header Files\emucore + + + Header Files\debugger + + + Header Files\debugger + + + Header Files\debugger + + + Header Files\debugger + + + Header Files\debugger + diff --git a/src/windows/stella.rc b/src/windows/stella.rc index bae7900c9..434201cdf 100755 --- a/src/windows/stella.rc +++ b/src/windows/stella.rc @@ -36,8 +36,8 @@ IDI_ICON ICON "stella.ico" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 3,9,2,0 - PRODUCTVERSION 3,9,2,0 + FILEVERSION 3,9,3,0 + PRODUCTVERSION 3,9,3,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -55,12 +55,12 @@ BEGIN VALUE "Comments", "The multi-platform Atari 2600 emulator. Stella is released under the GPLv2." VALUE "CompanyName", "The Stella Team (http://stella.sourceforge.net)" VALUE "FileDescription", "Stella" - VALUE "FileVersion", "3.9.2" + VALUE "FileVersion", "3.9.3" VALUE "InternalName", "Stella" VALUE "LegalCopyright", "Copyright (C) 1995-2014 The Stella Team" VALUE "OriginalFilename", "Stella.exe" VALUE "ProductName", "Stella" - VALUE "ProductVersion", "3.9.2" + VALUE "ProductVersion", "3.9.3" END END BLOCK "VarFileInfo"