From b2370205cabdea9859604c4f8dae002b47d22110 Mon Sep 17 00:00:00 2001 From: stephena Date: Sat, 15 Feb 2014 22:55:36 +0000 Subject: [PATCH] Fixed minor compile issue for OSX build, and removed the non-Intel build files (sorry, there's no PPC support for Stella 4.0 using SDL2). git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2851 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- src/common/mainSDL.cxx | 6 + src/emucore/EventHandler.cxx | 8 +- .../stella.xcodeproj/TemplateInfo.plist | 12 - src/macosx/stella.xcodeproj/project.pbxproj | 2556 ----------------- .../stella_intel.xcodeproj/project.pbxproj | 8 + 5 files changed, 18 insertions(+), 2572 deletions(-) delete mode 100644 src/macosx/stella.xcodeproj/TemplateInfo.plist delete mode 100644 src/macosx/stella.xcodeproj/project.pbxproj diff --git a/src/common/mainSDL.cxx b/src/common/mainSDL.cxx index 5371d8940..6f8999700 100644 --- a/src/common/mainSDL.cxx +++ b/src/common/mainSDL.cxx @@ -41,6 +41,12 @@ #include "CheatManager.hxx" #endif +#if defined(BSPF_MAC_OSX) + extern "C" { + int stellaMain(int argc, char* argv[]); + } +#endif + // Pointer to the main parent osystem object or the null pointer OSystem* theOSystem = (OSystem*) NULL; diff --git a/src/emucore/EventHandler.cxx b/src/emucore/EventHandler.cxx index 307ad779a..b5fa69dbe 100644 --- a/src/emucore/EventHandler.cxx +++ b/src/emucore/EventHandler.cxx @@ -87,7 +87,7 @@ EventHandler::~EventHandler() free(ourMenuActionList[i].key); delete myMouseControl; - for(int i = 0; i < myJoysticks.size(); ++i) + for(uInt32 i = 0; i < myJoysticks.size(); ++i) delete myJoysticks[i]; } @@ -678,7 +678,7 @@ void EventHandler::handleMouseButtonEvent(MouseButton b, int x, int y) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void EventHandler::handleJoyEvent(int stick, int button, uInt8 state) { - if(stick >= myJoysticks.size()) + if(stick >= (int)myJoysticks.size()) return; // Stelladaptors handle buttons differently than regular joysticks @@ -739,7 +739,7 @@ void EventHandler::handleJoyEvent(int stick, int button, uInt8 state) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void EventHandler::handleJoyAxisEvent(int stick, int axis, int value) { - if(stick >= myJoysticks.size()) + if(stick >= (int)myJoysticks.size()) return; // Stelladaptors handle axis differently than regular joysticks @@ -847,7 +847,7 @@ void EventHandler::handleJoyAxisEvent(int stick, int axis, int value) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void EventHandler::handleJoyHatEvent(int stick, int hat, int value) { - if(stick >= myJoysticks.size()) + if(stick >= (int)myJoysticks.size()) return; const StellaJoystick& joy = *myJoysticks[stick]; diff --git a/src/macosx/stella.xcodeproj/TemplateInfo.plist b/src/macosx/stella.xcodeproj/TemplateInfo.plist deleted file mode 100644 index 051247994..000000000 --- a/src/macosx/stella.xcodeproj/TemplateInfo.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - Description - This project builds an SDL-based application with Cocoa menus. - FilesToMacroExpand - - English.lproj/InfoPlist.strings - - - diff --git a/src/macosx/stella.xcodeproj/project.pbxproj b/src/macosx/stella.xcodeproj/project.pbxproj deleted file mode 100644 index 89ce64728..000000000 --- a/src/macosx/stella.xcodeproj/project.pbxproj +++ /dev/null @@ -1,2556 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 2D28DDE509DC2D9F00A17585 /* MenusEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D28DDE409DC2D9F00A17585 /* MenusEvents.h */; }; - 2D9173CB09BA90380026E9FF /* SDLMain.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A47A9D01A0482F01D3D55B /* SDLMain.h */; }; - 2D9173CC09BA90380026E9FF /* Booster.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF110627AE07006BEC99 /* Booster.hxx */; }; - 2D9173CD09BA90380026E9FF /* Cart.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF130627AE07006BEC99 /* Cart.hxx */; }; - 2D9173CE09BA90380026E9FF /* Cart2K.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF150627AE07006BEC99 /* Cart2K.hxx */; }; - 2D9173CF09BA90380026E9FF /* Cart3F.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF170627AE07006BEC99 /* Cart3F.hxx */; }; - 2D9173D009BA90380026E9FF /* Cart4K.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF190627AE07006BEC99 /* Cart4K.hxx */; }; - 2D9173D109BA90380026E9FF /* CartAR.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF1B0627AE07006BEC99 /* CartAR.hxx */; }; - 2D9173D209BA90380026E9FF /* CartCV.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF1D0627AE07006BEC99 /* CartCV.hxx */; }; - 2D9173D309BA90380026E9FF /* CartDPC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF1F0627AE07006BEC99 /* CartDPC.hxx */; }; - 2D9173D409BA90380026E9FF /* CartE0.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF210627AE07006BEC99 /* CartE0.hxx */; }; - 2D9173D509BA90380026E9FF /* CartE7.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF230627AE07006BEC99 /* CartE7.hxx */; }; - 2D9173D609BA90380026E9FF /* CartF4.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF250627AE07006BEC99 /* CartF4.hxx */; }; - 2D9173D709BA90380026E9FF /* CartF4SC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF270627AE07006BEC99 /* CartF4SC.hxx */; }; - 2D9173D809BA90380026E9FF /* CartF6.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF290627AE07006BEC99 /* CartF6.hxx */; }; - 2D9173D909BA90380026E9FF /* CartF6SC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF2B0627AE07006BEC99 /* CartF6SC.hxx */; }; - 2D9173DA09BA90380026E9FF /* CartF8.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF2D0627AE07006BEC99 /* CartF8.hxx */; }; - 2D9173DB09BA90380026E9FF /* CartF8SC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF2F0627AE07006BEC99 /* CartF8SC.hxx */; }; - 2D9173DD09BA90380026E9FF /* CartFE.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF330627AE07006BEC99 /* CartFE.hxx */; }; - 2D9173DF09BA90380026E9FF /* CartMC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF370627AE07006BEC99 /* CartMC.hxx */; }; - 2D9173E009BA90380026E9FF /* Console.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF390627AE07006BEC99 /* Console.hxx */; }; - 2D9173E109BA90380026E9FF /* Control.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF3B0627AE07006BEC99 /* Control.hxx */; }; - 2D9173E309BA90380026E9FF /* Driving.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF3F0627AE07006BEC99 /* Driving.hxx */; }; - 2D9173E409BA90380026E9FF /* Event.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF410627AE07006BEC99 /* Event.hxx */; }; - 2D9173E509BA90380026E9FF /* Joystick.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF430627AE07006BEC99 /* Joystick.hxx */; }; - 2D9173E609BA90380026E9FF /* Keyboard.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF450627AE07006BEC99 /* Keyboard.hxx */; }; - 2D9173E709BA90380026E9FF /* M6532.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF7D0627AE33006BEC99 /* M6532.hxx */; }; - 2D9173E809BA90380026E9FF /* MD5.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF7F0627AE34006BEC99 /* MD5.hxx */; }; - 2D9173EA09BA90380026E9FF /* Paddles.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF830627AE34006BEC99 /* Paddles.hxx */; }; - 2D9173EB09BA90380026E9FF /* Props.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF850627AE34006BEC99 /* Props.hxx */; }; - 2D9173EC09BA90380026E9FF /* PropsSet.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF870627AE34006BEC99 /* PropsSet.hxx */; }; - 2D9173ED09BA90380026E9FF /* Random.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF890627AE34006BEC99 /* Random.hxx */; }; - 2D9173EE09BA90380026E9FF /* Serializer.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF8B0627AE34006BEC99 /* Serializer.hxx */; }; - 2D9173EF09BA90380026E9FF /* Sound.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF8D0627AE34006BEC99 /* Sound.hxx */; }; - 2D9173F009BA90380026E9FF /* Switches.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF8F0627AE34006BEC99 /* Switches.hxx */; }; - 2D9173F109BA90380026E9FF /* TIA.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE2DF910627AE34006BEC99 /* TIA.hxx */; }; - 2D9173F709BA90380026E9FF /* FrameBufferGL.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D733D5E062893E7006265D9 /* FrameBufferGL.hxx */; }; - 2D9173F809BA90380026E9FF /* FrameBufferSoft.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D733D62062893E7006265D9 /* FrameBufferSoft.hxx */; }; - 2D9173F909BA90380026E9FF /* EventHandler.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D733D6F062895B2006265D9 /* EventHandler.hxx */; }; - 2D9173FA09BA90380026E9FF /* FrameBuffer.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D733D71062895B2006265D9 /* FrameBuffer.hxx */; }; - 2D9173FB09BA90380026E9FF /* Settings.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D733D77062895F1006265D9 /* Settings.hxx */; }; - 2D9173FC09BA90380026E9FF /* SettingsMACOSX.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D94486C0629124700DD9879 /* SettingsMACOSX.hxx */; }; - 2D9173FD09BA90380026E9FF /* SoundSDL.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDA34030665817D00CDD299 /* SoundSDL.hxx */; }; - 2D9173FF09BA90380026E9FF /* OSystemMACOSX.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEA0F0845709700812C11 /* OSystemMACOSX.hxx */; }; - 2D91740009BA90380026E9FF /* AboutDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAA4084578BF00812C11 /* AboutDialog.hxx */; }; - 2D91740109BA90380026E9FF /* AudioDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAA7084578BF00812C11 /* AudioDialog.hxx */; }; - 2D91740209BA90380026E9FF /* BrowserDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAA9084578BF00812C11 /* BrowserDialog.hxx */; }; - 2D91740309BA90380026E9FF /* Command.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAAA084578BF00812C11 /* Command.hxx */; }; - 2D91740409BA90380026E9FF /* Dialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAAC084578BF00812C11 /* Dialog.hxx */; }; - 2D91740509BA90380026E9FF /* DialogContainer.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAAE084578BF00812C11 /* DialogContainer.hxx */; }; - 2D91740609BA90380026E9FF /* GameInfoDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAB3084578BF00812C11 /* GameInfoDialog.hxx */; }; - 2D91740709BA90380026E9FF /* GameList.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAB5084578BF00812C11 /* GameList.hxx */; }; - 2D91740809BA90380026E9FF /* GuiObject.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAB6084578BF00812C11 /* GuiObject.hxx */; }; - 2D91740A09BA90380026E9FF /* HelpDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAB9084578BF00812C11 /* HelpDialog.hxx */; }; - 2D91740B09BA90380026E9FF /* Launcher.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEABB084578BF00812C11 /* Launcher.hxx */; }; - 2D91740C09BA90380026E9FF /* LauncherDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEABD084578BF00812C11 /* LauncherDialog.hxx */; }; - 2D91740E09BA90380026E9FF /* ListWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAC1084578BF00812C11 /* ListWidget.hxx */; }; - 2D91740F09BA90380026E9FF /* Menu.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAC3084578BF00812C11 /* Menu.hxx */; }; - 2D91741009BA90380026E9FF /* OptionsDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAC5084578BF00812C11 /* OptionsDialog.hxx */; }; - 2D91741109BA90380026E9FF /* PopUpWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAC7084578BF00812C11 /* PopUpWidget.hxx */; }; - 2D91741209BA90380026E9FF /* ProgressDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAC9084578BF00812C11 /* ProgressDialog.hxx */; }; - 2D91741309BA90380026E9FF /* ScrollBarWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEACB084578BF00812C11 /* ScrollBarWidget.hxx */; }; - 2D91741609BA90380026E9FF /* TabWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAD1084578BF00812C11 /* TabWidget.hxx */; }; - 2D91741709BA90380026E9FF /* VideoDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAD3084578BF00812C11 /* VideoDialog.hxx */; }; - 2D91741809BA90380026E9FF /* Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEAD5084578BF00812C11 /* Widget.hxx */; }; - 2D91741909BA90380026E9FF /* CartUA.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEB7108457B7D00812C11 /* CartUA.hxx */; }; - 2D91741A09BA90380026E9FF /* FSNode.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEB7308457B7D00812C11 /* FSNode.hxx */; }; - 2D91741B09BA90380026E9FF /* OSystem.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEB7508457B7D00812C11 /* OSystem.hxx */; }; - 2D91741D09BA90380026E9FF /* Preferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DDBEBE3084582C400812C11 /* Preferences.h */; }; - 2D91741F09BA90380026E9FF /* AboutBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D1A6CD4085135F9007CDBA8 /* AboutBox.h */; }; - 2D91742009BA90380026E9FF /* ConsoleFont.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D9217FA0857CC88001D664B /* ConsoleFont.hxx */; }; - 2D91742109BA90380026E9FF /* Font.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D9217FC0857CC88001D664B /* Font.hxx */; }; - 2D91742209BA90380026E9FF /* Debugger.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D659E2E085D3DD6005D96C8 /* Debugger.hxx */; }; - 2D91742309BA90380026E9FF /* DebuggerParser.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D659E32085D3DD6005D96C8 /* DebuggerParser.hxx */; }; - 2D91742409BA90380026E9FF /* EditableWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D403BA1086116D1001E31A1 /* EditableWidget.hxx */; }; - 2D91742509BA90380026E9FF /* EditTextWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D403BA5086116D1001E31A1 /* EditTextWidget.hxx */; }; - 2D91742809BA90380026E9FF /* PackedBitArray.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D403BCF08611A69001E31A1 /* PackedBitArray.hxx */; }; - 2D91742909BA90380026E9FF /* TIADebug.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D30F8760868A4DB00938B9D /* TIADebug.hxx */; }; - 2D91742A09BA90380026E9FF /* YaccParser.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D313F0B0879C4C0005BD3E5 /* YaccParser.hxx */; }; - 2D91742B09BA90380026E9FF /* Cart3E.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D9555DA0880E78000466554 /* Cart3E.hxx */; }; - 2D91742C09BA90380026E9FF /* CpuDebug.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D9555DE0880E79600466554 /* CpuDebug.hxx */; }; - 2D91743609BA90380026E9FF /* DebuggerSystem.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DF971D70892CEA400F64D23 /* DebuggerSystem.hxx */; }; - 2D91743A09BA90380026E9FF /* Expression.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DF971DF0892CEA400F64D23 /* Expression.hxx */; }; - 2D91744F09BA90380026E9FF /* InputTextDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D02208008A301F200B9C76B /* InputTextDialog.hxx */; }; - 2D91745009BA90380026E9FF /* CheckListWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DEF21F908BC033500B246B4 /* CheckListWidget.hxx */; }; - 2D91745109BA90380026E9FF /* StringListWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DEF21FB08BC033500B246B4 /* StringListWidget.hxx */; }; - 2D91745209BA90380026E9FF /* CommandDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D73959408C3EB4E0060BB99 /* CommandDialog.hxx */; }; - 2D91745309BA90380026E9FF /* CommandMenu.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D73959608C3EB4E0060BB99 /* CommandMenu.hxx */; }; - 2D91745409BA90380026E9FF /* ColorWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9E508C603EC00A73076 /* ColorWidget.hxx */; }; - 2D91745509BA90380026E9FF /* CpuWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9E708C603EC00A73076 /* CpuWidget.hxx */; }; - 2D91745609BA90380026E9FF /* DataGridOpsWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9E908C603EC00A73076 /* DataGridOpsWidget.hxx */; }; - 2D91745709BA90380026E9FF /* DataGridWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9EB08C603EC00A73076 /* DataGridWidget.hxx */; }; - 2D91745809BA90380026E9FF /* DebuggerDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9ED08C603EC00A73076 /* DebuggerDialog.hxx */; }; - 2D91745909BA90380026E9FF /* PromptWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9EF08C603EC00A73076 /* PromptWidget.hxx */; }; - 2D91745A09BA90380026E9FF /* RamWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9F108C603EC00A73076 /* RamWidget.hxx */; }; - 2D91745B09BA90380026E9FF /* RomListWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9F308C603EC00A73076 /* RomListWidget.hxx */; }; - 2D91745C09BA90380026E9FF /* RomWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9F508C603EC00A73076 /* RomWidget.hxx */; }; - 2D91745D09BA90380026E9FF /* TiaInfoWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9F708C603EC00A73076 /* TiaInfoWidget.hxx */; }; - 2D91745E09BA90380026E9FF /* TiaOutputWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9F908C603EC00A73076 /* TiaOutputWidget.hxx */; }; - 2D91745F09BA90380026E9FF /* TiaWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9FB08C603EC00A73076 /* TiaWidget.hxx */; }; - 2D91746009BA90380026E9FF /* ToggleBitWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9FD08C603EC00A73076 /* ToggleBitWidget.hxx */; }; - 2D91746109BA90380026E9FF /* TogglePixelWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20F9FF08C603EC00A73076 /* TogglePixelWidget.hxx */; }; - 2D91746209BA90380026E9FF /* ToggleWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D20FA0108C603EC00A73076 /* ToggleWidget.hxx */; }; - 2D91746409BA90380026E9FF /* TiaZoomWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D6CC10408C811A600B8F642 /* TiaZoomWidget.hxx */; }; - 2D91746509BA90380026E9FF /* TIASnd.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2DE7242E08CE910900C889A8 /* TIASnd.hxx */; }; - 2D91746609BA90380026E9FF /* AudioWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D2331900900B5EF00613B1F /* AudioWidget.hxx */; }; - 2D91746809BA90380026E9FF /* MediaFactory.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D05FF5B096E261E00A518FE /* MediaFactory.hxx */; }; - 2D91746909BA90380026E9FF /* EventMappingWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D05FF5F096E269100A518FE /* EventMappingWidget.hxx */; }; - 2D91746A09BA90380026E9FF /* InputDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = 2D05FF61096E269100A518FE /* InputDialog.hxx */; }; - 2D91746D09BA90380026E9FF /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; - 2D91746E09BA90380026E9FF /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = B2F367C504C7ADC700A80002 /* SDLMain.nib */; }; - 2D91746F09BA90380026E9FF /* Stella.icns in Resources */ = {isa = PBXBuildFile; fileRef = 2D16A8E106324136005DF364 /* Stella.icns */; }; - 2D91747009BA90380026E9FF /* Credits.html in Resources */ = {isa = PBXBuildFile; fileRef = 2D7B4F6C063B513200579B93 /* Credits.html */; }; - 2D91747109BA90380026E9FF /* ../../docs in Resources */ = {isa = PBXBuildFile; fileRef = 2D113E090672BF2100317017 /* ../../docs */; }; - 2D91747209BA90380026E9FF /* AboutBox.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2D1A6CD808513610007CDBA8 /* AboutBox.nib */; }; - 2D91747409BA90380026E9FF /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F5A47A9E01A0483001D3D55B /* SDLMain.m */; }; - 2D91747509BA90380026E9FF /* Booster.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF100627AE07006BEC99 /* Booster.cxx */; }; - 2D91747609BA90380026E9FF /* Cart.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF120627AE07006BEC99 /* Cart.cxx */; }; - 2D91747709BA90380026E9FF /* Cart2K.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF140627AE07006BEC99 /* Cart2K.cxx */; }; - 2D91747809BA90380026E9FF /* Cart3F.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF160627AE07006BEC99 /* Cart3F.cxx */; }; - 2D91747909BA90380026E9FF /* Cart4K.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF180627AE07006BEC99 /* Cart4K.cxx */; }; - 2D91747A09BA90380026E9FF /* CartAR.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF1A0627AE07006BEC99 /* CartAR.cxx */; }; - 2D91747B09BA90380026E9FF /* CartCV.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF1C0627AE07006BEC99 /* CartCV.cxx */; }; - 2D91747C09BA90380026E9FF /* CartDPC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF1E0627AE07006BEC99 /* CartDPC.cxx */; }; - 2D91747D09BA90380026E9FF /* CartE0.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF200627AE07006BEC99 /* CartE0.cxx */; }; - 2D91747E09BA90380026E9FF /* CartE7.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF220627AE07006BEC99 /* CartE7.cxx */; }; - 2D91747F09BA90380026E9FF /* CartF4.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF240627AE07006BEC99 /* CartF4.cxx */; }; - 2D91748009BA90380026E9FF /* CartF4SC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF260627AE07006BEC99 /* CartF4SC.cxx */; }; - 2D91748109BA90380026E9FF /* CartF6.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF280627AE07006BEC99 /* CartF6.cxx */; }; - 2D91748209BA90380026E9FF /* CartF6SC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF2A0627AE07006BEC99 /* CartF6SC.cxx */; }; - 2D91748309BA90380026E9FF /* CartF8.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF2C0627AE07006BEC99 /* CartF8.cxx */; }; - 2D91748409BA90380026E9FF /* CartF8SC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF2E0627AE07006BEC99 /* CartF8SC.cxx */; }; - 2D91748609BA90380026E9FF /* CartFE.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF320627AE07006BEC99 /* CartFE.cxx */; }; - 2D91748809BA90380026E9FF /* CartMC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF360627AE07006BEC99 /* CartMC.cxx */; }; - 2D91748909BA90380026E9FF /* Console.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF380627AE07006BEC99 /* Console.cxx */; }; - 2D91748A09BA90380026E9FF /* Control.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF3A0627AE07006BEC99 /* Control.cxx */; }; - 2D91748C09BA90380026E9FF /* Driving.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF3E0627AE07006BEC99 /* Driving.cxx */; }; - 2D91748E09BA90380026E9FF /* Joystick.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF420627AE07006BEC99 /* Joystick.cxx */; }; - 2D91748F09BA90380026E9FF /* Keyboard.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF440627AE07006BEC99 /* Keyboard.cxx */; }; - 2D91749009BA90380026E9FF /* M6532.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF7C0627AE33006BEC99 /* M6532.cxx */; }; - 2D91749109BA90380026E9FF /* MD5.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF7E0627AE33006BEC99 /* MD5.cxx */; }; - 2D91749309BA90380026E9FF /* Paddles.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF820627AE34006BEC99 /* Paddles.cxx */; }; - 2D91749409BA90380026E9FF /* Props.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF840627AE34006BEC99 /* Props.cxx */; }; - 2D91749509BA90380026E9FF /* PropsSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF860627AE34006BEC99 /* PropsSet.cxx */; }; - 2D91749609BA90380026E9FF /* Random.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF880627AE34006BEC99 /* Random.cxx */; }; - 2D91749709BA90380026E9FF /* Serializer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF8A0627AE34006BEC99 /* Serializer.cxx */; }; - 2D91749809BA90380026E9FF /* Switches.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF8E0627AE34006BEC99 /* Switches.cxx */; }; - 2D91749909BA90380026E9FF /* TIA.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DF900627AE34006BEC99 /* TIA.cxx */; }; - 2D91749F09BA90380026E9FF /* FrameBufferGL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D733D5D062893E7006265D9 /* FrameBufferGL.cxx */; }; - 2D9174A009BA90380026E9FF /* FrameBufferSoft.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D733D61062893E7006265D9 /* FrameBufferSoft.cxx */; }; - 2D9174A109BA90380026E9FF /* EventHandler.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D733D6E062895B2006265D9 /* EventHandler.cxx */; }; - 2D9174A209BA90380026E9FF /* FrameBuffer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D733D70062895B2006265D9 /* FrameBuffer.cxx */; }; - 2D9174A309BA90380026E9FF /* Settings.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D944848062904E800DD9879 /* Settings.cxx */; }; - 2D9174A409BA90380026E9FF /* SettingsMACOSX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D944866062911CD00DD9879 /* SettingsMACOSX.cxx */; }; - 2D9174A509BA90380026E9FF /* SoundSDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDA34020665817D00CDD299 /* SoundSDL.cxx */; }; - 2D9174A709BA90380026E9FF /* mainSDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEA0A0845700300812C11 /* mainSDL.cxx */; }; - 2D9174A809BA90380026E9FF /* FSNodePOSIX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEA0C0845708800812C11 /* FSNodePOSIX.cxx */; }; - 2D9174A909BA90380026E9FF /* OSystemMACOSX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEA0E0845709700812C11 /* OSystemMACOSX.cxx */; }; - 2D9174AA09BA90380026E9FF /* AboutDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAA3084578BF00812C11 /* AboutDialog.cxx */; }; - 2D9174AB09BA90380026E9FF /* AudioDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAA6084578BF00812C11 /* AudioDialog.cxx */; }; - 2D9174AC09BA90380026E9FF /* BrowserDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAA8084578BF00812C11 /* BrowserDialog.cxx */; }; - 2D9174AD09BA90380026E9FF /* Dialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAAB084578BF00812C11 /* Dialog.cxx */; }; - 2D9174AE09BA90380026E9FF /* DialogContainer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAAD084578BF00812C11 /* DialogContainer.cxx */; }; - 2D9174AF09BA90380026E9FF /* GameInfoDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAB2084578BF00812C11 /* GameInfoDialog.cxx */; }; - 2D9174B009BA90380026E9FF /* GameList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAB4084578BF00812C11 /* GameList.cxx */; }; - 2D9174B109BA90380026E9FF /* HelpDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAB8084578BF00812C11 /* HelpDialog.cxx */; }; - 2D9174B209BA90380026E9FF /* Launcher.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEABA084578BF00812C11 /* Launcher.cxx */; }; - 2D9174B309BA90380026E9FF /* LauncherDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEABC084578BF00812C11 /* LauncherDialog.cxx */; }; - 2D9174B509BA90380026E9FF /* ListWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAC0084578BF00812C11 /* ListWidget.cxx */; }; - 2D9174B609BA90380026E9FF /* Menu.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAC2084578BF00812C11 /* Menu.cxx */; }; - 2D9174B709BA90380026E9FF /* OptionsDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAC4084578BF00812C11 /* OptionsDialog.cxx */; }; - 2D9174B809BA90380026E9FF /* PopUpWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAC6084578BF00812C11 /* PopUpWidget.cxx */; }; - 2D9174B909BA90380026E9FF /* ProgressDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAC8084578BF00812C11 /* ProgressDialog.cxx */; }; - 2D9174BA09BA90380026E9FF /* ScrollBarWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEACA084578BF00812C11 /* ScrollBarWidget.cxx */; }; - 2D9174BB09BA90380026E9FF /* TabWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAD0084578BF00812C11 /* TabWidget.cxx */; }; - 2D9174BC09BA90380026E9FF /* VideoDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAD2084578BF00812C11 /* VideoDialog.cxx */; }; - 2D9174BD09BA90380026E9FF /* Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEAD4084578BF00812C11 /* Widget.cxx */; }; - 2D9174BE09BA90380026E9FF /* CartUA.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEB7008457B7D00812C11 /* CartUA.cxx */; }; - 2D9174BF09BA90380026E9FF /* FSNode.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEB7208457B7D00812C11 /* FSNode.cxx */; }; - 2D9174C009BA90380026E9FF /* OSystem.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEB7408457B7D00812C11 /* OSystem.cxx */; }; - 2D9174C209BA90380026E9FF /* Preferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DDBEBE4084582C400812C11 /* Preferences.m */; }; - 2D9174C409BA90380026E9FF /* AboutBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D1A6CD5085135F9007CDBA8 /* AboutBox.m */; }; - 2D9174C509BA90380026E9FF /* Font.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D9217FB0857CC88001D664B /* Font.cxx */; }; - 2D9174C609BA90380026E9FF /* Debugger.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D659E2D085D3DD6005D96C8 /* Debugger.cxx */; }; - 2D9174C709BA90380026E9FF /* DebuggerParser.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D659E31085D3DD6005D96C8 /* DebuggerParser.cxx */; }; - 2D9174C809BA90380026E9FF /* EditableWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D403BA0086116D1001E31A1 /* EditableWidget.cxx */; }; - 2D9174C909BA90380026E9FF /* EditTextWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D403BA4086116D1001E31A1 /* EditTextWidget.cxx */; }; - 2D9174CB09BA90380026E9FF /* PackedBitArray.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D403BCE08611A69001E31A1 /* PackedBitArray.cxx */; }; - 2D9174CC09BA90380026E9FF /* TIADebug.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D30F8750868A4DB00938B9D /* TIADebug.cxx */; }; - 2D9174CD09BA90380026E9FF /* YaccParser.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D313F0A0879C4C0005BD3E5 /* YaccParser.cxx */; }; - 2D9174CE09BA90380026E9FF /* Cart3E.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D9555D90880E78000466554 /* Cart3E.cxx */; }; - 2D9174CF09BA90380026E9FF /* CpuDebug.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D9555DD0880E79600466554 /* CpuDebug.cxx */; }; - 2D9174DC09BA90380026E9FF /* Expression.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DF971DE0892CEA400F64D23 /* Expression.cxx */; }; - 2D9174F109BA90380026E9FF /* InputTextDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D02207F08A301F200B9C76B /* InputTextDialog.cxx */; }; - 2D9174F209BA90380026E9FF /* CheckListWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DEF21F808BC033500B246B4 /* CheckListWidget.cxx */; }; - 2D9174F309BA90380026E9FF /* StringListWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DEF21FA08BC033500B246B4 /* StringListWidget.cxx */; }; - 2D9174F409BA90380026E9FF /* CommandDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D73959308C3EB4E0060BB99 /* CommandDialog.cxx */; }; - 2D9174F509BA90380026E9FF /* CommandMenu.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D73959508C3EB4E0060BB99 /* CommandMenu.cxx */; }; - 2D9174F609BA90380026E9FF /* ColorWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9E408C603EC00A73076 /* ColorWidget.cxx */; }; - 2D9174F709BA90380026E9FF /* CpuWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9E608C603EC00A73076 /* CpuWidget.cxx */; }; - 2D9174F809BA90380026E9FF /* DataGridOpsWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9E808C603EC00A73076 /* DataGridOpsWidget.cxx */; }; - 2D9174F909BA90380026E9FF /* DataGridWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9EA08C603EC00A73076 /* DataGridWidget.cxx */; }; - 2D9174FA09BA90380026E9FF /* DebuggerDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9EC08C603EC00A73076 /* DebuggerDialog.cxx */; }; - 2D9174FB09BA90380026E9FF /* PromptWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9EE08C603EC00A73076 /* PromptWidget.cxx */; }; - 2D9174FC09BA90380026E9FF /* RamWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9F008C603EC00A73076 /* RamWidget.cxx */; }; - 2D9174FD09BA90380026E9FF /* RomListWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9F208C603EC00A73076 /* RomListWidget.cxx */; }; - 2D9174FE09BA90380026E9FF /* RomWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9F408C603EC00A73076 /* RomWidget.cxx */; }; - 2D9174FF09BA90380026E9FF /* TiaInfoWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9F608C603EC00A73076 /* TiaInfoWidget.cxx */; }; - 2D91750009BA90380026E9FF /* TiaOutputWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9F808C603EC00A73076 /* TiaOutputWidget.cxx */; }; - 2D91750109BA90380026E9FF /* TiaWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9FA08C603EC00A73076 /* TiaWidget.cxx */; }; - 2D91750209BA90380026E9FF /* ToggleBitWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9FC08C603EC00A73076 /* ToggleBitWidget.cxx */; }; - 2D91750309BA90380026E9FF /* TogglePixelWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20F9FE08C603EC00A73076 /* TogglePixelWidget.cxx */; }; - 2D91750409BA90380026E9FF /* ToggleWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D20FA0008C603EC00A73076 /* ToggleWidget.cxx */; }; - 2D91750609BA90380026E9FF /* TiaZoomWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D6CC10308C811A600B8F642 /* TiaZoomWidget.cxx */; }; - 2D91750709BA90380026E9FF /* TIASnd.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2DE7242D08CE910900C889A8 /* TIASnd.cxx */; }; - 2D91750809BA90380026E9FF /* AudioWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D23318F0900B5EF00613B1F /* AudioWidget.cxx */; }; - 2D91750B09BA90380026E9FF /* EventMappingWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D05FF5E096E269100A518FE /* EventMappingWidget.cxx */; }; - 2D91750C09BA90380026E9FF /* InputDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2D05FF60096E269100A518FE /* InputDialog.cxx */; }; - 2D91750F09BA90380026E9FF /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; - 2D91751009BA90380026E9FF /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DEB3D4C0629BD24007EBBD3 /* OpenGL.framework */; }; - 2D91751109BA90380026E9FF /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D4764C806683C5F00F63D87 /* SDL.framework */; }; - 2D91751209BA90380026E9FF /* ApplicationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D17D98E08BC398400E47F69 /* ApplicationServices.framework */; }; - 2D91751409BA90380026E9FF /* SDL.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2D4764C806683C5F00F63D87 /* SDL.framework */; }; - 2DEFB40C09C3386F00754289 /* Cart.icns in Resources */ = {isa = PBXBuildFile; fileRef = 2DEFB40B09C3386F00754289 /* Cart.icns */; }; - DC07A3C80CAD738A009B4BC9 /* StateManager.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC07A3C60CAD738A009B4BC9 /* StateManager.cxx */; }; - DC07A3C90CAD738A009B4BC9 /* StateManager.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC07A3C70CAD738A009B4BC9 /* StateManager.hxx */; }; - DC0984850D3985160073C852 /* CartSB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0984830D3985160073C852 /* CartSB.cxx */; }; - DC0984860D3985160073C852 /* CartSB.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0984840D3985160073C852 /* CartSB.hxx */; }; - DC0B000014BA2BEB00CF5E7E /* JoystickWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFF214BA2BEB00CF5E7E /* JoystickWidget.cxx */; }; - DC0B000114BA2BEB00CF5E7E /* JoystickWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFF314BA2BEB00CF5E7E /* JoystickWidget.hxx */; }; - DC0B000214BA2BEB00CF5E7E /* KeyboardWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFF414BA2BEB00CF5E7E /* KeyboardWidget.cxx */; }; - DC0B000314BA2BEB00CF5E7E /* KeyboardWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFF514BA2BEB00CF5E7E /* KeyboardWidget.hxx */; }; - DC0B000414BA2BEB00CF5E7E /* NullControlWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFF614BA2BEB00CF5E7E /* NullControlWidget.hxx */; }; - DC0B000514BA2BEB00CF5E7E /* PaddleWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFF714BA2BEB00CF5E7E /* PaddleWidget.cxx */; }; - DC0B000614BA2BEB00CF5E7E /* PaddleWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFF814BA2BEB00CF5E7E /* PaddleWidget.hxx */; }; - DC0BFFF914BA2BEB00CF5E7E /* BoosterWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFEB14BA2BEB00CF5E7E /* BoosterWidget.cxx */; }; - DC0BFFFA14BA2BEB00CF5E7E /* BoosterWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFEC14BA2BEB00CF5E7E /* BoosterWidget.hxx */; }; - DC0BFFFB14BA2BEB00CF5E7E /* ControllerWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFED14BA2BEB00CF5E7E /* ControllerWidget.hxx */; }; - DC0BFFFC14BA2BEB00CF5E7E /* DrivingWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFEE14BA2BEB00CF5E7E /* DrivingWidget.cxx */; }; - DC0BFFFD14BA2BEB00CF5E7E /* DrivingWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFEF14BA2BEB00CF5E7E /* DrivingWidget.hxx */; }; - DC0BFFFE14BA2BEB00CF5E7E /* GenesisWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFF014BA2BEB00CF5E7E /* GenesisWidget.cxx */; }; - DC0BFFFF14BA2BEB00CF5E7E /* GenesisWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFF114BA2BEB00CF5E7E /* GenesisWidget.hxx */; }; - DC0D76A6177259C3005C7805 /* ConfigPathDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0D76A2177259C3005C7805 /* ConfigPathDialog.cxx */; }; - DC0D76A7177259C3005C7805 /* ConfigPathDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0D76A3177259C3005C7805 /* ConfigPathDialog.hxx */; }; - DC0D76A8177259C3005C7805 /* SnapshotDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0D76A4177259C3005C7805 /* SnapshotDialog.cxx */; }; - DC0D76A9177259C3005C7805 /* SnapshotDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0D76A5177259C3005C7805 /* SnapshotDialog.hxx */; }; - DC0DF8690F0DAAF500B0F1F3 /* GlobalPropsDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0DF8670F0DAAF500B0F1F3 /* GlobalPropsDialog.cxx */; }; - DC0DF86A0F0DAAF500B0F1F3 /* GlobalPropsDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0DF8680F0DAAF500B0F1F3 /* GlobalPropsDialog.hxx */; }; - DC11F78D0DB36933003B505E /* MT24LC256.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC11F78B0DB36933003B505E /* MT24LC256.cxx */; }; - DC11F78E0DB36933003B505E /* MT24LC256.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC11F78C0DB36933003B505E /* MT24LC256.hxx */; }; - DC173F760E2CAC1E00320F94 /* ContextMenu.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC173F740E2CAC1E00320F94 /* ContextMenu.cxx */; }; - DC173F770E2CAC1E00320F94 /* ContextMenu.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC173F750E2CAC1E00320F94 /* ContextMenu.hxx */; }; - DC17E8091361FDB500397A9E /* pngdebug.h in Headers */ = {isa = PBXBuildFile; fileRef = DC17E8051361FDB500397A9E /* pngdebug.h */; }; - DC17E80A1361FDB500397A9E /* pnginfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DC17E8061361FDB500397A9E /* pnginfo.h */; }; - DC17E80B1361FDB500397A9E /* pnglibconf.h in Headers */ = {isa = PBXBuildFile; fileRef = DC17E8071361FDB500397A9E /* pnglibconf.h */; }; - DC17E80C1361FDB500397A9E /* pngstruct.h in Headers */ = {isa = PBXBuildFile; fileRef = DC17E8081361FDB500397A9E /* pngstruct.h */; }; - DC1FC18A0DB3B2C7009B3DF7 /* SerialPortMACOSX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC1FC1880DB3B2C7009B3DF7 /* SerialPortMACOSX.cxx */; }; - DC1FC18B0DB3B2C7009B3DF7 /* SerialPortMACOSX.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC1FC1890DB3B2C7009B3DF7 /* SerialPortMACOSX.hxx */; }; - DC20D6F3138EB130002A7428 /* StringList.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC20D6F1138EB130002A7428 /* StringList.hxx */; }; - DC20D6F4138EB130002A7428 /* StringParser.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC20D6F2138EB130002A7428 /* StringParser.hxx */; }; - DC3C3CDC173B1EB2009FFE61 /* Variant.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC3C3CDB173B1EB2009FFE61 /* Variant.hxx */; }; - DC3C3CE1173B1EC8009FFE61 /* FileListWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3C3CDF173B1EC8009FFE61 /* FileListWidget.cxx */; }; - DC3C3CE2173B1EC8009FFE61 /* FileListWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC3C3CE0173B1EC8009FFE61 /* FileListWidget.hxx */; }; - DC3E4A6614B25EB30071D7BC /* CartCM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3E4A6014B25EB30071D7BC /* CartCM.cxx */; }; - DC3E4A6714B25EB30071D7BC /* CartCM.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC3E4A6114B25EB30071D7BC /* CartCM.hxx */; }; - DC3E4A6814B25EB30071D7BC /* CompuMate.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3E4A6214B25EB30071D7BC /* CompuMate.cxx */; }; - DC3E4A6914B25EB30071D7BC /* CompuMate.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC3E4A6314B25EB30071D7BC /* CompuMate.hxx */; }; - DC3E4A6A14B25EB30071D7BC /* MindLink.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3E4A6414B25EB30071D7BC /* MindLink.cxx */; }; - DC3E4A6B14B25EB30071D7BC /* MindLink.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC3E4A6514B25EB30071D7BC /* MindLink.hxx */; }; - DC3F601717C9140100A1977D /* ConsoleBFont.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC3F601517C9140100A1977D /* ConsoleBFont.hxx */; }; - DC3F601817C9140100A1977D /* ConsoleMediumBFont.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC3F601617C9140100A1977D /* ConsoleMediumBFont.hxx */; }; - DC3FE47C11C7D35600C91C72 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE46A11C7D35600C91C72 /* png.c */; }; - DC3FE47D11C7D35600C91C72 /* png.h in Headers */ = {isa = PBXBuildFile; fileRef = DC3FE46B11C7D35600C91C72 /* png.h */; }; - DC3FE47E11C7D35600C91C72 /* pngconf.h in Headers */ = {isa = PBXBuildFile; fileRef = DC3FE46C11C7D35600C91C72 /* pngconf.h */; }; - DC3FE47F11C7D35600C91C72 /* pngerror.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE46D11C7D35600C91C72 /* pngerror.c */; }; - DC3FE48011C7D35600C91C72 /* pngget.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE46E11C7D35600C91C72 /* pngget.c */; }; - DC3FE48111C7D35600C91C72 /* pngmem.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE46F11C7D35600C91C72 /* pngmem.c */; }; - DC3FE48211C7D35600C91C72 /* pngpread.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47011C7D35600C91C72 /* pngpread.c */; }; - DC3FE48311C7D35600C91C72 /* pngpriv.h in Headers */ = {isa = PBXBuildFile; fileRef = DC3FE47111C7D35600C91C72 /* pngpriv.h */; }; - DC3FE48411C7D35600C91C72 /* pngread.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47211C7D35600C91C72 /* pngread.c */; }; - DC3FE48511C7D35600C91C72 /* pngrio.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47311C7D35600C91C72 /* pngrio.c */; }; - DC3FE48611C7D35600C91C72 /* pngrtran.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47411C7D35600C91C72 /* pngrtran.c */; }; - DC3FE48711C7D35600C91C72 /* pngrutil.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47511C7D35600C91C72 /* pngrutil.c */; }; - DC3FE48811C7D35600C91C72 /* pngset.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47611C7D35600C91C72 /* pngset.c */; }; - DC3FE48911C7D35600C91C72 /* pngtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47711C7D35600C91C72 /* pngtrans.c */; }; - DC3FE48A11C7D35600C91C72 /* pngwio.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47811C7D35600C91C72 /* pngwio.c */; }; - DC3FE48B11C7D35600C91C72 /* pngwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47911C7D35600C91C72 /* pngwrite.c */; }; - DC3FE48C11C7D35600C91C72 /* pngwtran.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47A11C7D35600C91C72 /* pngwtran.c */; }; - DC3FE48D11C7D35600C91C72 /* pngwutil.c in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE47B11C7D35600C91C72 /* pngwutil.c */; }; - DC3FE49F11C7D3FE00C91C72 /* PNGLibrary.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3FE49D11C7D3FE00C91C72 /* PNGLibrary.cxx */; }; - DC3FE4A011C7D3FE00C91C72 /* PNGLibrary.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC3FE49E11C7D3FE00C91C72 /* PNGLibrary.hxx */; }; - DC449CAF176FF512004FA2D4 /* RomListSettings.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC449CAD176FF512004FA2D4 /* RomListSettings.cxx */; }; - DC449CB0176FF512004FA2D4 /* RomListSettings.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC449CAE176FF512004FA2D4 /* RomListSettings.hxx */; }; - DC4613670D92C03600D8DAB9 /* RomAuditDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC4613650D92C03600D8DAB9 /* RomAuditDialog.cxx */; }; - DC4613680D92C03600D8DAB9 /* RomAuditDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC4613660D92C03600D8DAB9 /* RomAuditDialog.hxx */; }; - DC47455509C34BFA00EDDA3A /* BankRomCheat.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC47454A09C34BFA00EDDA3A /* BankRomCheat.cxx */; }; - DC47455609C34BFA00EDDA3A /* BankRomCheat.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC47454B09C34BFA00EDDA3A /* BankRomCheat.hxx */; }; - DC47455709C34BFA00EDDA3A /* Cheat.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC47454C09C34BFA00EDDA3A /* Cheat.hxx */; }; - DC47455809C34BFA00EDDA3A /* CheatCodeDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC47454D09C34BFA00EDDA3A /* CheatCodeDialog.cxx */; }; - DC47455909C34BFA00EDDA3A /* CheatCodeDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC47454E09C34BFA00EDDA3A /* CheatCodeDialog.hxx */; }; - DC47455A09C34BFA00EDDA3A /* CheatManager.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC47454F09C34BFA00EDDA3A /* CheatManager.cxx */; }; - DC47455B09C34BFA00EDDA3A /* CheatManager.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC47455009C34BFA00EDDA3A /* CheatManager.hxx */; }; - DC47455C09C34BFA00EDDA3A /* CheetahCheat.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC47455109C34BFA00EDDA3A /* CheetahCheat.cxx */; }; - DC47455D09C34BFA00EDDA3A /* CheetahCheat.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC47455209C34BFA00EDDA3A /* CheetahCheat.hxx */; }; - DC47455E09C34BFA00EDDA3A /* RamCheat.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC47455309C34BFA00EDDA3A /* RamCheat.cxx */; }; - DC47455F09C34BFA00EDDA3A /* RamCheat.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC47455409C34BFA00EDDA3A /* RamCheat.hxx */; }; - DC487FB60DA5350900E12499 /* AtariVox.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC487FB40DA5350900E12499 /* AtariVox.cxx */; }; - DC487FB70DA5350900E12499 /* AtariVox.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC487FB50DA5350900E12499 /* AtariVox.hxx */; }; - DC49F90514F7D0DB000704B0 /* NTSCFilter.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC49F90314F7D0DB000704B0 /* NTSCFilter.cxx */; }; - DC49F90614F7D0DB000704B0 /* NTSCFilter.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC49F90414F7D0DB000704B0 /* NTSCFilter.hxx */; }; - DC4AC6EF0DC8DACB00CD3AD2 /* RiotWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC4AC6ED0DC8DACB00CD3AD2 /* RiotWidget.cxx */; }; - DC4AC6F00DC8DACB00CD3AD2 /* RiotWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC4AC6EE0DC8DACB00CD3AD2 /* RiotWidget.hxx */; }; - DC4AC6F30DC8DAEF00CD3AD2 /* SaveKey.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC4AC6F10DC8DAEF00CD3AD2 /* SaveKey.cxx */; }; - DC4AC6F40DC8DAEF00CD3AD2 /* SaveKey.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC4AC6F20DC8DAEF00CD3AD2 /* SaveKey.hxx */; }; - DC4AF1F312E39F700090B82E /* Thumbulator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC4AF1F112E39F700090B82E /* Thumbulator.cxx */; }; - DC4AF1F412E39F700090B82E /* Thumbulator.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC4AF1F212E39F700090B82E /* Thumbulator.hxx */; }; - DC5C76B014C2709E0031EBC7 /* StellaKeys.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC5C76AF14C2709E0031EBC7 /* StellaKeys.hxx */; }; - DC5D1AA7102C6FC900E59AC1 /* Stack.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC5D1AA6102C6FC900E59AC1 /* Stack.hxx */; }; - DC5D2C520F117CFD004D1660 /* Rect.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC5D2C4E0F117CFD004D1660 /* Rect.hxx */; }; - DC5D2C530F117CFD004D1660 /* StellaFont.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC5D2C4F0F117CFD004D1660 /* StellaFont.hxx */; }; - DC5D2C540F117CFD004D1660 /* StellaLargeFont.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC5D2C500F117CFD004D1660 /* StellaLargeFont.hxx */; }; - DC5D2C550F117CFD004D1660 /* StellaMediumFont.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC5D2C510F117CFD004D1660 /* StellaMediumFont.hxx */; }; - DC5D2C600F129B1E004D1660 /* LauncherFilterDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC5D2C5E0F129B1E004D1660 /* LauncherFilterDialog.cxx */; }; - DC5D2C610F129B1E004D1660 /* LauncherFilterDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC5D2C5F0F129B1E004D1660 /* LauncherFilterDialog.hxx */; }; - DC64EB201152F9C000DC9140 /* CartDPCPlus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC64EB1E1152F9C000DC9140 /* CartDPCPlus.cxx */; }; - DC64EB211152F9C000DC9140 /* CartDPCPlus.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC64EB1F1152F9C000DC9140 /* CartDPCPlus.hxx */; }; - DC752D951513E9F7005B0D24 /* atari_ntsc_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = DC752D921513E9F7005B0D24 /* atari_ntsc_impl.h */; }; - DC752D961513E9F7005B0D24 /* atari_ntsc.c in Sources */ = {isa = PBXBuildFile; fileRef = DC752D931513E9F7005B0D24 /* atari_ntsc.c */; }; - DC752D971513E9F7005B0D24 /* atari_ntsc.h in Headers */ = {isa = PBXBuildFile; fileRef = DC752D941513E9F7005B0D24 /* atari_ntsc.h */; }; - DC7A769A13FEA40300ED8633 /* LoggerDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC7A769813FEA40300ED8633 /* LoggerDialog.cxx */; }; - DC7A769B13FEA40300ED8633 /* LoggerDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC7A769913FEA40300ED8633 /* LoggerDialog.hxx */; }; - DC8078DB0B4BD5F3005E9305 /* DebuggerExpressions.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC8078DA0B4BD5F3005E9305 /* DebuggerExpressions.hxx */; }; - DC8078EA0B4BD697005E9305 /* UIDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC8078E60B4BD697005E9305 /* UIDialog.cxx */; }; - DC8078EB0B4BD697005E9305 /* UIDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC8078E70B4BD697005E9305 /* UIDialog.hxx */; }; - DC84E11C1135988E00CA7C9D /* Genesis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC84E11A1135988E00CA7C9D /* Genesis.cxx */; }; - DC84E11D1135988E00CA7C9D /* Genesis.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC84E11B1135988E00CA7C9D /* Genesis.hxx */; }; - DC8AE5C31417804C00335D45 /* FBSurfaceGL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC8AE5BF1417804C00335D45 /* FBSurfaceGL.cxx */; }; - DC8AE5C41417804C00335D45 /* FBSurfaceGL.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC8AE5C01417804C00335D45 /* FBSurfaceGL.hxx */; }; - DC8AE5C51417804C00335D45 /* FBSurfaceTIA.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC8AE5C11417804C00335D45 /* FBSurfaceTIA.cxx */; }; - DC8AE5C61417804C00335D45 /* FBSurfaceTIA.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC8AE5C21417804C00335D45 /* FBSurfaceTIA.hxx */; }; - DC922D0614CAFB1E006EB471 /* CartFA2.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC922D0414CAFB1E006EB471 /* CartFA2.cxx */; }; - DC922D0714CAFB1E006EB471 /* CartFA2.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC922D0514CAFB1E006EB471 /* CartFA2.hxx */; }; - DC932D440F278A5200FEFEFC /* DefProps.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC932D3F0F278A5200FEFEFC /* DefProps.hxx */; }; - DC932D450F278A5200FEFEFC /* Serializable.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC932D400F278A5200FEFEFC /* Serializable.hxx */; }; - DC932D460F278A5200FEFEFC /* SerialPort.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC932D410F278A5200FEFEFC /* SerialPort.hxx */; }; - DC932D470F278A5200FEFEFC /* TIATables.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC932D420F278A5200FEFEFC /* TIATables.cxx */; }; - DC932D480F278A5200FEFEFC /* TIATables.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC932D430F278A5200FEFEFC /* TIATables.hxx */; }; - DC9EA8870F729A36000452B5 /* KidVid.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC9EA8850F729A36000452B5 /* KidVid.cxx */; }; - DC9EA8880F729A36000452B5 /* KidVid.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC9EA8860F729A36000452B5 /* KidVid.hxx */; }; - DCA00FF70DBABCAD00C3823D /* RiotDebug.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCA00FF50DBABCAD00C3823D /* RiotDebug.cxx */; }; - 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 */; }; - DCA6276116CB0D1C004E9AF0 /* FSNodePOSIX.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCA6276016CB0D1C004E9AF0 /* FSNodePOSIX.hxx */; }; - DCA6277416CB0D45004E9AF0 /* FSNodeFactory.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCA6276F16CB0D45004E9AF0 /* FSNodeFactory.hxx */; }; - DCA6277516CB0D45004E9AF0 /* FSNodeZIP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCA6277016CB0D45004E9AF0 /* FSNodeZIP.cxx */; }; - DCA6277616CB0D45004E9AF0 /* FSNodeZIP.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCA6277116CB0D45004E9AF0 /* FSNodeZIP.hxx */; }; - DCA6277716CB0D45004E9AF0 /* ZipHandler.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCA6277216CB0D45004E9AF0 /* ZipHandler.cxx */; }; - 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 */; }; - DCBD96891210314C0087CEFD /* ComboDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCBD96871210314C0087CEFD /* ComboDialog.cxx */; }; - DCBD968A1210314C0087CEFD /* ComboDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCBD96881210314C0087CEFD /* ComboDialog.hxx */; }; - DCD56D380B247D920092F9F8 /* Cart4A50.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCD56D360B247D920092F9F8 /* Cart4A50.cxx */; }; - DCD56D390B247D920092F9F8 /* Cart4A50.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCD56D370B247D920092F9F8 /* Cart4A50.hxx */; }; - DCD56D3C0B247DB40092F9F8 /* RectList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCD56D3A0B247DB40092F9F8 /* RectList.cxx */; }; - DCD56D3D0B247DB40092F9F8 /* RectList.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCD56D3B0B247DB40092F9F8 /* RectList.hxx */; }; - DCDBD3181556F60C00308CC4 /* CartCTY.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCDBD3151556F60C00308CC4 /* CartCTY.cxx */; }; - DCDBD3191556F60C00308CC4 /* CartCTY.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCDBD3161556F60C00308CC4 /* CartCTY.hxx */; }; - DCDBD31A1556F60C00308CC4 /* CartCTYTunes.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCDBD3171556F60C00308CC4 /* CartCTYTunes.hxx */; }; - DCE3BBF90C95CEDC00A671DF /* RomInfoWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCE3BBF50C95CEDC00A671DF /* RomInfoWidget.cxx */; }; - DCE3BBFA0C95CEDC00A671DF /* RomInfoWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCE3BBF60C95CEDC00A671DF /* RomInfoWidget.hxx */; }; - DCE6EB220DD9ADA00047AC28 /* TrackBall.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCE6EB200DD9ADA00047AC28 /* TrackBall.cxx */; }; - DCE6EB230DD9ADA00047AC28 /* TrackBall.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCE6EB210DD9ADA00047AC28 /* TrackBall.hxx */; }; - DCE9CC2A1103812700C86671 /* CartDebug.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCE9CC261103812700C86671 /* CartDebug.cxx */; }; - DCE9CC2B1103812700C86671 /* CartDebug.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCE9CC271103812700C86671 /* CartDebug.hxx */; }; - DCE9CC2C1103812700C86671 /* DiStella.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCE9CC281103812700C86671 /* DiStella.cxx */; }; - DCE9CC2D1103812700C86671 /* DiStella.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCE9CC291103812700C86671 /* DiStella.hxx */; }; - DCECD7A917A88E51000A9753 /* Base.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCECD7A717A88E51000A9753 /* Base.cxx */; }; - DCECD7AA17A88E51000A9753 /* Base.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCECD7A817A88E51000A9753 /* Base.hxx */; }; - DCECDAFB10B9DBDC00AF4E1B /* Device.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCECDAF310B9DBDC00AF4E1B /* Device.hxx */; }; - DCECDAFC10B9DBDC00AF4E1B /* M6502.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCECDAF410B9DBDC00AF4E1B /* M6502.cxx */; }; - DCECDAFD10B9DBDC00AF4E1B /* M6502.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCECDAF510B9DBDC00AF4E1B /* M6502.hxx */; }; - DCECDAFE10B9DBDC00AF4E1B /* NullDev.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCECDAF610B9DBDC00AF4E1B /* NullDev.cxx */; }; - DCECDAFF10B9DBDC00AF4E1B /* NullDev.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCECDAF710B9DBDC00AF4E1B /* NullDev.hxx */; }; - DCECDB0010B9DBDC00AF4E1B /* System.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCECDAF810B9DBDC00AF4E1B /* System.cxx */; }; - DCECDB0110B9DBDC00AF4E1B /* System.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCECDAF910B9DBDC00AF4E1B /* System.hxx */; }; - DCECDB0510B9DC0400AF4E1B /* bspf.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCECDB0210B9DC0400AF4E1B /* bspf.hxx */; }; - DCEECE560B5E5E540021D754 /* Cart0840.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCEECE540B5E5E540021D754 /* Cart0840.cxx */; }; - DCEECE570B5E5E540021D754 /* Cart0840.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCEECE550B5E5E540021D754 /* Cart0840.hxx */; }; - DCF28EE91729A5CD00DD0CA9 /* Cart2KWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EAC1729A5CD00DD0CA9 /* Cart2KWidget.cxx */; }; - DCF28EEA1729A5CD00DD0CA9 /* Cart2KWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EAD1729A5CD00DD0CA9 /* Cart2KWidget.hxx */; }; - DCF28EEB1729A5CD00DD0CA9 /* Cart3EWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EAE1729A5CD00DD0CA9 /* Cart3EWidget.cxx */; }; - DCF28EEC1729A5CD00DD0CA9 /* Cart3EWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EAF1729A5CD00DD0CA9 /* Cart3EWidget.hxx */; }; - DCF28EED1729A5CD00DD0CA9 /* Cart3FWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EB01729A5CD00DD0CA9 /* Cart3FWidget.cxx */; }; - DCF28EEE1729A5CD00DD0CA9 /* Cart3FWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EB11729A5CD00DD0CA9 /* Cart3FWidget.hxx */; }; - DCF28EEF1729A5CD00DD0CA9 /* Cart4A50Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EB21729A5CD00DD0CA9 /* Cart4A50Widget.cxx */; }; - DCF28EF01729A5CD00DD0CA9 /* Cart4A50Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EB31729A5CD00DD0CA9 /* Cart4A50Widget.hxx */; }; - DCF28EF11729A5CD00DD0CA9 /* Cart4KWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EB41729A5CD00DD0CA9 /* Cart4KWidget.cxx */; }; - DCF28EF21729A5CD00DD0CA9 /* Cart4KWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EB51729A5CD00DD0CA9 /* Cart4KWidget.hxx */; }; - DCF28EF31729A5CD00DD0CA9 /* Cart0840Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EB61729A5CD00DD0CA9 /* Cart0840Widget.cxx */; }; - DCF28EF41729A5CD00DD0CA9 /* Cart0840Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EB71729A5CD00DD0CA9 /* Cart0840Widget.hxx */; }; - DCF28EF51729A5CD00DD0CA9 /* CartARWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EB81729A5CD00DD0CA9 /* CartARWidget.cxx */; }; - DCF28EF61729A5CD00DD0CA9 /* CartARWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EB91729A5CD00DD0CA9 /* CartARWidget.hxx */; }; - DCF28EF71729A5CD00DD0CA9 /* CartCMWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EBA1729A5CD00DD0CA9 /* CartCMWidget.cxx */; }; - DCF28EF81729A5CD00DD0CA9 /* CartCMWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EBB1729A5CD00DD0CA9 /* CartCMWidget.hxx */; }; - DCF28EF91729A5CD00DD0CA9 /* CartCTYWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EBC1729A5CD00DD0CA9 /* CartCTYWidget.cxx */; }; - DCF28EFA1729A5CD00DD0CA9 /* CartCTYWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EBD1729A5CD00DD0CA9 /* CartCTYWidget.hxx */; }; - DCF28EFB1729A5CD00DD0CA9 /* CartCVWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EBE1729A5CD00DD0CA9 /* CartCVWidget.cxx */; }; - DCF28EFC1729A5CD00DD0CA9 /* CartCVWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EBF1729A5CD00DD0CA9 /* CartCVWidget.hxx */; }; - DCF28EFD1729A5CD00DD0CA9 /* CartDebugWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EC01729A5CD00DD0CA9 /* CartDebugWidget.hxx */; }; - DCF28EFE1729A5CD00DD0CA9 /* CartDPCPlusWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EC11729A5CD00DD0CA9 /* CartDPCPlusWidget.cxx */; }; - DCF28EFF1729A5CD00DD0CA9 /* CartDPCPlusWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EC21729A5CD00DD0CA9 /* CartDPCPlusWidget.hxx */; }; - DCF28F001729A5CD00DD0CA9 /* CartDPCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EC31729A5CD00DD0CA9 /* CartDPCWidget.cxx */; }; - DCF28F011729A5CD00DD0CA9 /* CartDPCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EC41729A5CD00DD0CA9 /* CartDPCWidget.hxx */; }; - DCF28F021729A5CD00DD0CA9 /* CartE0Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EC51729A5CD00DD0CA9 /* CartE0Widget.cxx */; }; - DCF28F031729A5CD00DD0CA9 /* CartE0Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EC61729A5CD00DD0CA9 /* CartE0Widget.hxx */; }; - DCF28F041729A5CD00DD0CA9 /* CartE7Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EC71729A5CD00DD0CA9 /* CartE7Widget.cxx */; }; - DCF28F051729A5CD00DD0CA9 /* CartE7Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EC81729A5CD00DD0CA9 /* CartE7Widget.hxx */; }; - DCF28F061729A5CD00DD0CA9 /* CartEFSCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EC91729A5CD00DD0CA9 /* CartEFSCWidget.cxx */; }; - DCF28F071729A5CD00DD0CA9 /* CartEFSCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28ECA1729A5CD00DD0CA9 /* CartEFSCWidget.hxx */; }; - DCF28F081729A5CD00DD0CA9 /* CartEFWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28ECB1729A5CD00DD0CA9 /* CartEFWidget.cxx */; }; - DCF28F091729A5CD00DD0CA9 /* CartEFWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28ECC1729A5CD00DD0CA9 /* CartEFWidget.hxx */; }; - DCF28F0A1729A5CD00DD0CA9 /* CartF0Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28ECD1729A5CD00DD0CA9 /* CartF0Widget.cxx */; }; - DCF28F0B1729A5CD00DD0CA9 /* CartF0Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28ECE1729A5CD00DD0CA9 /* CartF0Widget.hxx */; }; - DCF28F0C1729A5CD00DD0CA9 /* CartF4SCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28ECF1729A5CD00DD0CA9 /* CartF4SCWidget.cxx */; }; - DCF28F0D1729A5CD00DD0CA9 /* CartF4SCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28ED01729A5CD00DD0CA9 /* CartF4SCWidget.hxx */; }; - DCF28F0E1729A5CD00DD0CA9 /* CartF4Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28ED11729A5CD00DD0CA9 /* CartF4Widget.cxx */; }; - DCF28F0F1729A5CD00DD0CA9 /* CartF4Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28ED21729A5CD00DD0CA9 /* CartF4Widget.hxx */; }; - DCF28F101729A5CD00DD0CA9 /* CartF6SCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28ED31729A5CD00DD0CA9 /* CartF6SCWidget.cxx */; }; - DCF28F111729A5CD00DD0CA9 /* CartF6SCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28ED41729A5CD00DD0CA9 /* CartF6SCWidget.hxx */; }; - DCF28F121729A5CD00DD0CA9 /* CartF6Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28ED51729A5CD00DD0CA9 /* CartF6Widget.cxx */; }; - DCF28F131729A5CD00DD0CA9 /* CartF6Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28ED61729A5CD00DD0CA9 /* CartF6Widget.hxx */; }; - DCF28F141729A5CD00DD0CA9 /* CartF8SCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28ED71729A5CD00DD0CA9 /* CartF8SCWidget.cxx */; }; - DCF28F151729A5CD00DD0CA9 /* CartF8SCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28ED81729A5CD00DD0CA9 /* CartF8SCWidget.hxx */; }; - DCF28F161729A5CD00DD0CA9 /* CartF8Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28ED91729A5CD00DD0CA9 /* CartF8Widget.cxx */; }; - DCF28F171729A5CD00DD0CA9 /* CartF8Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EDA1729A5CD00DD0CA9 /* CartF8Widget.hxx */; }; - DCF28F181729A5CD00DD0CA9 /* CartFA2Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EDB1729A5CD00DD0CA9 /* CartFA2Widget.cxx */; }; - DCF28F191729A5CD00DD0CA9 /* CartFA2Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EDC1729A5CD00DD0CA9 /* CartFA2Widget.hxx */; }; - DCF28F1A1729A5CD00DD0CA9 /* CartFAWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EDD1729A5CD00DD0CA9 /* CartFAWidget.cxx */; }; - DCF28F1B1729A5CD00DD0CA9 /* CartFAWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EDE1729A5CD00DD0CA9 /* CartFAWidget.hxx */; }; - DCF28F1C1729A5CD00DD0CA9 /* CartFEWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EDF1729A5CD00DD0CA9 /* CartFEWidget.cxx */; }; - DCF28F1D1729A5CD00DD0CA9 /* CartFEWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EE01729A5CD00DD0CA9 /* CartFEWidget.hxx */; }; - DCF28F1E1729A5CD00DD0CA9 /* CartMCWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EE11729A5CD00DD0CA9 /* CartMCWidget.cxx */; }; - DCF28F1F1729A5CD00DD0CA9 /* CartMCWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EE21729A5CD00DD0CA9 /* CartMCWidget.hxx */; }; - DCF28F201729A5CD00DD0CA9 /* CartSBWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EE31729A5CD00DD0CA9 /* CartSBWidget.cxx */; }; - DCF28F211729A5CD00DD0CA9 /* CartSBWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EE41729A5CD00DD0CA9 /* CartSBWidget.hxx */; }; - DCF28F221729A5CD00DD0CA9 /* CartUAWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EE51729A5CD00DD0CA9 /* CartUAWidget.cxx */; }; - DCF28F231729A5CD00DD0CA9 /* CartUAWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EE61729A5CD00DD0CA9 /* CartUAWidget.hxx */; }; - DCF28F241729A5CD00DD0CA9 /* CartX07Widget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF28EE71729A5CD00DD0CA9 /* CartX07Widget.cxx */; }; - DCF28F251729A5CD00DD0CA9 /* CartX07Widget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF28EE81729A5CD00DD0CA9 /* CartX07Widget.hxx */; }; - DCF467B50F93993B00B25D7A /* Array.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF467B10F93993B00B25D7A /* Array.hxx */; }; - DCF467B60F93993B00B25D7A /* SharedPtr.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF467B20F93993B00B25D7A /* SharedPtr.hxx */; }; - DCF467B80F93993B00B25D7A /* SoundNull.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF467B40F93993B00B25D7A /* SoundNull.hxx */; }; - DCF467BD0F9399F500B25D7A /* Version.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF467BC0F9399F500B25D7A /* Version.hxx */; }; - DCF467C20F939A1400B25D7A /* CartEF.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF467BE0F939A1400B25D7A /* CartEF.cxx */; }; - DCF467C30F939A1400B25D7A /* CartEF.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF467BF0F939A1400B25D7A /* CartEF.hxx */; }; - DCF467C40F939A1400B25D7A /* CartEFSC.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF467C00F939A1400B25D7A /* CartEFSC.cxx */; }; - DCF467C50F939A1400B25D7A /* CartEFSC.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF467C10F939A1400B25D7A /* CartEFSC.hxx */; }; - DCF7B0DD10A762FC007A2870 /* CartF0.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF7B0D910A762FC007A2870 /* CartF0.cxx */; }; - DCF7B0DE10A762FC007A2870 /* CartF0.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF7B0DA10A762FC007A2870 /* CartF0.hxx */; }; - DCF7B0DF10A762FC007A2870 /* CartFA.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF7B0DB10A762FC007A2870 /* CartFA.cxx */; }; - DCF7B0E010A762FC007A2870 /* CartFA.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF7B0DC10A762FC007A2870 /* CartFA.hxx */; }; -/* End PBXBuildFile section */ - -/* Begin PBXBuildRule section */ - 2D91751B09BA90380026E9FF /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.gcc.4_0; - fileType = sourcecode.c; - isEditable = 1; - outputFiles = ( - ); - }; - 2D91751C09BA90380026E9FF /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.gcc.4_0; - fileType = sourcecode.cpp; - isEditable = 1; - outputFiles = ( - ); - }; - 2D91751D09BA90390026E9FF /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.gcc.4_0; - fileType = sourcecode.asm; - isEditable = 1; - outputFiles = ( - ); - }; -/* End PBXBuildRule section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 2D91751309BA90380026E9FF /* CopyFiles */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - 2D91751409BA90380026E9FF /* SDL.framework in CopyFiles */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DCCC0C9609C354660088BFF1 /* CopyFiles */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 7; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; - 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; - 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; - 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; - 2D02207F08A301F200B9C76B /* InputTextDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = InputTextDialog.cxx; path = ../gui/InputTextDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2D02208008A301F200B9C76B /* InputTextDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = InputTextDialog.hxx; path = ../gui/InputTextDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2D05FF5B096E261E00A518FE /* MediaFactory.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = MediaFactory.hxx; path = ../emucore/MediaFactory.hxx; sourceTree = SOURCE_ROOT; }; - 2D05FF5E096E269100A518FE /* EventMappingWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = EventMappingWidget.cxx; path = ../gui/EventMappingWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D05FF5F096E269100A518FE /* EventMappingWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = EventMappingWidget.hxx; path = ../gui/EventMappingWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D05FF60096E269100A518FE /* InputDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = InputDialog.cxx; path = ../gui/InputDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2D05FF61096E269100A518FE /* InputDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = InputDialog.hxx; path = ../gui/InputDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2D113E090672BF2100317017 /* ../../docs */ = {isa = PBXFileReference; explicitFileType = folder; path = ../../docs; sourceTree = ""; }; - 2D16A8E106324136005DF364 /* Stella.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Stella.icns; sourceTree = SOURCE_ROOT; }; - 2D17D98E08BC398400E47F69 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = /System/Library/Frameworks/ApplicationServices.framework; sourceTree = ""; }; - 2D1A6CD4085135F9007CDBA8 /* AboutBox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AboutBox.h; sourceTree = SOURCE_ROOT; }; - 2D1A6CD5085135F9007CDBA8 /* AboutBox.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = AboutBox.m; sourceTree = SOURCE_ROOT; }; - 2D1A6CD808513610007CDBA8 /* AboutBox.nib */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; path = AboutBox.nib; sourceTree = SOURCE_ROOT; }; - 2D20F9E408C603EC00A73076 /* ColorWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ColorWidget.cxx; path = ../debugger/gui/ColorWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9E508C603EC00A73076 /* ColorWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = ColorWidget.hxx; path = ../debugger/gui/ColorWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9E608C603EC00A73076 /* CpuWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CpuWidget.cxx; path = ../debugger/gui/CpuWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9E708C603EC00A73076 /* CpuWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CpuWidget.hxx; path = ../debugger/gui/CpuWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9E808C603EC00A73076 /* DataGridOpsWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = DataGridOpsWidget.cxx; path = ../debugger/gui/DataGridOpsWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9E908C603EC00A73076 /* DataGridOpsWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = DataGridOpsWidget.hxx; path = ../debugger/gui/DataGridOpsWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9EA08C603EC00A73076 /* DataGridWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = DataGridWidget.cxx; path = ../debugger/gui/DataGridWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9EB08C603EC00A73076 /* DataGridWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = DataGridWidget.hxx; path = ../debugger/gui/DataGridWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9EC08C603EC00A73076 /* DebuggerDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = DebuggerDialog.cxx; path = ../debugger/gui/DebuggerDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9ED08C603EC00A73076 /* DebuggerDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = DebuggerDialog.hxx; path = ../debugger/gui/DebuggerDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9EE08C603EC00A73076 /* PromptWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PromptWidget.cxx; path = ../debugger/gui/PromptWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9EF08C603EC00A73076 /* PromptWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = PromptWidget.hxx; path = ../debugger/gui/PromptWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9F008C603EC00A73076 /* RamWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = RamWidget.cxx; path = ../debugger/gui/RamWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9F108C603EC00A73076 /* RamWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = RamWidget.hxx; path = ../debugger/gui/RamWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9F208C603EC00A73076 /* RomListWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = RomListWidget.cxx; path = ../debugger/gui/RomListWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9F308C603EC00A73076 /* RomListWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = RomListWidget.hxx; path = ../debugger/gui/RomListWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9F408C603EC00A73076 /* RomWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = RomWidget.cxx; path = ../debugger/gui/RomWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9F508C603EC00A73076 /* RomWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = RomWidget.hxx; path = ../debugger/gui/RomWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9F608C603EC00A73076 /* TiaInfoWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = TiaInfoWidget.cxx; path = ../debugger/gui/TiaInfoWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9F708C603EC00A73076 /* TiaInfoWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = TiaInfoWidget.hxx; path = ../debugger/gui/TiaInfoWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9F808C603EC00A73076 /* TiaOutputWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = TiaOutputWidget.cxx; path = ../debugger/gui/TiaOutputWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9F908C603EC00A73076 /* TiaOutputWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = TiaOutputWidget.hxx; path = ../debugger/gui/TiaOutputWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9FA08C603EC00A73076 /* TiaWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = TiaWidget.cxx; path = ../debugger/gui/TiaWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9FB08C603EC00A73076 /* TiaWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = TiaWidget.hxx; path = ../debugger/gui/TiaWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9FC08C603EC00A73076 /* ToggleBitWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ToggleBitWidget.cxx; path = ../debugger/gui/ToggleBitWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9FD08C603EC00A73076 /* ToggleBitWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = ToggleBitWidget.hxx; path = ../debugger/gui/ToggleBitWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20F9FE08C603EC00A73076 /* TogglePixelWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = TogglePixelWidget.cxx; path = ../debugger/gui/TogglePixelWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20F9FF08C603EC00A73076 /* TogglePixelWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = TogglePixelWidget.hxx; path = ../debugger/gui/TogglePixelWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D20FA0008C603EC00A73076 /* ToggleWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ToggleWidget.cxx; path = ../debugger/gui/ToggleWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D20FA0108C603EC00A73076 /* ToggleWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = ToggleWidget.hxx; path = ../debugger/gui/ToggleWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D23318F0900B5EF00613B1F /* AudioWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = AudioWidget.cxx; path = ../debugger/gui/AudioWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D2331900900B5EF00613B1F /* AudioWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = AudioWidget.hxx; path = ../debugger/gui/AudioWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D28DDE409DC2D9F00A17585 /* MenusEvents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MenusEvents.h; sourceTree = ""; }; - 2D30F8750868A4DB00938B9D /* TIADebug.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = TIADebug.cxx; path = ../debugger/TIADebug.cxx; sourceTree = SOURCE_ROOT; }; - 2D30F8760868A4DB00938B9D /* TIADebug.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = TIADebug.hxx; path = ../debugger/TIADebug.hxx; sourceTree = SOURCE_ROOT; }; - 2D313F0A0879C4C0005BD3E5 /* YaccParser.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = YaccParser.cxx; path = ../yacc/YaccParser.cxx; sourceTree = SOURCE_ROOT; }; - 2D313F0B0879C4C0005BD3E5 /* YaccParser.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = YaccParser.hxx; path = ../yacc/YaccParser.hxx; sourceTree = SOURCE_ROOT; }; - 2D403BA0086116D1001E31A1 /* EditableWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = EditableWidget.cxx; path = ../gui/EditableWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D403BA1086116D1001E31A1 /* EditableWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = EditableWidget.hxx; path = ../gui/EditableWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D403BA4086116D1001E31A1 /* EditTextWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = EditTextWidget.cxx; path = ../gui/EditTextWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D403BA5086116D1001E31A1 /* EditTextWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = EditTextWidget.hxx; path = ../gui/EditTextWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D403BCE08611A69001E31A1 /* PackedBitArray.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PackedBitArray.cxx; path = ../debugger/PackedBitArray.cxx; sourceTree = SOURCE_ROOT; }; - 2D403BCF08611A69001E31A1 /* PackedBitArray.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = PackedBitArray.hxx; path = ../debugger/PackedBitArray.hxx; sourceTree = SOURCE_ROOT; }; - 2D4764C806683C5F00F63D87 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SDL.framework; sourceTree = SOURCE_ROOT; }; - 2D659E2D085D3DD6005D96C8 /* Debugger.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Debugger.cxx; path = ../debugger/Debugger.cxx; sourceTree = SOURCE_ROOT; }; - 2D659E2E085D3DD6005D96C8 /* Debugger.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Debugger.hxx; path = ../debugger/Debugger.hxx; sourceTree = SOURCE_ROOT; }; - 2D659E31085D3DD6005D96C8 /* DebuggerParser.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = DebuggerParser.cxx; path = ../debugger/DebuggerParser.cxx; sourceTree = SOURCE_ROOT; }; - 2D659E32085D3DD6005D96C8 /* DebuggerParser.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = DebuggerParser.hxx; path = ../debugger/DebuggerParser.hxx; sourceTree = SOURCE_ROOT; }; - 2D6CC10308C811A600B8F642 /* TiaZoomWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = TiaZoomWidget.cxx; path = ../debugger/gui/TiaZoomWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2D6CC10408C811A600B8F642 /* TiaZoomWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = TiaZoomWidget.hxx; path = ../debugger/gui/TiaZoomWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2D733D5D062893E7006265D9 /* FrameBufferGL.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = FrameBufferGL.cxx; path = ../common/FrameBufferGL.cxx; sourceTree = SOURCE_ROOT; }; - 2D733D5E062893E7006265D9 /* FrameBufferGL.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = FrameBufferGL.hxx; path = ../common/FrameBufferGL.hxx; sourceTree = SOURCE_ROOT; }; - 2D733D61062893E7006265D9 /* FrameBufferSoft.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = FrameBufferSoft.cxx; path = ../common/FrameBufferSoft.cxx; sourceTree = SOURCE_ROOT; }; - 2D733D62062893E7006265D9 /* FrameBufferSoft.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = FrameBufferSoft.hxx; path = ../common/FrameBufferSoft.hxx; sourceTree = SOURCE_ROOT; }; - 2D733D6E062895B2006265D9 /* EventHandler.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cxx; path = ../emucore/EventHandler.cxx; sourceTree = SOURCE_ROOT; }; - 2D733D6F062895B2006265D9 /* EventHandler.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = EventHandler.hxx; path = ../emucore/EventHandler.hxx; sourceTree = SOURCE_ROOT; }; - 2D733D70062895B2006265D9 /* FrameBuffer.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = FrameBuffer.cxx; path = ../emucore/FrameBuffer.cxx; sourceTree = SOURCE_ROOT; }; - 2D733D71062895B2006265D9 /* FrameBuffer.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = FrameBuffer.hxx; path = ../emucore/FrameBuffer.hxx; sourceTree = SOURCE_ROOT; }; - 2D733D77062895F1006265D9 /* Settings.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Settings.hxx; path = ../emucore/Settings.hxx; sourceTree = SOURCE_ROOT; }; - 2D73959308C3EB4E0060BB99 /* CommandDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CommandDialog.cxx; path = ../gui/CommandDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2D73959408C3EB4E0060BB99 /* CommandDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CommandDialog.hxx; path = ../gui/CommandDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2D73959508C3EB4E0060BB99 /* CommandMenu.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CommandMenu.cxx; path = ../gui/CommandMenu.cxx; sourceTree = SOURCE_ROOT; }; - 2D73959608C3EB4E0060BB99 /* CommandMenu.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CommandMenu.hxx; path = ../gui/CommandMenu.hxx; sourceTree = SOURCE_ROOT; }; - 2D7B4F6C063B513200579B93 /* Credits.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = Credits.html; sourceTree = SOURCE_ROOT; }; - 2D91751E09BA90390026E9FF /* Stella.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Stella.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 2D9217FA0857CC88001D664B /* ConsoleFont.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = ConsoleFont.hxx; path = ../gui/ConsoleFont.hxx; sourceTree = SOURCE_ROOT; }; - 2D9217FB0857CC88001D664B /* Font.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Font.cxx; path = ../gui/Font.cxx; sourceTree = SOURCE_ROOT; }; - 2D9217FC0857CC88001D664B /* Font.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Font.hxx; path = ../gui/Font.hxx; sourceTree = SOURCE_ROOT; }; - 2D944848062904E800DD9879 /* Settings.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Settings.cxx; path = ../emucore/Settings.cxx; sourceTree = SOURCE_ROOT; }; - 2D944866062911CD00DD9879 /* SettingsMACOSX.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SettingsMACOSX.cxx; sourceTree = ""; }; - 2D94486C0629124700DD9879 /* SettingsMACOSX.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; path = SettingsMACOSX.hxx; sourceTree = ""; }; - 2D9555D90880E78000466554 /* Cart3E.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Cart3E.cxx; path = ../emucore/Cart3E.cxx; sourceTree = SOURCE_ROOT; }; - 2D9555DA0880E78000466554 /* Cart3E.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Cart3E.hxx; path = ../emucore/Cart3E.hxx; sourceTree = SOURCE_ROOT; }; - 2D9555DD0880E79600466554 /* CpuDebug.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CpuDebug.cxx; path = ../debugger/CpuDebug.cxx; sourceTree = SOURCE_ROOT; }; - 2D9555DE0880E79600466554 /* CpuDebug.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CpuDebug.hxx; path = ../debugger/CpuDebug.hxx; sourceTree = SOURCE_ROOT; }; - 2DDA34020665817D00CDD299 /* SoundSDL.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SoundSDL.cxx; path = ../common/SoundSDL.cxx; sourceTree = SOURCE_ROOT; }; - 2DDA34030665817D00CDD299 /* SoundSDL.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = SoundSDL.hxx; path = ../common/SoundSDL.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEA0A0845700300812C11 /* mainSDL.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = mainSDL.cxx; path = ../common/mainSDL.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEA0C0845708800812C11 /* FSNodePOSIX.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = FSNodePOSIX.cxx; path = ../unix/FSNodePOSIX.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEA0E0845709700812C11 /* OSystemMACOSX.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = OSystemMACOSX.cxx; sourceTree = ""; }; - 2DDBEA0F0845709700812C11 /* OSystemMACOSX.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; path = OSystemMACOSX.hxx; sourceTree = ""; }; - 2DDBEAA3084578BF00812C11 /* AboutDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialog.cxx; path = ../gui/AboutDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAA4084578BF00812C11 /* AboutDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = AboutDialog.hxx; path = ../gui/AboutDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAA6084578BF00812C11 /* AudioDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = AudioDialog.cxx; path = ../gui/AudioDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAA7084578BF00812C11 /* AudioDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = AudioDialog.hxx; path = ../gui/AudioDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAA8084578BF00812C11 /* BrowserDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = BrowserDialog.cxx; path = ../gui/BrowserDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAA9084578BF00812C11 /* BrowserDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = BrowserDialog.hxx; path = ../gui/BrowserDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAAA084578BF00812C11 /* Command.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Command.hxx; path = ../gui/Command.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAAB084578BF00812C11 /* Dialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Dialog.cxx; path = ../gui/Dialog.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAAC084578BF00812C11 /* Dialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Dialog.hxx; path = ../gui/Dialog.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAAD084578BF00812C11 /* DialogContainer.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = DialogContainer.cxx; path = ../gui/DialogContainer.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAAE084578BF00812C11 /* DialogContainer.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = DialogContainer.hxx; path = ../gui/DialogContainer.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAB2084578BF00812C11 /* GameInfoDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = GameInfoDialog.cxx; path = ../gui/GameInfoDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAB3084578BF00812C11 /* GameInfoDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = GameInfoDialog.hxx; path = ../gui/GameInfoDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAB4084578BF00812C11 /* GameList.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = GameList.cxx; path = ../gui/GameList.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAB5084578BF00812C11 /* GameList.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = GameList.hxx; path = ../gui/GameList.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAB6084578BF00812C11 /* GuiObject.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = GuiObject.hxx; path = ../gui/GuiObject.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAB8084578BF00812C11 /* HelpDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = HelpDialog.cxx; path = ../gui/HelpDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAB9084578BF00812C11 /* HelpDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = HelpDialog.hxx; path = ../gui/HelpDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEABA084578BF00812C11 /* Launcher.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Launcher.cxx; path = ../gui/Launcher.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEABB084578BF00812C11 /* Launcher.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Launcher.hxx; path = ../gui/Launcher.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEABC084578BF00812C11 /* LauncherDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = LauncherDialog.cxx; path = ../gui/LauncherDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEABD084578BF00812C11 /* LauncherDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = LauncherDialog.hxx; path = ../gui/LauncherDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAC0084578BF00812C11 /* ListWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ListWidget.cxx; path = ../gui/ListWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAC1084578BF00812C11 /* ListWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = ListWidget.hxx; path = ../gui/ListWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAC2084578BF00812C11 /* Menu.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Menu.cxx; path = ../gui/Menu.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAC3084578BF00812C11 /* Menu.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Menu.hxx; path = ../gui/Menu.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAC4084578BF00812C11 /* OptionsDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = OptionsDialog.cxx; path = ../gui/OptionsDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAC5084578BF00812C11 /* OptionsDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = OptionsDialog.hxx; path = ../gui/OptionsDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAC6084578BF00812C11 /* PopUpWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PopUpWidget.cxx; path = ../gui/PopUpWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAC7084578BF00812C11 /* PopUpWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = PopUpWidget.hxx; path = ../gui/PopUpWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAC8084578BF00812C11 /* ProgressDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ProgressDialog.cxx; path = ../gui/ProgressDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAC9084578BF00812C11 /* ProgressDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = ProgressDialog.hxx; path = ../gui/ProgressDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEACA084578BF00812C11 /* ScrollBarWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ScrollBarWidget.cxx; path = ../gui/ScrollBarWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEACB084578BF00812C11 /* ScrollBarWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = ScrollBarWidget.hxx; path = ../gui/ScrollBarWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAD0084578BF00812C11 /* TabWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = TabWidget.cxx; path = ../gui/TabWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAD1084578BF00812C11 /* TabWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = TabWidget.hxx; path = ../gui/TabWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAD2084578BF00812C11 /* VideoDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = VideoDialog.cxx; path = ../gui/VideoDialog.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAD3084578BF00812C11 /* VideoDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = VideoDialog.hxx; path = ../gui/VideoDialog.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAD4084578BF00812C11 /* Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Widget.cxx; path = ../gui/Widget.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEAD5084578BF00812C11 /* Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Widget.hxx; path = ../gui/Widget.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEB7008457B7D00812C11 /* CartUA.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartUA.cxx; path = ../emucore/CartUA.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEB7108457B7D00812C11 /* CartUA.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartUA.hxx; path = ../emucore/CartUA.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEB7208457B7D00812C11 /* FSNode.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = FSNode.cxx; path = ../emucore/FSNode.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEB7308457B7D00812C11 /* FSNode.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = FSNode.hxx; path = ../emucore/FSNode.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEB7408457B7D00812C11 /* OSystem.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = OSystem.cxx; path = ../emucore/OSystem.cxx; sourceTree = SOURCE_ROOT; }; - 2DDBEB7508457B7D00812C11 /* OSystem.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = OSystem.hxx; path = ../emucore/OSystem.hxx; sourceTree = SOURCE_ROOT; }; - 2DDBEBE3084582C400812C11 /* Preferences.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Preferences.h; sourceTree = SOURCE_ROOT; }; - 2DDBEBE4084582C400812C11 /* Preferences.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = Preferences.m; sourceTree = SOURCE_ROOT; }; - 2DE2DF100627AE07006BEC99 /* Booster.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Booster.cxx; path = ../emucore/Booster.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF110627AE07006BEC99 /* Booster.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Booster.hxx; path = ../emucore/Booster.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF120627AE07006BEC99 /* Cart.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Cart.cxx; path = ../emucore/Cart.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF130627AE07006BEC99 /* Cart.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Cart.hxx; path = ../emucore/Cart.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF140627AE07006BEC99 /* Cart2K.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Cart2K.cxx; path = ../emucore/Cart2K.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF150627AE07006BEC99 /* Cart2K.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Cart2K.hxx; path = ../emucore/Cart2K.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF160627AE07006BEC99 /* Cart3F.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Cart3F.cxx; path = ../emucore/Cart3F.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF170627AE07006BEC99 /* Cart3F.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Cart3F.hxx; path = ../emucore/Cart3F.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF180627AE07006BEC99 /* Cart4K.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Cart4K.cxx; path = ../emucore/Cart4K.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF190627AE07006BEC99 /* Cart4K.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Cart4K.hxx; path = ../emucore/Cart4K.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF1A0627AE07006BEC99 /* CartAR.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartAR.cxx; path = ../emucore/CartAR.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF1B0627AE07006BEC99 /* CartAR.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartAR.hxx; path = ../emucore/CartAR.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF1C0627AE07006BEC99 /* CartCV.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartCV.cxx; path = ../emucore/CartCV.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF1D0627AE07006BEC99 /* CartCV.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartCV.hxx; path = ../emucore/CartCV.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF1E0627AE07006BEC99 /* CartDPC.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartDPC.cxx; path = ../emucore/CartDPC.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF1F0627AE07006BEC99 /* CartDPC.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartDPC.hxx; path = ../emucore/CartDPC.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF200627AE07006BEC99 /* CartE0.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartE0.cxx; path = ../emucore/CartE0.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF210627AE07006BEC99 /* CartE0.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartE0.hxx; path = ../emucore/CartE0.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF220627AE07006BEC99 /* CartE7.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartE7.cxx; path = ../emucore/CartE7.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF230627AE07006BEC99 /* CartE7.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartE7.hxx; path = ../emucore/CartE7.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF240627AE07006BEC99 /* CartF4.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartF4.cxx; path = ../emucore/CartF4.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF250627AE07006BEC99 /* CartF4.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartF4.hxx; path = ../emucore/CartF4.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF260627AE07006BEC99 /* CartF4SC.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartF4SC.cxx; path = ../emucore/CartF4SC.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF270627AE07006BEC99 /* CartF4SC.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartF4SC.hxx; path = ../emucore/CartF4SC.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF280627AE07006BEC99 /* CartF6.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartF6.cxx; path = ../emucore/CartF6.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF290627AE07006BEC99 /* CartF6.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartF6.hxx; path = ../emucore/CartF6.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF2A0627AE07006BEC99 /* CartF6SC.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartF6SC.cxx; path = ../emucore/CartF6SC.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF2B0627AE07006BEC99 /* CartF6SC.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartF6SC.hxx; path = ../emucore/CartF6SC.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF2C0627AE07006BEC99 /* CartF8.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartF8.cxx; path = ../emucore/CartF8.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF2D0627AE07006BEC99 /* CartF8.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartF8.hxx; path = ../emucore/CartF8.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF2E0627AE07006BEC99 /* CartF8SC.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartF8SC.cxx; path = ../emucore/CartF8SC.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF2F0627AE07006BEC99 /* CartF8SC.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartF8SC.hxx; path = ../emucore/CartF8SC.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF320627AE07006BEC99 /* CartFE.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartFE.cxx; path = ../emucore/CartFE.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF330627AE07006BEC99 /* CartFE.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartFE.hxx; path = ../emucore/CartFE.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF360627AE07006BEC99 /* CartMC.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CartMC.cxx; path = ../emucore/CartMC.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF370627AE07006BEC99 /* CartMC.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CartMC.hxx; path = ../emucore/CartMC.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF380627AE07006BEC99 /* Console.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Console.cxx; path = ../emucore/Console.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF390627AE07006BEC99 /* Console.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Console.hxx; path = ../emucore/Console.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF3A0627AE07006BEC99 /* Control.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Control.cxx; path = ../emucore/Control.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF3B0627AE07006BEC99 /* Control.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Control.hxx; path = ../emucore/Control.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF3E0627AE07006BEC99 /* Driving.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Driving.cxx; path = ../emucore/Driving.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF3F0627AE07006BEC99 /* Driving.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Driving.hxx; path = ../emucore/Driving.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF410627AE07006BEC99 /* Event.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Event.hxx; path = ../emucore/Event.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF420627AE07006BEC99 /* Joystick.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Joystick.cxx; path = ../emucore/Joystick.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF430627AE07006BEC99 /* Joystick.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Joystick.hxx; path = ../emucore/Joystick.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF440627AE07006BEC99 /* Keyboard.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Keyboard.cxx; path = ../emucore/Keyboard.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF450627AE07006BEC99 /* Keyboard.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Keyboard.hxx; path = ../emucore/Keyboard.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF7C0627AE33006BEC99 /* M6532.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = M6532.cxx; path = ../emucore/M6532.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF7D0627AE33006BEC99 /* M6532.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = M6532.hxx; path = ../emucore/M6532.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF7E0627AE33006BEC99 /* MD5.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = MD5.cxx; path = ../emucore/MD5.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF7F0627AE34006BEC99 /* MD5.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = MD5.hxx; path = ../emucore/MD5.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF820627AE34006BEC99 /* Paddles.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Paddles.cxx; path = ../emucore/Paddles.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF830627AE34006BEC99 /* Paddles.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Paddles.hxx; path = ../emucore/Paddles.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF840627AE34006BEC99 /* Props.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Props.cxx; path = ../emucore/Props.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF850627AE34006BEC99 /* Props.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Props.hxx; path = ../emucore/Props.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF860627AE34006BEC99 /* PropsSet.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PropsSet.cxx; path = ../emucore/PropsSet.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF870627AE34006BEC99 /* PropsSet.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = PropsSet.hxx; path = ../emucore/PropsSet.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF880627AE34006BEC99 /* Random.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cxx; path = ../emucore/Random.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF890627AE34006BEC99 /* Random.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Random.hxx; path = ../emucore/Random.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF8A0627AE34006BEC99 /* Serializer.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Serializer.cxx; path = ../emucore/Serializer.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF8B0627AE34006BEC99 /* Serializer.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Serializer.hxx; path = ../emucore/Serializer.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF8D0627AE34006BEC99 /* Sound.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Sound.hxx; path = ../emucore/Sound.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF8E0627AE34006BEC99 /* Switches.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Switches.cxx; path = ../emucore/Switches.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF8F0627AE34006BEC99 /* Switches.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Switches.hxx; path = ../emucore/Switches.hxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF900627AE34006BEC99 /* TIA.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = TIA.cxx; path = ../emucore/TIA.cxx; sourceTree = SOURCE_ROOT; }; - 2DE2DF910627AE34006BEC99 /* TIA.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = TIA.hxx; path = ../emucore/TIA.hxx; sourceTree = SOURCE_ROOT; }; - 2DE7242D08CE910900C889A8 /* TIASnd.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = TIASnd.cxx; path = ../emucore/TIASnd.cxx; sourceTree = SOURCE_ROOT; }; - 2DE7242E08CE910900C889A8 /* TIASnd.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = TIASnd.hxx; path = ../emucore/TIASnd.hxx; sourceTree = SOURCE_ROOT; }; - 2DEB3D4C0629BD24007EBBD3 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; - 2DEF21F808BC033500B246B4 /* CheckListWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CheckListWidget.cxx; path = ../gui/CheckListWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2DEF21F908BC033500B246B4 /* CheckListWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CheckListWidget.hxx; path = ../gui/CheckListWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2DEF21FA08BC033500B246B4 /* StringListWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = StringListWidget.cxx; path = ../gui/StringListWidget.cxx; sourceTree = SOURCE_ROOT; }; - 2DEF21FB08BC033500B246B4 /* StringListWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = StringListWidget.hxx; path = ../gui/StringListWidget.hxx; sourceTree = SOURCE_ROOT; }; - 2DEFB40B09C3386F00754289 /* Cart.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Cart.icns; sourceTree = SOURCE_ROOT; }; - 2DF971D70892CEA400F64D23 /* DebuggerSystem.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = DebuggerSystem.hxx; path = ../debugger/DebuggerSystem.hxx; sourceTree = SOURCE_ROOT; }; - 2DF971DE0892CEA400F64D23 /* Expression.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Expression.cxx; path = ../debugger/Expression.cxx; sourceTree = SOURCE_ROOT; }; - 2DF971DF0892CEA400F64D23 /* Expression.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Expression.hxx; path = ../debugger/Expression.hxx; sourceTree = SOURCE_ROOT; }; - B2F367C504C7ADC700A80002 /* SDLMain.nib */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; path = SDLMain.nib; sourceTree = ""; }; - DC07A3C60CAD738A009B4BC9 /* StateManager.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = StateManager.cxx; path = ../emucore/StateManager.cxx; sourceTree = SOURCE_ROOT; }; - DC07A3C70CAD738A009B4BC9 /* StateManager.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = StateManager.hxx; path = ../emucore/StateManager.hxx; sourceTree = SOURCE_ROOT; }; - DC0984830D3985160073C852 /* CartSB.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartSB.cxx; path = ../emucore/CartSB.cxx; sourceTree = SOURCE_ROOT; }; - DC0984840D3985160073C852 /* CartSB.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartSB.hxx; path = ../emucore/CartSB.hxx; sourceTree = SOURCE_ROOT; }; - DC0BFFEB14BA2BEB00CF5E7E /* BoosterWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = BoosterWidget.cxx; path = ../debugger/gui/BoosterWidget.cxx; sourceTree = SOURCE_ROOT; }; - DC0BFFEC14BA2BEB00CF5E7E /* BoosterWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = BoosterWidget.hxx; path = ../debugger/gui/BoosterWidget.hxx; sourceTree = SOURCE_ROOT; }; - DC0BFFED14BA2BEB00CF5E7E /* ControllerWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ControllerWidget.hxx; path = ../debugger/gui/ControllerWidget.hxx; sourceTree = SOURCE_ROOT; }; - DC0BFFEE14BA2BEB00CF5E7E /* DrivingWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DrivingWidget.cxx; path = ../debugger/gui/DrivingWidget.cxx; sourceTree = SOURCE_ROOT; }; - DC0BFFEF14BA2BEB00CF5E7E /* DrivingWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = DrivingWidget.hxx; path = ../debugger/gui/DrivingWidget.hxx; sourceTree = SOURCE_ROOT; }; - DC0BFFF014BA2BEB00CF5E7E /* GenesisWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = GenesisWidget.cxx; path = ../debugger/gui/GenesisWidget.cxx; sourceTree = SOURCE_ROOT; }; - DC0BFFF114BA2BEB00CF5E7E /* GenesisWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = GenesisWidget.hxx; path = ../debugger/gui/GenesisWidget.hxx; sourceTree = SOURCE_ROOT; }; - DC0BFFF214BA2BEB00CF5E7E /* JoystickWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JoystickWidget.cxx; path = ../debugger/gui/JoystickWidget.cxx; sourceTree = SOURCE_ROOT; }; - DC0BFFF314BA2BEB00CF5E7E /* JoystickWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = JoystickWidget.hxx; path = ../debugger/gui/JoystickWidget.hxx; sourceTree = SOURCE_ROOT; }; - DC0BFFF414BA2BEB00CF5E7E /* KeyboardWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = KeyboardWidget.cxx; path = ../debugger/gui/KeyboardWidget.cxx; sourceTree = SOURCE_ROOT; }; - DC0BFFF514BA2BEB00CF5E7E /* KeyboardWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = KeyboardWidget.hxx; path = ../debugger/gui/KeyboardWidget.hxx; sourceTree = SOURCE_ROOT; }; - DC0BFFF614BA2BEB00CF5E7E /* NullControlWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = NullControlWidget.hxx; path = ../debugger/gui/NullControlWidget.hxx; sourceTree = SOURCE_ROOT; }; - DC0BFFF714BA2BEB00CF5E7E /* PaddleWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PaddleWidget.cxx; path = ../debugger/gui/PaddleWidget.cxx; sourceTree = SOURCE_ROOT; }; - DC0BFFF814BA2BEB00CF5E7E /* PaddleWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = PaddleWidget.hxx; path = ../debugger/gui/PaddleWidget.hxx; sourceTree = SOURCE_ROOT; }; - DC0D76A2177259C3005C7805 /* ConfigPathDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ConfigPathDialog.cxx; path = ../gui/ConfigPathDialog.cxx; sourceTree = SOURCE_ROOT; }; - DC0D76A3177259C3005C7805 /* ConfigPathDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ConfigPathDialog.hxx; path = ../gui/ConfigPathDialog.hxx; sourceTree = SOURCE_ROOT; }; - DC0D76A4177259C3005C7805 /* SnapshotDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SnapshotDialog.cxx; path = ../gui/SnapshotDialog.cxx; sourceTree = SOURCE_ROOT; }; - DC0D76A5177259C3005C7805 /* SnapshotDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = SnapshotDialog.hxx; path = ../gui/SnapshotDialog.hxx; sourceTree = SOURCE_ROOT; }; - DC0DF8670F0DAAF500B0F1F3 /* GlobalPropsDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalPropsDialog.cxx; path = ../gui/GlobalPropsDialog.cxx; sourceTree = SOURCE_ROOT; }; - DC0DF8680F0DAAF500B0F1F3 /* GlobalPropsDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = GlobalPropsDialog.hxx; path = ../gui/GlobalPropsDialog.hxx; sourceTree = SOURCE_ROOT; }; - DC11F78B0DB36933003B505E /* MT24LC256.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = MT24LC256.cxx; path = ../emucore/MT24LC256.cxx; sourceTree = SOURCE_ROOT; }; - DC11F78C0DB36933003B505E /* MT24LC256.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = MT24LC256.hxx; path = ../emucore/MT24LC256.hxx; sourceTree = SOURCE_ROOT; }; - DC173F740E2CAC1E00320F94 /* ContextMenu.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ContextMenu.cxx; path = ../gui/ContextMenu.cxx; sourceTree = SOURCE_ROOT; }; - DC173F750E2CAC1E00320F94 /* ContextMenu.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = ContextMenu.hxx; path = ../gui/ContextMenu.hxx; sourceTree = SOURCE_ROOT; }; - DC17E8051361FDB500397A9E /* pngdebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pngdebug.h; path = ../libpng/pngdebug.h; sourceTree = SOURCE_ROOT; }; - DC17E8061361FDB500397A9E /* pnginfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pnginfo.h; path = ../libpng/pnginfo.h; sourceTree = SOURCE_ROOT; }; - DC17E8071361FDB500397A9E /* pnglibconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pnglibconf.h; path = ../libpng/pnglibconf.h; sourceTree = SOURCE_ROOT; }; - DC17E8081361FDB500397A9E /* pngstruct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pngstruct.h; path = ../libpng/pngstruct.h; sourceTree = SOURCE_ROOT; }; - DC1FC1880DB3B2C7009B3DF7 /* SerialPortMACOSX.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SerialPortMACOSX.cxx; sourceTree = ""; }; - DC1FC1890DB3B2C7009B3DF7 /* SerialPortMACOSX.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; path = SerialPortMACOSX.hxx; sourceTree = ""; }; - DC20D6F1138EB130002A7428 /* StringList.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = StringList.hxx; path = ../common/StringList.hxx; sourceTree = SOURCE_ROOT; }; - DC20D6F2138EB130002A7428 /* StringParser.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = StringParser.hxx; path = ../common/StringParser.hxx; sourceTree = SOURCE_ROOT; }; - DC3C3CDB173B1EB2009FFE61 /* Variant.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Variant.hxx; path = ../common/Variant.hxx; sourceTree = SOURCE_ROOT; }; - DC3C3CDF173B1EC8009FFE61 /* FileListWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FileListWidget.cxx; path = ../gui/FileListWidget.cxx; sourceTree = SOURCE_ROOT; }; - DC3C3CE0173B1EC8009FFE61 /* FileListWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = FileListWidget.hxx; path = ../gui/FileListWidget.hxx; sourceTree = SOURCE_ROOT; }; - DC3E4A6014B25EB30071D7BC /* CartCM.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartCM.cxx; path = ../emucore/CartCM.cxx; sourceTree = SOURCE_ROOT; }; - DC3E4A6114B25EB30071D7BC /* CartCM.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartCM.hxx; path = ../emucore/CartCM.hxx; sourceTree = SOURCE_ROOT; }; - DC3E4A6214B25EB30071D7BC /* CompuMate.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CompuMate.cxx; path = ../emucore/CompuMate.cxx; sourceTree = SOURCE_ROOT; }; - DC3E4A6314B25EB30071D7BC /* CompuMate.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CompuMate.hxx; path = ../emucore/CompuMate.hxx; sourceTree = SOURCE_ROOT; }; - DC3E4A6414B25EB30071D7BC /* MindLink.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MindLink.cxx; path = ../emucore/MindLink.cxx; sourceTree = SOURCE_ROOT; }; - DC3E4A6514B25EB30071D7BC /* MindLink.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = MindLink.hxx; path = ../emucore/MindLink.hxx; sourceTree = SOURCE_ROOT; }; - DC3F601517C9140100A1977D /* ConsoleBFont.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ConsoleBFont.hxx; path = ../gui/ConsoleBFont.hxx; sourceTree = SOURCE_ROOT; }; - DC3F601617C9140100A1977D /* ConsoleMediumBFont.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ConsoleMediumBFont.hxx; path = ../gui/ConsoleMediumBFont.hxx; sourceTree = SOURCE_ROOT; }; - DC3FE46A11C7D35600C91C72 /* png.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = png.c; path = ../libpng/png.c; sourceTree = SOURCE_ROOT; }; - DC3FE46B11C7D35600C91C72 /* png.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = png.h; path = ../libpng/png.h; sourceTree = SOURCE_ROOT; }; - DC3FE46C11C7D35600C91C72 /* pngconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pngconf.h; path = ../libpng/pngconf.h; sourceTree = SOURCE_ROOT; }; - DC3FE46D11C7D35600C91C72 /* pngerror.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngerror.c; path = ../libpng/pngerror.c; sourceTree = SOURCE_ROOT; }; - DC3FE46E11C7D35600C91C72 /* pngget.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngget.c; path = ../libpng/pngget.c; sourceTree = SOURCE_ROOT; }; - DC3FE46F11C7D35600C91C72 /* pngmem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngmem.c; path = ../libpng/pngmem.c; sourceTree = SOURCE_ROOT; }; - DC3FE47011C7D35600C91C72 /* pngpread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngpread.c; path = ../libpng/pngpread.c; sourceTree = SOURCE_ROOT; }; - DC3FE47111C7D35600C91C72 /* pngpriv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pngpriv.h; path = ../libpng/pngpriv.h; sourceTree = SOURCE_ROOT; }; - DC3FE47211C7D35600C91C72 /* pngread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngread.c; path = ../libpng/pngread.c; sourceTree = SOURCE_ROOT; }; - DC3FE47311C7D35600C91C72 /* pngrio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngrio.c; path = ../libpng/pngrio.c; sourceTree = SOURCE_ROOT; }; - DC3FE47411C7D35600C91C72 /* pngrtran.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngrtran.c; path = ../libpng/pngrtran.c; sourceTree = SOURCE_ROOT; }; - DC3FE47511C7D35600C91C72 /* pngrutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngrutil.c; path = ../libpng/pngrutil.c; sourceTree = SOURCE_ROOT; }; - DC3FE47611C7D35600C91C72 /* pngset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngset.c; path = ../libpng/pngset.c; sourceTree = SOURCE_ROOT; }; - DC3FE47711C7D35600C91C72 /* pngtrans.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngtrans.c; path = ../libpng/pngtrans.c; sourceTree = SOURCE_ROOT; }; - DC3FE47811C7D35600C91C72 /* pngwio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngwio.c; path = ../libpng/pngwio.c; sourceTree = SOURCE_ROOT; }; - DC3FE47911C7D35600C91C72 /* pngwrite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngwrite.c; path = ../libpng/pngwrite.c; sourceTree = SOURCE_ROOT; }; - DC3FE47A11C7D35600C91C72 /* pngwtran.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngwtran.c; path = ../libpng/pngwtran.c; sourceTree = SOURCE_ROOT; }; - DC3FE47B11C7D35600C91C72 /* pngwutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pngwutil.c; path = ../libpng/pngwutil.c; sourceTree = SOURCE_ROOT; }; - DC3FE49D11C7D3FE00C91C72 /* PNGLibrary.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PNGLibrary.cxx; path = ../common/PNGLibrary.cxx; sourceTree = SOURCE_ROOT; }; - DC3FE49E11C7D3FE00C91C72 /* PNGLibrary.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = PNGLibrary.hxx; path = ../common/PNGLibrary.hxx; sourceTree = SOURCE_ROOT; }; - DC419D81108E10A3006E8687 /* Info-Stella.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Info-Stella.plist"; sourceTree = ""; }; - DC449CAD176FF512004FA2D4 /* RomListSettings.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RomListSettings.cxx; path = ../debugger/gui/RomListSettings.cxx; sourceTree = SOURCE_ROOT; }; - DC449CAE176FF512004FA2D4 /* RomListSettings.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = RomListSettings.hxx; path = ../debugger/gui/RomListSettings.hxx; sourceTree = SOURCE_ROOT; }; - DC4613650D92C03600D8DAB9 /* RomAuditDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = RomAuditDialog.cxx; path = ../gui/RomAuditDialog.cxx; sourceTree = SOURCE_ROOT; }; - DC4613660D92C03600D8DAB9 /* RomAuditDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = RomAuditDialog.hxx; path = ../gui/RomAuditDialog.hxx; sourceTree = SOURCE_ROOT; }; - DC47454A09C34BFA00EDDA3A /* BankRomCheat.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = BankRomCheat.cxx; path = ../cheat/BankRomCheat.cxx; sourceTree = SOURCE_ROOT; }; - DC47454B09C34BFA00EDDA3A /* BankRomCheat.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = BankRomCheat.hxx; path = ../cheat/BankRomCheat.hxx; sourceTree = SOURCE_ROOT; }; - DC47454C09C34BFA00EDDA3A /* Cheat.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Cheat.hxx; path = ../cheat/Cheat.hxx; sourceTree = SOURCE_ROOT; }; - DC47454D09C34BFA00EDDA3A /* CheatCodeDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CheatCodeDialog.cxx; path = ../cheat/CheatCodeDialog.cxx; sourceTree = SOURCE_ROOT; }; - DC47454E09C34BFA00EDDA3A /* CheatCodeDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CheatCodeDialog.hxx; path = ../cheat/CheatCodeDialog.hxx; sourceTree = SOURCE_ROOT; }; - DC47454F09C34BFA00EDDA3A /* CheatManager.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CheatManager.cxx; path = ../cheat/CheatManager.cxx; sourceTree = SOURCE_ROOT; }; - DC47455009C34BFA00EDDA3A /* CheatManager.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CheatManager.hxx; path = ../cheat/CheatManager.hxx; sourceTree = SOURCE_ROOT; }; - DC47455109C34BFA00EDDA3A /* CheetahCheat.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = CheetahCheat.cxx; path = ../cheat/CheetahCheat.cxx; sourceTree = SOURCE_ROOT; }; - DC47455209C34BFA00EDDA3A /* CheetahCheat.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = CheetahCheat.hxx; path = ../cheat/CheetahCheat.hxx; sourceTree = SOURCE_ROOT; }; - DC47455309C34BFA00EDDA3A /* RamCheat.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = RamCheat.cxx; path = ../cheat/RamCheat.cxx; sourceTree = SOURCE_ROOT; }; - DC47455409C34BFA00EDDA3A /* RamCheat.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = RamCheat.hxx; path = ../cheat/RamCheat.hxx; sourceTree = SOURCE_ROOT; }; - DC487FB40DA5350900E12499 /* AtariVox.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = AtariVox.cxx; path = ../emucore/AtariVox.cxx; sourceTree = SOURCE_ROOT; }; - DC487FB50DA5350900E12499 /* AtariVox.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = AtariVox.hxx; path = ../emucore/AtariVox.hxx; sourceTree = SOURCE_ROOT; }; - DC49F90314F7D0DB000704B0 /* NTSCFilter.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = NTSCFilter.cxx; path = ../common/tv_filters/NTSCFilter.cxx; sourceTree = SOURCE_ROOT; }; - DC49F90414F7D0DB000704B0 /* NTSCFilter.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = NTSCFilter.hxx; path = ../common/tv_filters/NTSCFilter.hxx; sourceTree = SOURCE_ROOT; }; - DC4AC6ED0DC8DACB00CD3AD2 /* RiotWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = RiotWidget.cxx; path = ../debugger/gui/RiotWidget.cxx; sourceTree = SOURCE_ROOT; }; - DC4AC6EE0DC8DACB00CD3AD2 /* RiotWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = RiotWidget.hxx; path = ../debugger/gui/RiotWidget.hxx; sourceTree = SOURCE_ROOT; }; - DC4AC6F10DC8DAEF00CD3AD2 /* SaveKey.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SaveKey.cxx; path = ../emucore/SaveKey.cxx; sourceTree = SOURCE_ROOT; }; - DC4AC6F20DC8DAEF00CD3AD2 /* SaveKey.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = SaveKey.hxx; path = ../emucore/SaveKey.hxx; sourceTree = SOURCE_ROOT; }; - DC4AF1F112E39F700090B82E /* Thumbulator.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Thumbulator.cxx; path = ../emucore/Thumbulator.cxx; sourceTree = SOURCE_ROOT; }; - DC4AF1F212E39F700090B82E /* Thumbulator.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Thumbulator.hxx; path = ../emucore/Thumbulator.hxx; sourceTree = SOURCE_ROOT; }; - DC5C76AF14C2709E0031EBC7 /* StellaKeys.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = StellaKeys.hxx; path = ../common/StellaKeys.hxx; sourceTree = SOURCE_ROOT; }; - DC5D1AA6102C6FC900E59AC1 /* Stack.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Stack.hxx; path = ../common/Stack.hxx; sourceTree = SOURCE_ROOT; }; - DC5D2C4E0F117CFD004D1660 /* Rect.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Rect.hxx; path = ../gui/Rect.hxx; sourceTree = SOURCE_ROOT; }; - DC5D2C4F0F117CFD004D1660 /* StellaFont.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = StellaFont.hxx; path = ../gui/StellaFont.hxx; sourceTree = SOURCE_ROOT; }; - DC5D2C500F117CFD004D1660 /* StellaLargeFont.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = StellaLargeFont.hxx; path = ../gui/StellaLargeFont.hxx; sourceTree = SOURCE_ROOT; }; - DC5D2C510F117CFD004D1660 /* StellaMediumFont.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = StellaMediumFont.hxx; path = ../gui/StellaMediumFont.hxx; sourceTree = SOURCE_ROOT; }; - DC5D2C5E0F129B1E004D1660 /* LauncherFilterDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LauncherFilterDialog.cxx; path = ../gui/LauncherFilterDialog.cxx; sourceTree = SOURCE_ROOT; }; - DC5D2C5F0F129B1E004D1660 /* LauncherFilterDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = LauncherFilterDialog.hxx; path = ../gui/LauncherFilterDialog.hxx; sourceTree = SOURCE_ROOT; }; - DC64EB1E1152F9C000DC9140 /* CartDPCPlus.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDPCPlus.cxx; path = ../emucore/CartDPCPlus.cxx; sourceTree = SOURCE_ROOT; }; - DC64EB1F1152F9C000DC9140 /* CartDPCPlus.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDPCPlus.hxx; path = ../emucore/CartDPCPlus.hxx; sourceTree = SOURCE_ROOT; }; - DC752D921513E9F7005B0D24 /* atari_ntsc_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = atari_ntsc_impl.h; path = ../common/tv_filters/atari_ntsc_impl.h; sourceTree = SOURCE_ROOT; }; - DC752D931513E9F7005B0D24 /* atari_ntsc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = atari_ntsc.c; path = ../common/tv_filters/atari_ntsc.c; sourceTree = SOURCE_ROOT; }; - DC752D941513E9F7005B0D24 /* atari_ntsc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = atari_ntsc.h; path = ../common/tv_filters/atari_ntsc.h; sourceTree = SOURCE_ROOT; }; - DC7A769813FEA40300ED8633 /* LoggerDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerDialog.cxx; path = ../gui/LoggerDialog.cxx; sourceTree = SOURCE_ROOT; }; - DC7A769913FEA40300ED8633 /* LoggerDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = LoggerDialog.hxx; path = ../gui/LoggerDialog.hxx; sourceTree = SOURCE_ROOT; }; - DC8078DA0B4BD5F3005E9305 /* DebuggerExpressions.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = DebuggerExpressions.hxx; path = ../debugger/DebuggerExpressions.hxx; sourceTree = SOURCE_ROOT; }; - DC8078E60B4BD697005E9305 /* UIDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = UIDialog.cxx; path = ../gui/UIDialog.cxx; sourceTree = SOURCE_ROOT; }; - DC8078E70B4BD697005E9305 /* UIDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = UIDialog.hxx; path = ../gui/UIDialog.hxx; sourceTree = SOURCE_ROOT; }; - DC84E11A1135988E00CA7C9D /* Genesis.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Genesis.cxx; path = ../emucore/Genesis.cxx; sourceTree = SOURCE_ROOT; }; - DC84E11B1135988E00CA7C9D /* Genesis.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Genesis.hxx; path = ../emucore/Genesis.hxx; sourceTree = SOURCE_ROOT; }; - DC8AE5BF1417804C00335D45 /* FBSurfaceGL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FBSurfaceGL.cxx; path = ../common/FBSurfaceGL.cxx; sourceTree = SOURCE_ROOT; }; - DC8AE5C01417804C00335D45 /* FBSurfaceGL.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = FBSurfaceGL.hxx; path = ../common/FBSurfaceGL.hxx; sourceTree = SOURCE_ROOT; }; - DC8AE5C11417804C00335D45 /* FBSurfaceTIA.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FBSurfaceTIA.cxx; path = ../common/FBSurfaceTIA.cxx; sourceTree = SOURCE_ROOT; }; - DC8AE5C21417804C00335D45 /* FBSurfaceTIA.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = FBSurfaceTIA.hxx; path = ../common/FBSurfaceTIA.hxx; sourceTree = SOURCE_ROOT; }; - DC922D0414CAFB1E006EB471 /* CartFA2.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartFA2.cxx; path = ../emucore/CartFA2.cxx; sourceTree = SOURCE_ROOT; }; - DC922D0514CAFB1E006EB471 /* CartFA2.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartFA2.hxx; path = ../emucore/CartFA2.hxx; sourceTree = SOURCE_ROOT; }; - DC932D3F0F278A5200FEFEFC /* DefProps.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = DefProps.hxx; path = ../emucore/DefProps.hxx; sourceTree = SOURCE_ROOT; }; - DC932D400F278A5200FEFEFC /* Serializable.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Serializable.hxx; path = ../emucore/Serializable.hxx; sourceTree = SOURCE_ROOT; }; - DC932D410F278A5200FEFEFC /* SerialPort.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = SerialPort.hxx; path = ../emucore/SerialPort.hxx; sourceTree = SOURCE_ROOT; }; - DC932D420F278A5200FEFEFC /* TIATables.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TIATables.cxx; path = ../emucore/TIATables.cxx; sourceTree = SOURCE_ROOT; }; - DC932D430F278A5200FEFEFC /* TIATables.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = TIATables.hxx; path = ../emucore/TIATables.hxx; sourceTree = SOURCE_ROOT; }; - DC9EA8850F729A36000452B5 /* KidVid.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = KidVid.cxx; path = ../emucore/KidVid.cxx; sourceTree = SOURCE_ROOT; }; - DC9EA8860F729A36000452B5 /* KidVid.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = KidVid.hxx; path = ../emucore/KidVid.hxx; sourceTree = SOURCE_ROOT; }; - DCA00FF50DBABCAD00C3823D /* RiotDebug.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RiotDebug.cxx; path = ../debugger/RiotDebug.cxx; sourceTree = SOURCE_ROOT; }; - DCA00FF60DBABCAD00C3823D /* RiotDebug.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = RiotDebug.hxx; path = ../debugger/RiotDebug.hxx; sourceTree = SOURCE_ROOT; }; - 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; }; - DCA6276016CB0D1C004E9AF0 /* FSNodePOSIX.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = FSNodePOSIX.hxx; path = ../unix/FSNodePOSIX.hxx; sourceTree = SOURCE_ROOT; }; - DCA6276F16CB0D45004E9AF0 /* FSNodeFactory.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = FSNodeFactory.hxx; path = ../common/FSNodeFactory.hxx; sourceTree = SOURCE_ROOT; }; - DCA6277016CB0D45004E9AF0 /* FSNodeZIP.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FSNodeZIP.cxx; path = ../common/FSNodeZIP.cxx; sourceTree = SOURCE_ROOT; }; - DCA6277116CB0D45004E9AF0 /* FSNodeZIP.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = FSNodeZIP.hxx; path = ../common/FSNodeZIP.hxx; sourceTree = SOURCE_ROOT; }; - DCA6277216CB0D45004E9AF0 /* ZipHandler.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ZipHandler.cxx; path = ../common/ZipHandler.cxx; sourceTree = SOURCE_ROOT; }; - 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; }; - DCBD96871210314C0087CEFD /* ComboDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ComboDialog.cxx; path = ../gui/ComboDialog.cxx; sourceTree = SOURCE_ROOT; }; - DCBD96881210314C0087CEFD /* ComboDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ComboDialog.hxx; path = ../gui/ComboDialog.hxx; sourceTree = SOURCE_ROOT; }; - DCD56D360B247D920092F9F8 /* Cart4A50.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Cart4A50.cxx; path = ../emucore/Cart4A50.cxx; sourceTree = SOURCE_ROOT; }; - DCD56D370B247D920092F9F8 /* Cart4A50.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Cart4A50.hxx; path = ../emucore/Cart4A50.hxx; sourceTree = SOURCE_ROOT; }; - DCD56D3A0B247DB40092F9F8 /* RectList.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = RectList.cxx; path = ../common/RectList.cxx; sourceTree = SOURCE_ROOT; }; - DCD56D3B0B247DB40092F9F8 /* RectList.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = RectList.hxx; path = ../common/RectList.hxx; sourceTree = SOURCE_ROOT; }; - DCDBD3151556F60C00308CC4 /* CartCTY.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartCTY.cxx; path = ../emucore/CartCTY.cxx; sourceTree = SOURCE_ROOT; }; - DCDBD3161556F60C00308CC4 /* CartCTY.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartCTY.hxx; path = ../emucore/CartCTY.hxx; sourceTree = SOURCE_ROOT; }; - DCDBD3171556F60C00308CC4 /* CartCTYTunes.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartCTYTunes.hxx; path = ../emucore/CartCTYTunes.hxx; sourceTree = SOURCE_ROOT; }; - DCE3BBF50C95CEDC00A671DF /* RomInfoWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = RomInfoWidget.cxx; path = ../gui/RomInfoWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCE3BBF60C95CEDC00A671DF /* RomInfoWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = RomInfoWidget.hxx; path = ../gui/RomInfoWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCE6EB200DD9ADA00047AC28 /* TrackBall.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = TrackBall.cxx; path = ../emucore/TrackBall.cxx; sourceTree = SOURCE_ROOT; }; - DCE6EB210DD9ADA00047AC28 /* TrackBall.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = TrackBall.hxx; path = ../emucore/TrackBall.hxx; sourceTree = SOURCE_ROOT; }; - DCE9CC261103812700C86671 /* CartDebug.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDebug.cxx; path = ../debugger/CartDebug.cxx; sourceTree = SOURCE_ROOT; }; - DCE9CC271103812700C86671 /* CartDebug.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDebug.hxx; path = ../debugger/CartDebug.hxx; sourceTree = SOURCE_ROOT; }; - DCE9CC281103812700C86671 /* DiStella.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DiStella.cxx; path = ../debugger/DiStella.cxx; sourceTree = SOURCE_ROOT; }; - DCE9CC291103812700C86671 /* DiStella.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = DiStella.hxx; path = ../debugger/DiStella.hxx; sourceTree = SOURCE_ROOT; }; - DCECD7A717A88E51000A9753 /* Base.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Base.cxx; path = ../common/Base.cxx; sourceTree = SOURCE_ROOT; }; - DCECD7A817A88E51000A9753 /* Base.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Base.hxx; path = ../common/Base.hxx; sourceTree = SOURCE_ROOT; }; - DCECDAF310B9DBDC00AF4E1B /* Device.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Device.hxx; path = ../emucore/Device.hxx; sourceTree = SOURCE_ROOT; }; - DCECDAF410B9DBDC00AF4E1B /* M6502.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = M6502.cxx; path = ../emucore/M6502.cxx; sourceTree = SOURCE_ROOT; }; - DCECDAF510B9DBDC00AF4E1B /* M6502.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = M6502.hxx; path = ../emucore/M6502.hxx; sourceTree = SOURCE_ROOT; }; - DCECDAF610B9DBDC00AF4E1B /* NullDev.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = NullDev.cxx; path = ../emucore/NullDev.cxx; sourceTree = SOURCE_ROOT; }; - DCECDAF710B9DBDC00AF4E1B /* NullDev.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = NullDev.hxx; path = ../emucore/NullDev.hxx; sourceTree = SOURCE_ROOT; }; - DCECDAF810B9DBDC00AF4E1B /* System.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = System.cxx; path = ../emucore/System.cxx; sourceTree = SOURCE_ROOT; }; - DCECDAF910B9DBDC00AF4E1B /* System.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = System.hxx; path = ../emucore/System.hxx; sourceTree = SOURCE_ROOT; }; - DCECDB0210B9DC0400AF4E1B /* bspf.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = bspf.hxx; path = ../common/bspf.hxx; sourceTree = SOURCE_ROOT; }; - DCEECE540B5E5E540021D754 /* Cart0840.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Cart0840.cxx; path = ../emucore/Cart0840.cxx; sourceTree = SOURCE_ROOT; }; - DCEECE550B5E5E540021D754 /* Cart0840.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = Cart0840.hxx; path = ../emucore/Cart0840.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EAC1729A5CD00DD0CA9 /* Cart2KWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart2KWidget.cxx; path = ../debugger/gui/Cart2KWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EAD1729A5CD00DD0CA9 /* Cart2KWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart2KWidget.hxx; path = ../debugger/gui/Cart2KWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EAE1729A5CD00DD0CA9 /* Cart3EWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart3EWidget.cxx; path = ../debugger/gui/Cart3EWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EAF1729A5CD00DD0CA9 /* Cart3EWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart3EWidget.hxx; path = ../debugger/gui/Cart3EWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EB01729A5CD00DD0CA9 /* Cart3FWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart3FWidget.cxx; path = ../debugger/gui/Cart3FWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EB11729A5CD00DD0CA9 /* Cart3FWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart3FWidget.hxx; path = ../debugger/gui/Cart3FWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EB21729A5CD00DD0CA9 /* Cart4A50Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart4A50Widget.cxx; path = ../debugger/gui/Cart4A50Widget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EB31729A5CD00DD0CA9 /* Cart4A50Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart4A50Widget.hxx; path = ../debugger/gui/Cart4A50Widget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EB41729A5CD00DD0CA9 /* Cart4KWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart4KWidget.cxx; path = ../debugger/gui/Cart4KWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EB51729A5CD00DD0CA9 /* Cart4KWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart4KWidget.hxx; path = ../debugger/gui/Cart4KWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EB61729A5CD00DD0CA9 /* Cart0840Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cart0840Widget.cxx; path = ../debugger/gui/Cart0840Widget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EB71729A5CD00DD0CA9 /* Cart0840Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Cart0840Widget.hxx; path = ../debugger/gui/Cart0840Widget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EB81729A5CD00DD0CA9 /* CartARWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartARWidget.cxx; path = ../debugger/gui/CartARWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EB91729A5CD00DD0CA9 /* CartARWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartARWidget.hxx; path = ../debugger/gui/CartARWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EBA1729A5CD00DD0CA9 /* CartCMWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartCMWidget.cxx; path = ../debugger/gui/CartCMWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EBB1729A5CD00DD0CA9 /* CartCMWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartCMWidget.hxx; path = ../debugger/gui/CartCMWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EBC1729A5CD00DD0CA9 /* CartCTYWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartCTYWidget.cxx; path = ../debugger/gui/CartCTYWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EBD1729A5CD00DD0CA9 /* CartCTYWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartCTYWidget.hxx; path = ../debugger/gui/CartCTYWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EBE1729A5CD00DD0CA9 /* CartCVWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartCVWidget.cxx; path = ../debugger/gui/CartCVWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EBF1729A5CD00DD0CA9 /* CartCVWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartCVWidget.hxx; path = ../debugger/gui/CartCVWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EC01729A5CD00DD0CA9 /* CartDebugWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDebugWidget.hxx; path = ../debugger/gui/CartDebugWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EC11729A5CD00DD0CA9 /* CartDPCPlusWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDPCPlusWidget.cxx; path = ../debugger/gui/CartDPCPlusWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EC21729A5CD00DD0CA9 /* CartDPCPlusWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDPCPlusWidget.hxx; path = ../debugger/gui/CartDPCPlusWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EC31729A5CD00DD0CA9 /* CartDPCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartDPCWidget.cxx; path = ../debugger/gui/CartDPCWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EC41729A5CD00DD0CA9 /* CartDPCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartDPCWidget.hxx; path = ../debugger/gui/CartDPCWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EC51729A5CD00DD0CA9 /* CartE0Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartE0Widget.cxx; path = ../debugger/gui/CartE0Widget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EC61729A5CD00DD0CA9 /* CartE0Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartE0Widget.hxx; path = ../debugger/gui/CartE0Widget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EC71729A5CD00DD0CA9 /* CartE7Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartE7Widget.cxx; path = ../debugger/gui/CartE7Widget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EC81729A5CD00DD0CA9 /* CartE7Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartE7Widget.hxx; path = ../debugger/gui/CartE7Widget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EC91729A5CD00DD0CA9 /* CartEFSCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartEFSCWidget.cxx; path = ../debugger/gui/CartEFSCWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28ECA1729A5CD00DD0CA9 /* CartEFSCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartEFSCWidget.hxx; path = ../debugger/gui/CartEFSCWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28ECB1729A5CD00DD0CA9 /* CartEFWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartEFWidget.cxx; path = ../debugger/gui/CartEFWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28ECC1729A5CD00DD0CA9 /* CartEFWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartEFWidget.hxx; path = ../debugger/gui/CartEFWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28ECD1729A5CD00DD0CA9 /* CartF0Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartF0Widget.cxx; path = ../debugger/gui/CartF0Widget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28ECE1729A5CD00DD0CA9 /* CartF0Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartF0Widget.hxx; path = ../debugger/gui/CartF0Widget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28ECF1729A5CD00DD0CA9 /* CartF4SCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartF4SCWidget.cxx; path = ../debugger/gui/CartF4SCWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28ED01729A5CD00DD0CA9 /* CartF4SCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartF4SCWidget.hxx; path = ../debugger/gui/CartF4SCWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28ED11729A5CD00DD0CA9 /* CartF4Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartF4Widget.cxx; path = ../debugger/gui/CartF4Widget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28ED21729A5CD00DD0CA9 /* CartF4Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartF4Widget.hxx; path = ../debugger/gui/CartF4Widget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28ED31729A5CD00DD0CA9 /* CartF6SCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartF6SCWidget.cxx; path = ../debugger/gui/CartF6SCWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28ED41729A5CD00DD0CA9 /* CartF6SCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartF6SCWidget.hxx; path = ../debugger/gui/CartF6SCWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28ED51729A5CD00DD0CA9 /* CartF6Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartF6Widget.cxx; path = ../debugger/gui/CartF6Widget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28ED61729A5CD00DD0CA9 /* CartF6Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartF6Widget.hxx; path = ../debugger/gui/CartF6Widget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28ED71729A5CD00DD0CA9 /* CartF8SCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartF8SCWidget.cxx; path = ../debugger/gui/CartF8SCWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28ED81729A5CD00DD0CA9 /* CartF8SCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartF8SCWidget.hxx; path = ../debugger/gui/CartF8SCWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28ED91729A5CD00DD0CA9 /* CartF8Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartF8Widget.cxx; path = ../debugger/gui/CartF8Widget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EDA1729A5CD00DD0CA9 /* CartF8Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartF8Widget.hxx; path = ../debugger/gui/CartF8Widget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EDB1729A5CD00DD0CA9 /* CartFA2Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartFA2Widget.cxx; path = ../debugger/gui/CartFA2Widget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EDC1729A5CD00DD0CA9 /* CartFA2Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartFA2Widget.hxx; path = ../debugger/gui/CartFA2Widget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EDD1729A5CD00DD0CA9 /* CartFAWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartFAWidget.cxx; path = ../debugger/gui/CartFAWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EDE1729A5CD00DD0CA9 /* CartFAWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartFAWidget.hxx; path = ../debugger/gui/CartFAWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EDF1729A5CD00DD0CA9 /* CartFEWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartFEWidget.cxx; path = ../debugger/gui/CartFEWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EE01729A5CD00DD0CA9 /* CartFEWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartFEWidget.hxx; path = ../debugger/gui/CartFEWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EE11729A5CD00DD0CA9 /* CartMCWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartMCWidget.cxx; path = ../debugger/gui/CartMCWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EE21729A5CD00DD0CA9 /* CartMCWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartMCWidget.hxx; path = ../debugger/gui/CartMCWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EE31729A5CD00DD0CA9 /* CartSBWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartSBWidget.cxx; path = ../debugger/gui/CartSBWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EE41729A5CD00DD0CA9 /* CartSBWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartSBWidget.hxx; path = ../debugger/gui/CartSBWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EE51729A5CD00DD0CA9 /* CartUAWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartUAWidget.cxx; path = ../debugger/gui/CartUAWidget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EE61729A5CD00DD0CA9 /* CartUAWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartUAWidget.hxx; path = ../debugger/gui/CartUAWidget.hxx; sourceTree = SOURCE_ROOT; }; - DCF28EE71729A5CD00DD0CA9 /* CartX07Widget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartX07Widget.cxx; path = ../debugger/gui/CartX07Widget.cxx; sourceTree = SOURCE_ROOT; }; - DCF28EE81729A5CD00DD0CA9 /* CartX07Widget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartX07Widget.hxx; path = ../debugger/gui/CartX07Widget.hxx; sourceTree = SOURCE_ROOT; }; - DCF467B10F93993B00B25D7A /* Array.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Array.hxx; path = ../common/Array.hxx; sourceTree = SOURCE_ROOT; }; - DCF467B20F93993B00B25D7A /* SharedPtr.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = SharedPtr.hxx; path = ../common/SharedPtr.hxx; sourceTree = SOURCE_ROOT; }; - DCF467B40F93993B00B25D7A /* SoundNull.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = SoundNull.hxx; path = ../common/SoundNull.hxx; sourceTree = SOURCE_ROOT; }; - DCF467BC0F9399F500B25D7A /* Version.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Version.hxx; path = ../common/Version.hxx; sourceTree = SOURCE_ROOT; }; - DCF467BE0F939A1400B25D7A /* CartEF.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartEF.cxx; path = ../emucore/CartEF.cxx; sourceTree = SOURCE_ROOT; }; - DCF467BF0F939A1400B25D7A /* CartEF.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartEF.hxx; path = ../emucore/CartEF.hxx; sourceTree = SOURCE_ROOT; }; - DCF467C00F939A1400B25D7A /* CartEFSC.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartEFSC.cxx; path = ../emucore/CartEFSC.cxx; sourceTree = SOURCE_ROOT; }; - DCF467C10F939A1400B25D7A /* CartEFSC.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartEFSC.hxx; path = ../emucore/CartEFSC.hxx; sourceTree = SOURCE_ROOT; }; - DCF7B0D910A762FC007A2870 /* CartF0.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartF0.cxx; path = ../emucore/CartF0.cxx; sourceTree = SOURCE_ROOT; }; - DCF7B0DA10A762FC007A2870 /* CartF0.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartF0.hxx; path = ../emucore/CartF0.hxx; sourceTree = SOURCE_ROOT; }; - DCF7B0DB10A762FC007A2870 /* CartFA.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartFA.cxx; path = ../emucore/CartFA.cxx; sourceTree = SOURCE_ROOT; }; - DCF7B0DC10A762FC007A2870 /* CartFA.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartFA.hxx; path = ../emucore/CartFA.hxx; sourceTree = SOURCE_ROOT; }; - F5A47A9D01A0482F01D3D55B /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; - F5A47A9E01A0483001D3D55B /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 2D91750E09BA90380026E9FF /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 2D91750F09BA90380026E9FF /* Cocoa.framework in Frameworks */, - 2D91751009BA90380026E9FF /* OpenGL.framework in Frameworks */, - 2D91751109BA90380026E9FF /* SDL.framework in Frameworks */, - 2D91751209BA90380026E9FF /* ApplicationServices.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 080E96DDFE201D6D7F000001 /* Classes */ = { - isa = PBXGroup; - children = ( - 2D1A6CD4085135F9007CDBA8 /* AboutBox.h */, - 2D1A6CD5085135F9007CDBA8 /* AboutBox.m */, - 2DDBEBE3084582C400812C11 /* Preferences.h */, - 2DDBEBE4084582C400812C11 /* Preferences.m */, - F5A47A9D01A0482F01D3D55B /* SDLMain.h */, - F5A47A9E01A0483001D3D55B /* SDLMain.m */, - ); - name = Classes; - sourceTree = ""; - }; - 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { - isa = PBXGroup; - children = ( - 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, - ); - name = "Linked Frameworks"; - sourceTree = ""; - }; - 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { - isa = PBXGroup; - children = ( - 2D17D98E08BC398400E47F69 /* ApplicationServices.framework */, - 2D4764C806683C5F00F63D87 /* SDL.framework */, - 2DEB3D4C0629BD24007EBBD3 /* OpenGL.framework */, - 29B97325FDCFA39411CA2CEA /* Foundation.framework */, - 29B97324FDCFA39411CA2CEA /* AppKit.framework */, - ); - name = "Other Frameworks"; - sourceTree = ""; - }; - 19C28FACFE9D520D11CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - 2D91751E09BA90390026E9FF /* Stella.app */, - ); - name = Products; - sourceTree = ""; - }; - 29B97314FDCFA39411CA2CEA /* «PROJECTNAMEASXML» */ = { - isa = PBXGroup; - children = ( - DC419D81108E10A3006E8687 /* Info-Stella.plist */, - 080E96DDFE201D6D7F000001 /* Classes */, - 29B97315FDCFA39411CA2CEA /* Other Sources */, - 29B97317FDCFA39411CA2CEA /* Resources */, - 29B97323FDCFA39411CA2CEA /* Frameworks */, - 19C28FACFE9D520D11CA2CBB /* Products */, - ); - name = "«PROJECTNAMEASXML»"; - sourceTree = ""; - }; - 29B97315FDCFA39411CA2CEA /* Other Sources */ = { - isa = PBXGroup; - children = ( - DCCC0C9109C3541E0088BFF1 /* cheat */, - 2D6050C5089876F300C6DE89 /* common */, - 2D605130089879BA00C6DE89 /* debugger */, - 2D6050CC0898776500C6DE89 /* emucore */, - 2D6050FA0898786C00C6DE89 /* gui */, - DC3FE46711C7D32500C91C72 /* libpng */, - 2D6050C60898771C00C6DE89 /* macosx */, - 2D6050C90898774B00C6DE89 /* unix */, - 2D60513708987A5400C6DE89 /* yacc */, - ); - name = "Other Sources"; - sourceTree = ""; - }; - 29B97317FDCFA39411CA2CEA /* Resources */ = { - isa = PBXGroup; - children = ( - 2D113E090672BF2100317017 /* ../../docs */, - 2D16A8E106324136005DF364 /* Stella.icns */, - 2DEFB40B09C3386F00754289 /* Cart.icns */, - 2D7B4F6C063B513200579B93 /* Credits.html */, - 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, - B2F367C504C7ADC700A80002 /* SDLMain.nib */, - 2D1A6CD808513610007CDBA8 /* AboutBox.nib */, - ); - name = Resources; - sourceTree = ""; - }; - 29B97323FDCFA39411CA2CEA /* Frameworks */ = { - isa = PBXGroup; - children = ( - 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, - 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, - ); - name = Frameworks; - sourceTree = ""; - }; - 2D20F9E308C603C500A73076 /* gui */ = { - isa = PBXGroup; - children = ( - 2D23318F0900B5EF00613B1F /* AudioWidget.cxx */, - 2D2331900900B5EF00613B1F /* AudioWidget.hxx */, - DC0BFFEB14BA2BEB00CF5E7E /* BoosterWidget.cxx */, - DC0BFFEC14BA2BEB00CF5E7E /* BoosterWidget.hxx */, - DCF28EB61729A5CD00DD0CA9 /* Cart0840Widget.cxx */, - DCF28EB71729A5CD00DD0CA9 /* Cart0840Widget.hxx */, - DCF28EAC1729A5CD00DD0CA9 /* Cart2KWidget.cxx */, - DCF28EAD1729A5CD00DD0CA9 /* Cart2KWidget.hxx */, - DCF28EAE1729A5CD00DD0CA9 /* Cart3EWidget.cxx */, - DCF28EAF1729A5CD00DD0CA9 /* Cart3EWidget.hxx */, - DCF28EB01729A5CD00DD0CA9 /* Cart3FWidget.cxx */, - 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 */, - DCF28EBD1729A5CD00DD0CA9 /* CartCTYWidget.hxx */, - 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 */, - DCF28EC41729A5CD00DD0CA9 /* CartDPCWidget.hxx */, - DCF28EC51729A5CD00DD0CA9 /* CartE0Widget.cxx */, - DCF28EC61729A5CD00DD0CA9 /* CartE0Widget.hxx */, - DCF28EC71729A5CD00DD0CA9 /* CartE7Widget.cxx */, - DCF28EC81729A5CD00DD0CA9 /* CartE7Widget.hxx */, - DCF28EC91729A5CD00DD0CA9 /* CartEFSCWidget.cxx */, - DCF28ECA1729A5CD00DD0CA9 /* CartEFSCWidget.hxx */, - DCF28ECB1729A5CD00DD0CA9 /* CartEFWidget.cxx */, - DCF28ECC1729A5CD00DD0CA9 /* CartEFWidget.hxx */, - DCF28ECD1729A5CD00DD0CA9 /* CartF0Widget.cxx */, - DCF28ECE1729A5CD00DD0CA9 /* CartF0Widget.hxx */, - DCF28ECF1729A5CD00DD0CA9 /* CartF4SCWidget.cxx */, - DCF28ED01729A5CD00DD0CA9 /* CartF4SCWidget.hxx */, - DCF28ED11729A5CD00DD0CA9 /* CartF4Widget.cxx */, - DCF28ED21729A5CD00DD0CA9 /* CartF4Widget.hxx */, - DCF28ED31729A5CD00DD0CA9 /* CartF6SCWidget.cxx */, - DCF28ED41729A5CD00DD0CA9 /* CartF6SCWidget.hxx */, - DCF28ED51729A5CD00DD0CA9 /* CartF6Widget.cxx */, - DCF28ED61729A5CD00DD0CA9 /* CartF6Widget.hxx */, - DCF28ED71729A5CD00DD0CA9 /* CartF8SCWidget.cxx */, - DCF28ED81729A5CD00DD0CA9 /* CartF8SCWidget.hxx */, - DCF28ED91729A5CD00DD0CA9 /* CartF8Widget.cxx */, - DCF28EDA1729A5CD00DD0CA9 /* CartF8Widget.hxx */, - DCF28EDB1729A5CD00DD0CA9 /* CartFA2Widget.cxx */, - DCF28EDC1729A5CD00DD0CA9 /* CartFA2Widget.hxx */, - DCF28EDD1729A5CD00DD0CA9 /* CartFAWidget.cxx */, - DCF28EDE1729A5CD00DD0CA9 /* CartFAWidget.hxx */, - DCF28EDF1729A5CD00DD0CA9 /* CartFEWidget.cxx */, - DCF28EE01729A5CD00DD0CA9 /* CartFEWidget.hxx */, - DCF28EE11729A5CD00DD0CA9 /* CartMCWidget.cxx */, - DCF28EE21729A5CD00DD0CA9 /* CartMCWidget.hxx */, - DCF28EE31729A5CD00DD0CA9 /* CartSBWidget.cxx */, - DCF28EE41729A5CD00DD0CA9 /* CartSBWidget.hxx */, - DCF28EE51729A5CD00DD0CA9 /* CartUAWidget.cxx */, - DCF28EE61729A5CD00DD0CA9 /* CartUAWidget.hxx */, - DCF28EE71729A5CD00DD0CA9 /* CartX07Widget.cxx */, - DCF28EE81729A5CD00DD0CA9 /* CartX07Widget.hxx */, - 2D20F9E408C603EC00A73076 /* ColorWidget.cxx */, - 2D20F9E508C603EC00A73076 /* ColorWidget.hxx */, - DC0BFFED14BA2BEB00CF5E7E /* ControllerWidget.hxx */, - 2D20F9E608C603EC00A73076 /* CpuWidget.cxx */, - 2D20F9E708C603EC00A73076 /* CpuWidget.hxx */, - 2D20F9E808C603EC00A73076 /* DataGridOpsWidget.cxx */, - 2D20F9E908C603EC00A73076 /* DataGridOpsWidget.hxx */, - 2D20F9EA08C603EC00A73076 /* DataGridWidget.cxx */, - 2D20F9EB08C603EC00A73076 /* DataGridWidget.hxx */, - 2D20F9EC08C603EC00A73076 /* DebuggerDialog.cxx */, - 2D20F9ED08C603EC00A73076 /* DebuggerDialog.hxx */, - DC0BFFEE14BA2BEB00CF5E7E /* DrivingWidget.cxx */, - DC0BFFEF14BA2BEB00CF5E7E /* DrivingWidget.hxx */, - DC0BFFF014BA2BEB00CF5E7E /* GenesisWidget.cxx */, - DC0BFFF114BA2BEB00CF5E7E /* GenesisWidget.hxx */, - DC0BFFF214BA2BEB00CF5E7E /* JoystickWidget.cxx */, - DC0BFFF314BA2BEB00CF5E7E /* JoystickWidget.hxx */, - DC0BFFF414BA2BEB00CF5E7E /* KeyboardWidget.cxx */, - DC0BFFF514BA2BEB00CF5E7E /* KeyboardWidget.hxx */, - DC0BFFF614BA2BEB00CF5E7E /* NullControlWidget.hxx */, - DC0BFFF714BA2BEB00CF5E7E /* PaddleWidget.cxx */, - DC0BFFF814BA2BEB00CF5E7E /* PaddleWidget.hxx */, - 2D20F9EE08C603EC00A73076 /* PromptWidget.cxx */, - 2D20F9EF08C603EC00A73076 /* PromptWidget.hxx */, - 2D20F9F008C603EC00A73076 /* RamWidget.cxx */, - 2D20F9F108C603EC00A73076 /* RamWidget.hxx */, - DC4AC6ED0DC8DACB00CD3AD2 /* RiotWidget.cxx */, - DC4AC6EE0DC8DACB00CD3AD2 /* RiotWidget.hxx */, - DC449CAD176FF512004FA2D4 /* RomListSettings.cxx */, - DC449CAE176FF512004FA2D4 /* RomListSettings.hxx */, - 2D20F9F208C603EC00A73076 /* RomListWidget.cxx */, - 2D20F9F308C603EC00A73076 /* RomListWidget.hxx */, - 2D20F9F408C603EC00A73076 /* RomWidget.cxx */, - 2D20F9F508C603EC00A73076 /* RomWidget.hxx */, - 2D20F9F608C603EC00A73076 /* TiaInfoWidget.cxx */, - 2D20F9F708C603EC00A73076 /* TiaInfoWidget.hxx */, - 2D20F9F808C603EC00A73076 /* TiaOutputWidget.cxx */, - 2D20F9F908C603EC00A73076 /* TiaOutputWidget.hxx */, - 2D20F9FA08C603EC00A73076 /* TiaWidget.cxx */, - 2D20F9FB08C603EC00A73076 /* TiaWidget.hxx */, - 2D20F9FC08C603EC00A73076 /* ToggleBitWidget.cxx */, - 2D20F9FD08C603EC00A73076 /* ToggleBitWidget.hxx */, - 2D20F9FE08C603EC00A73076 /* TogglePixelWidget.cxx */, - 2D20F9FF08C603EC00A73076 /* TogglePixelWidget.hxx */, - 2D20FA0008C603EC00A73076 /* ToggleWidget.cxx */, - 2D20FA0108C603EC00A73076 /* ToggleWidget.hxx */, - ); - name = gui; - sourceTree = ""; - }; - 2D6050C5089876F300C6DE89 /* common */ = { - isa = PBXGroup; - children = ( - DCF467B10F93993B00B25D7A /* Array.hxx */, - DCECD7A717A88E51000A9753 /* Base.cxx */, - DCECD7A817A88E51000A9753 /* Base.hxx */, - DCECDB0210B9DC0400AF4E1B /* bspf.hxx */, - DC8AE5BF1417804C00335D45 /* FBSurfaceGL.cxx */, - DC8AE5C01417804C00335D45 /* FBSurfaceGL.hxx */, - DC8AE5C11417804C00335D45 /* FBSurfaceTIA.cxx */, - DC8AE5C21417804C00335D45 /* FBSurfaceTIA.hxx */, - 2D733D5D062893E7006265D9 /* FrameBufferGL.cxx */, - 2D733D5E062893E7006265D9 /* FrameBufferGL.hxx */, - 2D733D61062893E7006265D9 /* FrameBufferSoft.cxx */, - 2D733D62062893E7006265D9 /* FrameBufferSoft.hxx */, - DCA6276F16CB0D45004E9AF0 /* FSNodeFactory.hxx */, - DCA6277016CB0D45004E9AF0 /* FSNodeZIP.cxx */, - DCA6277116CB0D45004E9AF0 /* FSNodeZIP.hxx */, - 2DDBEA0A0845700300812C11 /* mainSDL.cxx */, - DCAE2A9114CCCCBD004327BB /* MouseControl.cxx */, - DCAE2A9214CCCCBD004327BB /* MouseControl.hxx */, - DC3FE49D11C7D3FE00C91C72 /* PNGLibrary.cxx */, - DC3FE49E11C7D3FE00C91C72 /* PNGLibrary.hxx */, - DCD56D3A0B247DB40092F9F8 /* RectList.cxx */, - DCD56D3B0B247DB40092F9F8 /* RectList.hxx */, - DCF467B20F93993B00B25D7A /* SharedPtr.hxx */, - DCF467B40F93993B00B25D7A /* SoundNull.hxx */, - 2DDA34020665817D00CDD299 /* SoundSDL.cxx */, - 2DDA34030665817D00CDD299 /* SoundSDL.hxx */, - DC5D1AA6102C6FC900E59AC1 /* Stack.hxx */, - DC5C76AF14C2709E0031EBC7 /* StellaKeys.hxx */, - DC20D6F1138EB130002A7428 /* StringList.hxx */, - DC20D6F2138EB130002A7428 /* StringParser.hxx */, - DC881B87151676A200021371 /* tv_filters */, - DC3C3CDB173B1EB2009FFE61 /* Variant.hxx */, - DCF467BC0F9399F500B25D7A /* Version.hxx */, - DCA6277216CB0D45004E9AF0 /* ZipHandler.cxx */, - DCA6277316CB0D45004E9AF0 /* ZipHandler.hxx */, - ); - name = common; - sourceTree = ""; - }; - 2D6050C60898771C00C6DE89 /* macosx */ = { - isa = PBXGroup; - children = ( - 2D28DDE409DC2D9F00A17585 /* MenusEvents.h */, - 2DDBEA0E0845709700812C11 /* OSystemMACOSX.cxx */, - 2DDBEA0F0845709700812C11 /* OSystemMACOSX.hxx */, - DC1FC1880DB3B2C7009B3DF7 /* SerialPortMACOSX.cxx */, - DC1FC1890DB3B2C7009B3DF7 /* SerialPortMACOSX.hxx */, - 2D944866062911CD00DD9879 /* SettingsMACOSX.cxx */, - 2D94486C0629124700DD9879 /* SettingsMACOSX.hxx */, - ); - name = macosx; - sourceTree = ""; - }; - 2D6050C90898774B00C6DE89 /* unix */ = { - isa = PBXGroup; - children = ( - 2DDBEA0C0845708800812C11 /* FSNodePOSIX.cxx */, - DCA6276016CB0D1C004E9AF0 /* FSNodePOSIX.hxx */, - ); - name = unix; - sourceTree = ""; - }; - 2D6050CC0898776500C6DE89 /* emucore */ = { - isa = PBXGroup; - children = ( - DC487FB40DA5350900E12499 /* AtariVox.cxx */, - DC487FB50DA5350900E12499 /* AtariVox.hxx */, - 2DE2DF100627AE07006BEC99 /* Booster.cxx */, - 2DE2DF110627AE07006BEC99 /* Booster.hxx */, - 2DE2DF120627AE07006BEC99 /* Cart.cxx */, - 2DE2DF130627AE07006BEC99 /* Cart.hxx */, - DCEECE540B5E5E540021D754 /* Cart0840.cxx */, - DCEECE550B5E5E540021D754 /* Cart0840.hxx */, - 2DE2DF140627AE07006BEC99 /* Cart2K.cxx */, - 2DE2DF150627AE07006BEC99 /* Cart2K.hxx */, - 2D9555D90880E78000466554 /* Cart3E.cxx */, - 2D9555DA0880E78000466554 /* Cart3E.hxx */, - 2DE2DF160627AE07006BEC99 /* Cart3F.cxx */, - 2DE2DF170627AE07006BEC99 /* Cart3F.hxx */, - DCD56D360B247D920092F9F8 /* Cart4A50.cxx */, - 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 */, - DCDBD3161556F60C00308CC4 /* CartCTY.hxx */, - 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 */, - DC64EB1F1152F9C000DC9140 /* CartDPCPlus.hxx */, - 2DE2DF200627AE07006BEC99 /* CartE0.cxx */, - 2DE2DF210627AE07006BEC99 /* CartE0.hxx */, - 2DE2DF220627AE07006BEC99 /* CartE7.cxx */, - 2DE2DF230627AE07006BEC99 /* CartE7.hxx */, - DCF467BE0F939A1400B25D7A /* CartEF.cxx */, - DCF467BF0F939A1400B25D7A /* CartEF.hxx */, - DCF467C00F939A1400B25D7A /* CartEFSC.cxx */, - DCF467C10F939A1400B25D7A /* CartEFSC.hxx */, - DCF7B0D910A762FC007A2870 /* CartF0.cxx */, - DCF7B0DA10A762FC007A2870 /* CartF0.hxx */, - 2DE2DF240627AE07006BEC99 /* CartF4.cxx */, - 2DE2DF250627AE07006BEC99 /* CartF4.hxx */, - 2DE2DF260627AE07006BEC99 /* CartF4SC.cxx */, - 2DE2DF270627AE07006BEC99 /* CartF4SC.hxx */, - 2DE2DF280627AE07006BEC99 /* CartF6.cxx */, - 2DE2DF290627AE07006BEC99 /* CartF6.hxx */, - 2DE2DF2A0627AE07006BEC99 /* CartF6SC.cxx */, - 2DE2DF2B0627AE07006BEC99 /* CartF6SC.hxx */, - 2DE2DF2C0627AE07006BEC99 /* CartF8.cxx */, - 2DE2DF2D0627AE07006BEC99 /* CartF8.hxx */, - 2DE2DF2E0627AE07006BEC99 /* CartF8SC.cxx */, - 2DE2DF2F0627AE07006BEC99 /* CartF8SC.hxx */, - DCF7B0DB10A762FC007A2870 /* CartFA.cxx */, - DCF7B0DC10A762FC007A2870 /* CartFA.hxx */, - DC922D0414CAFB1E006EB471 /* CartFA2.cxx */, - DC922D0514CAFB1E006EB471 /* CartFA2.hxx */, - 2DE2DF320627AE07006BEC99 /* CartFE.cxx */, - 2DE2DF330627AE07006BEC99 /* CartFE.hxx */, - 2DE2DF360627AE07006BEC99 /* CartMC.cxx */, - 2DE2DF370627AE07006BEC99 /* CartMC.hxx */, - DC0984830D3985160073C852 /* CartSB.cxx */, - DC0984840D3985160073C852 /* CartSB.hxx */, - 2DDBEB7008457B7D00812C11 /* CartUA.cxx */, - 2DDBEB7108457B7D00812C11 /* CartUA.hxx */, - DCA23AE70D75B22500F77B33 /* CartX07.cxx */, - DCA23AE80D75B22500F77B33 /* CartX07.hxx */, - DC3E4A6214B25EB30071D7BC /* CompuMate.cxx */, - DC3E4A6314B25EB30071D7BC /* CompuMate.hxx */, - 2DE2DF380627AE07006BEC99 /* Console.cxx */, - 2DE2DF390627AE07006BEC99 /* Console.hxx */, - 2DE2DF3A0627AE07006BEC99 /* Control.cxx */, - 2DE2DF3B0627AE07006BEC99 /* Control.hxx */, - DC932D3F0F278A5200FEFEFC /* DefProps.hxx */, - DCECDAF310B9DBDC00AF4E1B /* Device.hxx */, - 2DE2DF3E0627AE07006BEC99 /* Driving.cxx */, - 2DE2DF3F0627AE07006BEC99 /* Driving.hxx */, - 2DE2DF410627AE07006BEC99 /* Event.hxx */, - 2D733D6E062895B2006265D9 /* EventHandler.cxx */, - 2D733D6F062895B2006265D9 /* EventHandler.hxx */, - 2D733D70062895B2006265D9 /* FrameBuffer.cxx */, - 2D733D71062895B2006265D9 /* FrameBuffer.hxx */, - 2DDBEB7208457B7D00812C11 /* FSNode.cxx */, - 2DDBEB7308457B7D00812C11 /* FSNode.hxx */, - DC84E11A1135988E00CA7C9D /* Genesis.cxx */, - DC84E11B1135988E00CA7C9D /* Genesis.hxx */, - 2DE2DF420627AE07006BEC99 /* Joystick.cxx */, - 2DE2DF430627AE07006BEC99 /* Joystick.hxx */, - 2DE2DF440627AE07006BEC99 /* Keyboard.cxx */, - 2DE2DF450627AE07006BEC99 /* Keyboard.hxx */, - DC9EA8850F729A36000452B5 /* KidVid.cxx */, - DC9EA8860F729A36000452B5 /* KidVid.hxx */, - DCECDAF410B9DBDC00AF4E1B /* M6502.cxx */, - DCECDAF510B9DBDC00AF4E1B /* M6502.hxx */, - 2DE2DF7C0627AE33006BEC99 /* M6532.cxx */, - 2DE2DF7D0627AE33006BEC99 /* M6532.hxx */, - 2DE2DF7E0627AE33006BEC99 /* MD5.cxx */, - 2DE2DF7F0627AE34006BEC99 /* MD5.hxx */, - 2D05FF5B096E261E00A518FE /* MediaFactory.hxx */, - DC3E4A6414B25EB30071D7BC /* MindLink.cxx */, - DC3E4A6514B25EB30071D7BC /* MindLink.hxx */, - DC11F78B0DB36933003B505E /* MT24LC256.cxx */, - DC11F78C0DB36933003B505E /* MT24LC256.hxx */, - DCECDAF610B9DBDC00AF4E1B /* NullDev.cxx */, - DCECDAF710B9DBDC00AF4E1B /* NullDev.hxx */, - 2DDBEB7408457B7D00812C11 /* OSystem.cxx */, - 2DDBEB7508457B7D00812C11 /* OSystem.hxx */, - 2DE2DF820627AE34006BEC99 /* Paddles.cxx */, - 2DE2DF830627AE34006BEC99 /* Paddles.hxx */, - 2DE2DF840627AE34006BEC99 /* Props.cxx */, - 2DE2DF850627AE34006BEC99 /* Props.hxx */, - 2DE2DF860627AE34006BEC99 /* PropsSet.cxx */, - 2DE2DF870627AE34006BEC99 /* PropsSet.hxx */, - 2DE2DF880627AE34006BEC99 /* Random.cxx */, - 2DE2DF890627AE34006BEC99 /* Random.hxx */, - DC4AC6F10DC8DAEF00CD3AD2 /* SaveKey.cxx */, - DC4AC6F20DC8DAEF00CD3AD2 /* SaveKey.hxx */, - DC932D400F278A5200FEFEFC /* Serializable.hxx */, - 2DE2DF8A0627AE34006BEC99 /* Serializer.cxx */, - 2DE2DF8B0627AE34006BEC99 /* Serializer.hxx */, - DC932D410F278A5200FEFEFC /* SerialPort.hxx */, - 2D944848062904E800DD9879 /* Settings.cxx */, - 2D733D77062895F1006265D9 /* Settings.hxx */, - 2DE2DF8D0627AE34006BEC99 /* Sound.hxx */, - DC07A3C60CAD738A009B4BC9 /* StateManager.cxx */, - DC07A3C70CAD738A009B4BC9 /* StateManager.hxx */, - 2DE2DF8E0627AE34006BEC99 /* Switches.cxx */, - 2DE2DF8F0627AE34006BEC99 /* Switches.hxx */, - DCECDAF810B9DBDC00AF4E1B /* System.cxx */, - DCECDAF910B9DBDC00AF4E1B /* System.hxx */, - DC4AF1F112E39F700090B82E /* Thumbulator.cxx */, - DC4AF1F212E39F700090B82E /* Thumbulator.hxx */, - 2DE2DF900627AE34006BEC99 /* TIA.cxx */, - 2DE2DF910627AE34006BEC99 /* TIA.hxx */, - 2DE7242D08CE910900C889A8 /* TIASnd.cxx */, - 2DE7242E08CE910900C889A8 /* TIASnd.hxx */, - DC932D420F278A5200FEFEFC /* TIATables.cxx */, - DC932D430F278A5200FEFEFC /* TIATables.hxx */, - DCE6EB200DD9ADA00047AC28 /* TrackBall.cxx */, - DCE6EB210DD9ADA00047AC28 /* TrackBall.hxx */, - ); - name = emucore; - sourceTree = ""; - }; - 2D6050FA0898786C00C6DE89 /* gui */ = { - isa = PBXGroup; - children = ( - 2DDBEAA3084578BF00812C11 /* AboutDialog.cxx */, - 2DDBEAA4084578BF00812C11 /* AboutDialog.hxx */, - 2DDBEAA6084578BF00812C11 /* AudioDialog.cxx */, - 2DDBEAA7084578BF00812C11 /* AudioDialog.hxx */, - 2DDBEAA8084578BF00812C11 /* BrowserDialog.cxx */, - 2DDBEAA9084578BF00812C11 /* BrowserDialog.hxx */, - 2DEF21F808BC033500B246B4 /* CheckListWidget.cxx */, - 2DEF21F908BC033500B246B4 /* CheckListWidget.hxx */, - DCBD96871210314C0087CEFD /* ComboDialog.cxx */, - DCBD96881210314C0087CEFD /* ComboDialog.hxx */, - 2DDBEAAA084578BF00812C11 /* Command.hxx */, - 2D73959308C3EB4E0060BB99 /* CommandDialog.cxx */, - 2D73959408C3EB4E0060BB99 /* CommandDialog.hxx */, - 2D73959508C3EB4E0060BB99 /* CommandMenu.cxx */, - 2D73959608C3EB4E0060BB99 /* CommandMenu.hxx */, - DC0D76A2177259C3005C7805 /* ConfigPathDialog.cxx */, - DC0D76A3177259C3005C7805 /* ConfigPathDialog.hxx */, - DC3F601517C9140100A1977D /* ConsoleBFont.hxx */, - 2D9217FA0857CC88001D664B /* ConsoleFont.hxx */, - DC3F601617C9140100A1977D /* ConsoleMediumBFont.hxx */, - DCB31D3D17C2D667002C0868 /* ConsoleMediumFont.hxx */, - DC173F740E2CAC1E00320F94 /* ContextMenu.cxx */, - DC173F750E2CAC1E00320F94 /* ContextMenu.hxx */, - 2DDBEAAB084578BF00812C11 /* Dialog.cxx */, - 2DDBEAAC084578BF00812C11 /* Dialog.hxx */, - 2DDBEAAD084578BF00812C11 /* DialogContainer.cxx */, - 2DDBEAAE084578BF00812C11 /* DialogContainer.hxx */, - 2D403BA0086116D1001E31A1 /* EditableWidget.cxx */, - 2D403BA1086116D1001E31A1 /* EditableWidget.hxx */, - 2D403BA4086116D1001E31A1 /* EditTextWidget.cxx */, - 2D403BA5086116D1001E31A1 /* EditTextWidget.hxx */, - 2D05FF5E096E269100A518FE /* EventMappingWidget.cxx */, - 2D05FF5F096E269100A518FE /* EventMappingWidget.hxx */, - DC3C3CDF173B1EC8009FFE61 /* FileListWidget.cxx */, - DC3C3CE0173B1EC8009FFE61 /* FileListWidget.hxx */, - 2D9217FB0857CC88001D664B /* Font.cxx */, - 2D9217FC0857CC88001D664B /* Font.hxx */, - 2DDBEAB2084578BF00812C11 /* GameInfoDialog.cxx */, - 2DDBEAB3084578BF00812C11 /* GameInfoDialog.hxx */, - 2DDBEAB4084578BF00812C11 /* GameList.cxx */, - 2DDBEAB5084578BF00812C11 /* GameList.hxx */, - DC0DF8670F0DAAF500B0F1F3 /* GlobalPropsDialog.cxx */, - DC0DF8680F0DAAF500B0F1F3 /* GlobalPropsDialog.hxx */, - 2DDBEAB6084578BF00812C11 /* GuiObject.hxx */, - 2DDBEAB8084578BF00812C11 /* HelpDialog.cxx */, - 2DDBEAB9084578BF00812C11 /* HelpDialog.hxx */, - 2D05FF60096E269100A518FE /* InputDialog.cxx */, - 2D05FF61096E269100A518FE /* InputDialog.hxx */, - 2D02207F08A301F200B9C76B /* InputTextDialog.cxx */, - 2D02208008A301F200B9C76B /* InputTextDialog.hxx */, - 2DDBEABA084578BF00812C11 /* Launcher.cxx */, - 2DDBEABB084578BF00812C11 /* Launcher.hxx */, - 2DDBEABC084578BF00812C11 /* LauncherDialog.cxx */, - 2DDBEABD084578BF00812C11 /* LauncherDialog.hxx */, - DC5D2C5E0F129B1E004D1660 /* LauncherFilterDialog.cxx */, - DC5D2C5F0F129B1E004D1660 /* LauncherFilterDialog.hxx */, - 2DDBEAC0084578BF00812C11 /* ListWidget.cxx */, - 2DDBEAC1084578BF00812C11 /* ListWidget.hxx */, - DC7A769813FEA40300ED8633 /* LoggerDialog.cxx */, - DC7A769913FEA40300ED8633 /* LoggerDialog.hxx */, - 2DDBEAC2084578BF00812C11 /* Menu.cxx */, - 2DDBEAC3084578BF00812C11 /* Menu.hxx */, - DCB5CEE511F5B78C00C68D09 /* MessageBox.cxx */, - DCB5CEE611F5B78C00C68D09 /* MessageBox.hxx */, - 2DDBEAC4084578BF00812C11 /* OptionsDialog.cxx */, - 2DDBEAC5084578BF00812C11 /* OptionsDialog.hxx */, - 2DDBEAC6084578BF00812C11 /* PopUpWidget.cxx */, - 2DDBEAC7084578BF00812C11 /* PopUpWidget.hxx */, - 2DDBEAC8084578BF00812C11 /* ProgressDialog.cxx */, - 2DDBEAC9084578BF00812C11 /* ProgressDialog.hxx */, - DC5D2C4E0F117CFD004D1660 /* Rect.hxx */, - DC4613650D92C03600D8DAB9 /* RomAuditDialog.cxx */, - DC4613660D92C03600D8DAB9 /* RomAuditDialog.hxx */, - DCE3BBF50C95CEDC00A671DF /* RomInfoWidget.cxx */, - DCE3BBF60C95CEDC00A671DF /* RomInfoWidget.hxx */, - 2DDBEACA084578BF00812C11 /* ScrollBarWidget.cxx */, - 2DDBEACB084578BF00812C11 /* ScrollBarWidget.hxx */, - DC0D76A4177259C3005C7805 /* SnapshotDialog.cxx */, - DC0D76A5177259C3005C7805 /* SnapshotDialog.hxx */, - DC5D2C4F0F117CFD004D1660 /* StellaFont.hxx */, - DC5D2C500F117CFD004D1660 /* StellaLargeFont.hxx */, - DC5D2C510F117CFD004D1660 /* StellaMediumFont.hxx */, - 2DEF21FA08BC033500B246B4 /* StringListWidget.cxx */, - 2DEF21FB08BC033500B246B4 /* StringListWidget.hxx */, - 2DDBEAD0084578BF00812C11 /* TabWidget.cxx */, - 2DDBEAD1084578BF00812C11 /* TabWidget.hxx */, - DC8078E60B4BD697005E9305 /* UIDialog.cxx */, - DC8078E70B4BD697005E9305 /* UIDialog.hxx */, - 2DDBEAD2084578BF00812C11 /* VideoDialog.cxx */, - 2DDBEAD3084578BF00812C11 /* VideoDialog.hxx */, - 2DDBEAD4084578BF00812C11 /* Widget.cxx */, - 2DDBEAD5084578BF00812C11 /* Widget.hxx */, - ); - name = gui; - sourceTree = ""; - }; - 2D605130089879BA00C6DE89 /* debugger */ = { - isa = PBXGroup; - children = ( - 2D20F9E308C603C500A73076 /* gui */, - DCE9CC261103812700C86671 /* CartDebug.cxx */, - DCE9CC271103812700C86671 /* CartDebug.hxx */, - 2D9555DD0880E79600466554 /* CpuDebug.cxx */, - 2D9555DE0880E79600466554 /* CpuDebug.hxx */, - 2D659E2D085D3DD6005D96C8 /* Debugger.cxx */, - 2D659E2E085D3DD6005D96C8 /* Debugger.hxx */, - DC8078DA0B4BD5F3005E9305 /* DebuggerExpressions.hxx */, - 2D659E31085D3DD6005D96C8 /* DebuggerParser.cxx */, - 2D659E32085D3DD6005D96C8 /* DebuggerParser.hxx */, - 2DF971D70892CEA400F64D23 /* DebuggerSystem.hxx */, - DCE9CC281103812700C86671 /* DiStella.cxx */, - DCE9CC291103812700C86671 /* DiStella.hxx */, - 2DF971DE0892CEA400F64D23 /* Expression.cxx */, - 2DF971DF0892CEA400F64D23 /* Expression.hxx */, - 2D403BCE08611A69001E31A1 /* PackedBitArray.cxx */, - 2D403BCF08611A69001E31A1 /* PackedBitArray.hxx */, - DCA00FF50DBABCAD00C3823D /* RiotDebug.cxx */, - DCA00FF60DBABCAD00C3823D /* RiotDebug.hxx */, - 2D30F8750868A4DB00938B9D /* TIADebug.cxx */, - 2D30F8760868A4DB00938B9D /* TIADebug.hxx */, - 2D6CC10308C811A600B8F642 /* TiaZoomWidget.cxx */, - 2D6CC10408C811A600B8F642 /* TiaZoomWidget.hxx */, - ); - name = debugger; - sourceTree = ""; - }; - 2D60513708987A5400C6DE89 /* yacc */ = { - isa = PBXGroup; - children = ( - 2D313F0A0879C4C0005BD3E5 /* YaccParser.cxx */, - 2D313F0B0879C4C0005BD3E5 /* YaccParser.hxx */, - ); - name = yacc; - sourceTree = ""; - }; - DC3FE46711C7D32500C91C72 /* libpng */ = { - isa = PBXGroup; - children = ( - DC3FE46A11C7D35600C91C72 /* png.c */, - DC3FE46B11C7D35600C91C72 /* png.h */, - DC3FE46C11C7D35600C91C72 /* pngconf.h */, - DC17E8051361FDB500397A9E /* pngdebug.h */, - DC3FE46D11C7D35600C91C72 /* pngerror.c */, - DC3FE46E11C7D35600C91C72 /* pngget.c */, - DC17E8061361FDB500397A9E /* pnginfo.h */, - DC17E8071361FDB500397A9E /* pnglibconf.h */, - DC3FE46F11C7D35600C91C72 /* pngmem.c */, - DC3FE47011C7D35600C91C72 /* pngpread.c */, - DC3FE47111C7D35600C91C72 /* pngpriv.h */, - DC3FE47211C7D35600C91C72 /* pngread.c */, - DC3FE47311C7D35600C91C72 /* pngrio.c */, - DC3FE47411C7D35600C91C72 /* pngrtran.c */, - DC3FE47511C7D35600C91C72 /* pngrutil.c */, - DC3FE47611C7D35600C91C72 /* pngset.c */, - DC17E8081361FDB500397A9E /* pngstruct.h */, - DC3FE47711C7D35600C91C72 /* pngtrans.c */, - DC3FE47811C7D35600C91C72 /* pngwio.c */, - DC3FE47911C7D35600C91C72 /* pngwrite.c */, - DC3FE47A11C7D35600C91C72 /* pngwtran.c */, - DC3FE47B11C7D35600C91C72 /* pngwutil.c */, - ); - name = libpng; - sourceTree = ""; - }; - DC881B87151676A200021371 /* tv_filters */ = { - isa = PBXGroup; - children = ( - DC752D931513E9F7005B0D24 /* atari_ntsc.c */, - DC752D941513E9F7005B0D24 /* atari_ntsc.h */, - DC752D921513E9F7005B0D24 /* atari_ntsc_impl.h */, - DC49F90314F7D0DB000704B0 /* NTSCFilter.cxx */, - DC49F90414F7D0DB000704B0 /* NTSCFilter.hxx */, - ); - name = tv_filters; - sourceTree = ""; - }; - DCCC0C9109C3541E0088BFF1 /* cheat */ = { - isa = PBXGroup; - children = ( - DC47454A09C34BFA00EDDA3A /* BankRomCheat.cxx */, - DC47454B09C34BFA00EDDA3A /* BankRomCheat.hxx */, - DC47454C09C34BFA00EDDA3A /* Cheat.hxx */, - DC47454D09C34BFA00EDDA3A /* CheatCodeDialog.cxx */, - DC47454E09C34BFA00EDDA3A /* CheatCodeDialog.hxx */, - DC47454F09C34BFA00EDDA3A /* CheatManager.cxx */, - DC47455009C34BFA00EDDA3A /* CheatManager.hxx */, - DC47455109C34BFA00EDDA3A /* CheetahCheat.cxx */, - DC47455209C34BFA00EDDA3A /* CheetahCheat.hxx */, - DC47455309C34BFA00EDDA3A /* RamCheat.cxx */, - DC47455409C34BFA00EDDA3A /* RamCheat.hxx */, - ); - name = cheat; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 2D9173CA09BA90380026E9FF /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 2D9173CB09BA90380026E9FF /* SDLMain.h in Headers */, - 2D9173CC09BA90380026E9FF /* Booster.hxx in Headers */, - 2D9173CD09BA90380026E9FF /* Cart.hxx in Headers */, - 2D9173CE09BA90380026E9FF /* Cart2K.hxx in Headers */, - 2D9173CF09BA90380026E9FF /* Cart3F.hxx in Headers */, - 2D9173D009BA90380026E9FF /* Cart4K.hxx in Headers */, - 2D9173D109BA90380026E9FF /* CartAR.hxx in Headers */, - 2D9173D209BA90380026E9FF /* CartCV.hxx in Headers */, - 2D9173D309BA90380026E9FF /* CartDPC.hxx in Headers */, - 2D9173D409BA90380026E9FF /* CartE0.hxx in Headers */, - 2D9173D509BA90380026E9FF /* CartE7.hxx in Headers */, - 2D9173D609BA90380026E9FF /* CartF4.hxx in Headers */, - 2D9173D709BA90380026E9FF /* CartF4SC.hxx in Headers */, - 2D9173D809BA90380026E9FF /* CartF6.hxx in Headers */, - 2D9173D909BA90380026E9FF /* CartF6SC.hxx in Headers */, - 2D9173DA09BA90380026E9FF /* CartF8.hxx in Headers */, - 2D9173DB09BA90380026E9FF /* CartF8SC.hxx in Headers */, - 2D9173DD09BA90380026E9FF /* CartFE.hxx in Headers */, - 2D9173DF09BA90380026E9FF /* CartMC.hxx in Headers */, - 2D9173E009BA90380026E9FF /* Console.hxx in Headers */, - 2D9173E109BA90380026E9FF /* Control.hxx in Headers */, - 2D9173E309BA90380026E9FF /* Driving.hxx in Headers */, - 2D9173E409BA90380026E9FF /* Event.hxx in Headers */, - 2D9173E509BA90380026E9FF /* Joystick.hxx in Headers */, - 2D9173E609BA90380026E9FF /* Keyboard.hxx in Headers */, - 2D9173E709BA90380026E9FF /* M6532.hxx in Headers */, - 2D9173E809BA90380026E9FF /* MD5.hxx in Headers */, - 2D9173EA09BA90380026E9FF /* Paddles.hxx in Headers */, - 2D9173EB09BA90380026E9FF /* Props.hxx in Headers */, - 2D9173EC09BA90380026E9FF /* PropsSet.hxx in Headers */, - 2D9173ED09BA90380026E9FF /* Random.hxx in Headers */, - 2D9173EE09BA90380026E9FF /* Serializer.hxx in Headers */, - 2D9173EF09BA90380026E9FF /* Sound.hxx in Headers */, - 2D9173F009BA90380026E9FF /* Switches.hxx in Headers */, - 2D9173F109BA90380026E9FF /* TIA.hxx in Headers */, - 2D9173F709BA90380026E9FF /* FrameBufferGL.hxx in Headers */, - 2D9173F809BA90380026E9FF /* FrameBufferSoft.hxx in Headers */, - 2D9173F909BA90380026E9FF /* EventHandler.hxx in Headers */, - 2D9173FA09BA90380026E9FF /* FrameBuffer.hxx in Headers */, - 2D9173FB09BA90380026E9FF /* Settings.hxx in Headers */, - 2D9173FC09BA90380026E9FF /* SettingsMACOSX.hxx in Headers */, - 2D9173FD09BA90380026E9FF /* SoundSDL.hxx in Headers */, - 2D9173FF09BA90380026E9FF /* OSystemMACOSX.hxx in Headers */, - 2D91740009BA90380026E9FF /* AboutDialog.hxx in Headers */, - 2D91740109BA90380026E9FF /* AudioDialog.hxx in Headers */, - 2D91740209BA90380026E9FF /* BrowserDialog.hxx in Headers */, - 2D91740309BA90380026E9FF /* Command.hxx in Headers */, - 2D91740409BA90380026E9FF /* Dialog.hxx in Headers */, - 2D91740509BA90380026E9FF /* DialogContainer.hxx in Headers */, - 2D91740609BA90380026E9FF /* GameInfoDialog.hxx in Headers */, - 2D91740709BA90380026E9FF /* GameList.hxx in Headers */, - 2D91740809BA90380026E9FF /* GuiObject.hxx in Headers */, - 2D91740A09BA90380026E9FF /* HelpDialog.hxx in Headers */, - 2D91740B09BA90380026E9FF /* Launcher.hxx in Headers */, - 2D91740C09BA90380026E9FF /* LauncherDialog.hxx in Headers */, - 2D91740E09BA90380026E9FF /* ListWidget.hxx in Headers */, - 2D91740F09BA90380026E9FF /* Menu.hxx in Headers */, - 2D91741009BA90380026E9FF /* OptionsDialog.hxx in Headers */, - 2D91741109BA90380026E9FF /* PopUpWidget.hxx in Headers */, - 2D91741209BA90380026E9FF /* ProgressDialog.hxx in Headers */, - 2D91741309BA90380026E9FF /* ScrollBarWidget.hxx in Headers */, - 2D91741609BA90380026E9FF /* TabWidget.hxx in Headers */, - 2D91741709BA90380026E9FF /* VideoDialog.hxx in Headers */, - 2D91741809BA90380026E9FF /* Widget.hxx in Headers */, - 2D91741909BA90380026E9FF /* CartUA.hxx in Headers */, - 2D91741A09BA90380026E9FF /* FSNode.hxx in Headers */, - 2D91741B09BA90380026E9FF /* OSystem.hxx in Headers */, - 2D91741D09BA90380026E9FF /* Preferences.h in Headers */, - 2D91741F09BA90380026E9FF /* AboutBox.h in Headers */, - 2D91742009BA90380026E9FF /* ConsoleFont.hxx in Headers */, - 2D91742109BA90380026E9FF /* Font.hxx in Headers */, - 2D91742209BA90380026E9FF /* Debugger.hxx in Headers */, - 2D91742309BA90380026E9FF /* DebuggerParser.hxx in Headers */, - 2D91742409BA90380026E9FF /* EditableWidget.hxx in Headers */, - 2D91742509BA90380026E9FF /* EditTextWidget.hxx in Headers */, - 2D91742809BA90380026E9FF /* PackedBitArray.hxx in Headers */, - 2D91742909BA90380026E9FF /* TIADebug.hxx in Headers */, - 2D91742A09BA90380026E9FF /* YaccParser.hxx in Headers */, - 2D91742B09BA90380026E9FF /* Cart3E.hxx in Headers */, - 2D91742C09BA90380026E9FF /* CpuDebug.hxx in Headers */, - 2D91743609BA90380026E9FF /* DebuggerSystem.hxx in Headers */, - 2D91743A09BA90380026E9FF /* Expression.hxx in Headers */, - 2D91744F09BA90380026E9FF /* InputTextDialog.hxx in Headers */, - 2D91745009BA90380026E9FF /* CheckListWidget.hxx in Headers */, - 2D91745109BA90380026E9FF /* StringListWidget.hxx in Headers */, - 2D91745209BA90380026E9FF /* CommandDialog.hxx in Headers */, - 2D91745309BA90380026E9FF /* CommandMenu.hxx in Headers */, - 2D91745409BA90380026E9FF /* ColorWidget.hxx in Headers */, - 2D91745509BA90380026E9FF /* CpuWidget.hxx in Headers */, - 2D91745609BA90380026E9FF /* DataGridOpsWidget.hxx in Headers */, - 2D91745709BA90380026E9FF /* DataGridWidget.hxx in Headers */, - 2D91745809BA90380026E9FF /* DebuggerDialog.hxx in Headers */, - 2D91745909BA90380026E9FF /* PromptWidget.hxx in Headers */, - 2D91745A09BA90380026E9FF /* RamWidget.hxx in Headers */, - 2D91745B09BA90380026E9FF /* RomListWidget.hxx in Headers */, - 2D91745C09BA90380026E9FF /* RomWidget.hxx in Headers */, - 2D91745D09BA90380026E9FF /* TiaInfoWidget.hxx in Headers */, - 2D91745E09BA90380026E9FF /* TiaOutputWidget.hxx in Headers */, - 2D91745F09BA90380026E9FF /* TiaWidget.hxx in Headers */, - 2D91746009BA90380026E9FF /* ToggleBitWidget.hxx in Headers */, - 2D91746109BA90380026E9FF /* TogglePixelWidget.hxx in Headers */, - 2D91746209BA90380026E9FF /* ToggleWidget.hxx in Headers */, - 2D91746409BA90380026E9FF /* TiaZoomWidget.hxx in Headers */, - 2D91746509BA90380026E9FF /* TIASnd.hxx in Headers */, - 2D91746609BA90380026E9FF /* AudioWidget.hxx in Headers */, - 2D91746809BA90380026E9FF /* MediaFactory.hxx in Headers */, - 2D91746909BA90380026E9FF /* EventMappingWidget.hxx in Headers */, - 2D91746A09BA90380026E9FF /* InputDialog.hxx in Headers */, - DC47455609C34BFA00EDDA3A /* BankRomCheat.hxx in Headers */, - DC47455709C34BFA00EDDA3A /* Cheat.hxx in Headers */, - DC47455909C34BFA00EDDA3A /* CheatCodeDialog.hxx in Headers */, - DC47455B09C34BFA00EDDA3A /* CheatManager.hxx in Headers */, - DC47455D09C34BFA00EDDA3A /* CheetahCheat.hxx in Headers */, - DC47455F09C34BFA00EDDA3A /* RamCheat.hxx in Headers */, - 2D28DDE509DC2D9F00A17585 /* MenusEvents.h in Headers */, - DCD56D390B247D920092F9F8 /* Cart4A50.hxx in Headers */, - DCD56D3D0B247DB40092F9F8 /* RectList.hxx in Headers */, - DC8078DB0B4BD5F3005E9305 /* DebuggerExpressions.hxx in Headers */, - DC8078EB0B4BD697005E9305 /* UIDialog.hxx in Headers */, - DCEECE570B5E5E540021D754 /* Cart0840.hxx in Headers */, - DCE3BBFA0C95CEDC00A671DF /* RomInfoWidget.hxx in Headers */, - DC07A3C90CAD738A009B4BC9 /* StateManager.hxx in Headers */, - DC0984860D3985160073C852 /* CartSB.hxx in Headers */, - DCA23AEA0D75B22500F77B33 /* CartX07.hxx in Headers */, - DC4613680D92C03600D8DAB9 /* RomAuditDialog.hxx in Headers */, - DC487FB70DA5350900E12499 /* AtariVox.hxx in Headers */, - DC11F78E0DB36933003B505E /* MT24LC256.hxx in Headers */, - DC1FC18B0DB3B2C7009B3DF7 /* SerialPortMACOSX.hxx in Headers */, - DCA00FF80DBABCAD00C3823D /* RiotDebug.hxx in Headers */, - DC4AC6F00DC8DACB00CD3AD2 /* RiotWidget.hxx in Headers */, - DC4AC6F40DC8DAEF00CD3AD2 /* SaveKey.hxx in Headers */, - DCE6EB230DD9ADA00047AC28 /* TrackBall.hxx in Headers */, - DC173F770E2CAC1E00320F94 /* ContextMenu.hxx in Headers */, - DC0DF86A0F0DAAF500B0F1F3 /* GlobalPropsDialog.hxx in Headers */, - DC5D2C520F117CFD004D1660 /* Rect.hxx in Headers */, - DC5D2C530F117CFD004D1660 /* StellaFont.hxx in Headers */, - DC5D2C540F117CFD004D1660 /* StellaLargeFont.hxx in Headers */, - DC5D2C550F117CFD004D1660 /* StellaMediumFont.hxx in Headers */, - DC5D2C610F129B1E004D1660 /* LauncherFilterDialog.hxx in Headers */, - DC932D440F278A5200FEFEFC /* DefProps.hxx in Headers */, - DC932D450F278A5200FEFEFC /* Serializable.hxx in Headers */, - DC932D460F278A5200FEFEFC /* SerialPort.hxx in Headers */, - DC932D480F278A5200FEFEFC /* TIATables.hxx in Headers */, - DC9EA8880F729A36000452B5 /* KidVid.hxx in Headers */, - DCF467B50F93993B00B25D7A /* Array.hxx in Headers */, - DCF467B60F93993B00B25D7A /* SharedPtr.hxx in Headers */, - DCF467B80F93993B00B25D7A /* SoundNull.hxx in Headers */, - DCF467BD0F9399F500B25D7A /* Version.hxx in Headers */, - DCF467C30F939A1400B25D7A /* CartEF.hxx in Headers */, - DCF467C50F939A1400B25D7A /* CartEFSC.hxx in Headers */, - DC5D1AA7102C6FC900E59AC1 /* Stack.hxx in Headers */, - DCF7B0DE10A762FC007A2870 /* CartF0.hxx in Headers */, - DCF7B0E010A762FC007A2870 /* CartFA.hxx in Headers */, - DCECDAFB10B9DBDC00AF4E1B /* Device.hxx in Headers */, - DCECDAFD10B9DBDC00AF4E1B /* M6502.hxx in Headers */, - DCECDAFF10B9DBDC00AF4E1B /* NullDev.hxx in Headers */, - DCECDB0110B9DBDC00AF4E1B /* System.hxx in Headers */, - DCECDB0510B9DC0400AF4E1B /* bspf.hxx in Headers */, - DCE9CC2B1103812700C86671 /* CartDebug.hxx in Headers */, - DCE9CC2D1103812700C86671 /* DiStella.hxx in Headers */, - DC84E11D1135988E00CA7C9D /* Genesis.hxx in Headers */, - DC64EB211152F9C000DC9140 /* CartDPCPlus.hxx in Headers */, - DC3FE47D11C7D35600C91C72 /* png.h in Headers */, - DC3FE47E11C7D35600C91C72 /* pngconf.h in Headers */, - DC3FE48311C7D35600C91C72 /* pngpriv.h in Headers */, - DC3FE4A011C7D3FE00C91C72 /* PNGLibrary.hxx in Headers */, - DCB5CEE811F5B78C00C68D09 /* MessageBox.hxx in Headers */, - DCBD968A1210314C0087CEFD /* ComboDialog.hxx in Headers */, - DC4AF1F412E39F700090B82E /* Thumbulator.hxx in Headers */, - DC17E8091361FDB500397A9E /* pngdebug.h in Headers */, - DC17E80A1361FDB500397A9E /* pnginfo.h in Headers */, - DC17E80B1361FDB500397A9E /* pnglibconf.h in Headers */, - DC17E80C1361FDB500397A9E /* pngstruct.h in Headers */, - DC20D6F3138EB130002A7428 /* StringList.hxx in Headers */, - DC20D6F4138EB130002A7428 /* StringParser.hxx in Headers */, - DC7A769B13FEA40300ED8633 /* LoggerDialog.hxx in Headers */, - DC8AE5C41417804C00335D45 /* FBSurfaceGL.hxx in Headers */, - DC8AE5C61417804C00335D45 /* FBSurfaceTIA.hxx in Headers */, - DC3E4A6714B25EB30071D7BC /* CartCM.hxx in Headers */, - DC3E4A6914B25EB30071D7BC /* CompuMate.hxx in Headers */, - DC3E4A6B14B25EB30071D7BC /* MindLink.hxx in Headers */, - DC0BFFFA14BA2BEB00CF5E7E /* BoosterWidget.hxx in Headers */, - DC0BFFFB14BA2BEB00CF5E7E /* ControllerWidget.hxx in Headers */, - DC0BFFFD14BA2BEB00CF5E7E /* DrivingWidget.hxx in Headers */, - DC0BFFFF14BA2BEB00CF5E7E /* GenesisWidget.hxx in Headers */, - DC0B000114BA2BEB00CF5E7E /* JoystickWidget.hxx in Headers */, - DC0B000314BA2BEB00CF5E7E /* KeyboardWidget.hxx in Headers */, - DC0B000414BA2BEB00CF5E7E /* NullControlWidget.hxx in Headers */, - DC0B000614BA2BEB00CF5E7E /* PaddleWidget.hxx in Headers */, - DC5C76B014C2709E0031EBC7 /* StellaKeys.hxx in Headers */, - DC922D0714CAFB1E006EB471 /* CartFA2.hxx in Headers */, - DCAE2A9414CCCCBD004327BB /* MouseControl.hxx in Headers */, - DC49F90614F7D0DB000704B0 /* NTSCFilter.hxx in Headers */, - DC752D951513E9F7005B0D24 /* atari_ntsc_impl.h in Headers */, - DC752D971513E9F7005B0D24 /* atari_ntsc.h in Headers */, - DCDBD3191556F60C00308CC4 /* CartCTY.hxx in Headers */, - DCDBD31A1556F60C00308CC4 /* CartCTYTunes.hxx in Headers */, - DCA6276116CB0D1C004E9AF0 /* FSNodePOSIX.hxx in Headers */, - DCA6277416CB0D45004E9AF0 /* FSNodeFactory.hxx in Headers */, - DCA6277616CB0D45004E9AF0 /* FSNodeZIP.hxx in Headers */, - DCA6277816CB0D45004E9AF0 /* ZipHandler.hxx in Headers */, - DCF28EEA1729A5CD00DD0CA9 /* Cart2KWidget.hxx in Headers */, - DCF28EEC1729A5CD00DD0CA9 /* Cart3EWidget.hxx in Headers */, - DCF28EEE1729A5CD00DD0CA9 /* Cart3FWidget.hxx in Headers */, - DCF28EF01729A5CD00DD0CA9 /* Cart4A50Widget.hxx in Headers */, - DCF28EF21729A5CD00DD0CA9 /* Cart4KWidget.hxx in Headers */, - DCF28EF41729A5CD00DD0CA9 /* Cart0840Widget.hxx in Headers */, - DCF28EF61729A5CD00DD0CA9 /* CartARWidget.hxx in Headers */, - DCF28EF81729A5CD00DD0CA9 /* CartCMWidget.hxx in Headers */, - DCF28EFA1729A5CD00DD0CA9 /* CartCTYWidget.hxx in Headers */, - DCF28EFC1729A5CD00DD0CA9 /* CartCVWidget.hxx in Headers */, - DCF28EFD1729A5CD00DD0CA9 /* CartDebugWidget.hxx in Headers */, - DCF28EFF1729A5CD00DD0CA9 /* CartDPCPlusWidget.hxx in Headers */, - DCF28F011729A5CD00DD0CA9 /* CartDPCWidget.hxx in Headers */, - DCF28F031729A5CD00DD0CA9 /* CartE0Widget.hxx in Headers */, - DCF28F051729A5CD00DD0CA9 /* CartE7Widget.hxx in Headers */, - DCF28F071729A5CD00DD0CA9 /* CartEFSCWidget.hxx in Headers */, - DCF28F091729A5CD00DD0CA9 /* CartEFWidget.hxx in Headers */, - DCF28F0B1729A5CD00DD0CA9 /* CartF0Widget.hxx in Headers */, - DCF28F0D1729A5CD00DD0CA9 /* CartF4SCWidget.hxx in Headers */, - DCF28F0F1729A5CD00DD0CA9 /* CartF4Widget.hxx in Headers */, - DCF28F111729A5CD00DD0CA9 /* CartF6SCWidget.hxx in Headers */, - DCF28F131729A5CD00DD0CA9 /* CartF6Widget.hxx in Headers */, - DCF28F151729A5CD00DD0CA9 /* CartF8SCWidget.hxx in Headers */, - DCF28F171729A5CD00DD0CA9 /* CartF8Widget.hxx in Headers */, - DCF28F191729A5CD00DD0CA9 /* CartFA2Widget.hxx in Headers */, - DCF28F1B1729A5CD00DD0CA9 /* CartFAWidget.hxx in Headers */, - DCF28F1D1729A5CD00DD0CA9 /* CartFEWidget.hxx in Headers */, - DCF28F1F1729A5CD00DD0CA9 /* CartMCWidget.hxx in Headers */, - DCF28F211729A5CD00DD0CA9 /* CartSBWidget.hxx in Headers */, - DCF28F231729A5CD00DD0CA9 /* CartUAWidget.hxx in Headers */, - DCF28F251729A5CD00DD0CA9 /* CartX07Widget.hxx in Headers */, - DC3C3CDC173B1EB2009FFE61 /* Variant.hxx in Headers */, - DC3C3CE2173B1EC8009FFE61 /* FileListWidget.hxx in Headers */, - DC449CB0176FF512004FA2D4 /* RomListSettings.hxx in Headers */, - DC0D76A7177259C3005C7805 /* ConfigPathDialog.hxx in Headers */, - DC0D76A9177259C3005C7805 /* SnapshotDialog.hxx in Headers */, - DCECD7AA17A88E51000A9753 /* Base.hxx in Headers */, - 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; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 2D9173C809BA90380026E9FF /* Stella */ = { - isa = PBXNativeTarget; - buildConfigurationList = 2D91751609BA90380026E9FF /* Build configuration list for PBXNativeTarget "Stella" */; - buildPhases = ( - 2D9173C909BA90380026E9FF /* ShellScript */, - 2D9173CA09BA90380026E9FF /* Headers */, - 2D91746C09BA90380026E9FF /* Resources */, - 2D91747309BA90380026E9FF /* Sources */, - 2D91750E09BA90380026E9FF /* Frameworks */, - 2D91751309BA90380026E9FF /* CopyFiles */, - DCCC0C9609C354660088BFF1 /* CopyFiles */, - ); - buildRules = ( - 2D91751B09BA90380026E9FF /* PBXBuildRule */, - 2D91751C09BA90380026E9FF /* PBXBuildRule */, - 2D91751D09BA90390026E9FF /* PBXBuildRule */, - ); - dependencies = ( - ); - name = Stella; - productInstallPath = "$(HOME)/Applications"; - productName = "«PROJECTNAME»"; - productReference = 2D91751E09BA90390026E9FF /* Stella.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 29B97313FDCFA39411CA2CEA /* Project object */ = { - isa = PBXProject; - buildConfigurationList = 2D91752109BA903B0026E9FF /* Build configuration list for PBXProject "stella" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - ); - mainGroup = 29B97314FDCFA39411CA2CEA /* «PROJECTNAMEASXML» */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 2D9173C809BA90380026E9FF /* Stella */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 2D91746C09BA90380026E9FF /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2D91746D09BA90380026E9FF /* InfoPlist.strings in Resources */, - 2D91746E09BA90380026E9FF /* SDLMain.nib in Resources */, - 2D91746F09BA90380026E9FF /* Stella.icns in Resources */, - 2D91747009BA90380026E9FF /* Credits.html in Resources */, - 2D91747109BA90380026E9FF /* ../../docs in Resources */, - 2D91747209BA90380026E9FF /* AboutBox.nib in Resources */, - 2DEFB40C09C3386F00754289 /* Cart.icns in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 2D9173C909BA90380026E9FF /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "m4 ../emucore/M6502.m4 > M6502.ins\n"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 2D91747309BA90380026E9FF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2D91747409BA90380026E9FF /* SDLMain.m in Sources */, - 2D91747509BA90380026E9FF /* Booster.cxx in Sources */, - 2D91747609BA90380026E9FF /* Cart.cxx in Sources */, - 2D91747709BA90380026E9FF /* Cart2K.cxx in Sources */, - 2D91747809BA90380026E9FF /* Cart3F.cxx in Sources */, - 2D91747909BA90380026E9FF /* Cart4K.cxx in Sources */, - 2D91747A09BA90380026E9FF /* CartAR.cxx in Sources */, - 2D91747B09BA90380026E9FF /* CartCV.cxx in Sources */, - 2D91747C09BA90380026E9FF /* CartDPC.cxx in Sources */, - 2D91747D09BA90380026E9FF /* CartE0.cxx in Sources */, - 2D91747E09BA90380026E9FF /* CartE7.cxx in Sources */, - 2D91747F09BA90380026E9FF /* CartF4.cxx in Sources */, - 2D91748009BA90380026E9FF /* CartF4SC.cxx in Sources */, - 2D91748109BA90380026E9FF /* CartF6.cxx in Sources */, - 2D91748209BA90380026E9FF /* CartF6SC.cxx in Sources */, - 2D91748309BA90380026E9FF /* CartF8.cxx in Sources */, - 2D91748409BA90380026E9FF /* CartF8SC.cxx in Sources */, - 2D91748609BA90380026E9FF /* CartFE.cxx in Sources */, - 2D91748809BA90380026E9FF /* CartMC.cxx in Sources */, - 2D91748909BA90380026E9FF /* Console.cxx in Sources */, - 2D91748A09BA90380026E9FF /* Control.cxx in Sources */, - 2D91748C09BA90380026E9FF /* Driving.cxx in Sources */, - 2D91748E09BA90380026E9FF /* Joystick.cxx in Sources */, - 2D91748F09BA90380026E9FF /* Keyboard.cxx in Sources */, - 2D91749009BA90380026E9FF /* M6532.cxx in Sources */, - 2D91749109BA90380026E9FF /* MD5.cxx in Sources */, - 2D91749309BA90380026E9FF /* Paddles.cxx in Sources */, - 2D91749409BA90380026E9FF /* Props.cxx in Sources */, - 2D91749509BA90380026E9FF /* PropsSet.cxx in Sources */, - 2D91749609BA90380026E9FF /* Random.cxx in Sources */, - 2D91749709BA90380026E9FF /* Serializer.cxx in Sources */, - 2D91749809BA90380026E9FF /* Switches.cxx in Sources */, - 2D91749909BA90380026E9FF /* TIA.cxx in Sources */, - 2D91749F09BA90380026E9FF /* FrameBufferGL.cxx in Sources */, - 2D9174A009BA90380026E9FF /* FrameBufferSoft.cxx in Sources */, - 2D9174A109BA90380026E9FF /* EventHandler.cxx in Sources */, - 2D9174A209BA90380026E9FF /* FrameBuffer.cxx in Sources */, - 2D9174A309BA90380026E9FF /* Settings.cxx in Sources */, - 2D9174A409BA90380026E9FF /* SettingsMACOSX.cxx in Sources */, - 2D9174A509BA90380026E9FF /* SoundSDL.cxx in Sources */, - 2D9174A709BA90380026E9FF /* mainSDL.cxx in Sources */, - 2D9174A809BA90380026E9FF /* FSNodePOSIX.cxx in Sources */, - 2D9174A909BA90380026E9FF /* OSystemMACOSX.cxx in Sources */, - 2D9174AA09BA90380026E9FF /* AboutDialog.cxx in Sources */, - 2D9174AB09BA90380026E9FF /* AudioDialog.cxx in Sources */, - 2D9174AC09BA90380026E9FF /* BrowserDialog.cxx in Sources */, - 2D9174AD09BA90380026E9FF /* Dialog.cxx in Sources */, - 2D9174AE09BA90380026E9FF /* DialogContainer.cxx in Sources */, - 2D9174AF09BA90380026E9FF /* GameInfoDialog.cxx in Sources */, - 2D9174B009BA90380026E9FF /* GameList.cxx in Sources */, - 2D9174B109BA90380026E9FF /* HelpDialog.cxx in Sources */, - 2D9174B209BA90380026E9FF /* Launcher.cxx in Sources */, - 2D9174B309BA90380026E9FF /* LauncherDialog.cxx in Sources */, - 2D9174B509BA90380026E9FF /* ListWidget.cxx in Sources */, - 2D9174B609BA90380026E9FF /* Menu.cxx in Sources */, - 2D9174B709BA90380026E9FF /* OptionsDialog.cxx in Sources */, - 2D9174B809BA90380026E9FF /* PopUpWidget.cxx in Sources */, - 2D9174B909BA90380026E9FF /* ProgressDialog.cxx in Sources */, - 2D9174BA09BA90380026E9FF /* ScrollBarWidget.cxx in Sources */, - 2D9174BB09BA90380026E9FF /* TabWidget.cxx in Sources */, - 2D9174BC09BA90380026E9FF /* VideoDialog.cxx in Sources */, - 2D9174BD09BA90380026E9FF /* Widget.cxx in Sources */, - 2D9174BE09BA90380026E9FF /* CartUA.cxx in Sources */, - 2D9174BF09BA90380026E9FF /* FSNode.cxx in Sources */, - 2D9174C009BA90380026E9FF /* OSystem.cxx in Sources */, - 2D9174C209BA90380026E9FF /* Preferences.m in Sources */, - 2D9174C409BA90380026E9FF /* AboutBox.m in Sources */, - 2D9174C509BA90380026E9FF /* Font.cxx in Sources */, - 2D9174C609BA90380026E9FF /* Debugger.cxx in Sources */, - 2D9174C709BA90380026E9FF /* DebuggerParser.cxx in Sources */, - 2D9174C809BA90380026E9FF /* EditableWidget.cxx in Sources */, - 2D9174C909BA90380026E9FF /* EditTextWidget.cxx in Sources */, - 2D9174CB09BA90380026E9FF /* PackedBitArray.cxx in Sources */, - 2D9174CC09BA90380026E9FF /* TIADebug.cxx in Sources */, - 2D9174CD09BA90380026E9FF /* YaccParser.cxx in Sources */, - 2D9174CE09BA90380026E9FF /* Cart3E.cxx in Sources */, - 2D9174CF09BA90380026E9FF /* CpuDebug.cxx in Sources */, - 2D9174DC09BA90380026E9FF /* Expression.cxx in Sources */, - 2D9174F109BA90380026E9FF /* InputTextDialog.cxx in Sources */, - 2D9174F209BA90380026E9FF /* CheckListWidget.cxx in Sources */, - 2D9174F309BA90380026E9FF /* StringListWidget.cxx in Sources */, - 2D9174F409BA90380026E9FF /* CommandDialog.cxx in Sources */, - 2D9174F509BA90380026E9FF /* CommandMenu.cxx in Sources */, - 2D9174F609BA90380026E9FF /* ColorWidget.cxx in Sources */, - 2D9174F709BA90380026E9FF /* CpuWidget.cxx in Sources */, - 2D9174F809BA90380026E9FF /* DataGridOpsWidget.cxx in Sources */, - 2D9174F909BA90380026E9FF /* DataGridWidget.cxx in Sources */, - 2D9174FA09BA90380026E9FF /* DebuggerDialog.cxx in Sources */, - 2D9174FB09BA90380026E9FF /* PromptWidget.cxx in Sources */, - 2D9174FC09BA90380026E9FF /* RamWidget.cxx in Sources */, - 2D9174FD09BA90380026E9FF /* RomListWidget.cxx in Sources */, - 2D9174FE09BA90380026E9FF /* RomWidget.cxx in Sources */, - 2D9174FF09BA90380026E9FF /* TiaInfoWidget.cxx in Sources */, - 2D91750009BA90380026E9FF /* TiaOutputWidget.cxx in Sources */, - 2D91750109BA90380026E9FF /* TiaWidget.cxx in Sources */, - 2D91750209BA90380026E9FF /* ToggleBitWidget.cxx in Sources */, - 2D91750309BA90380026E9FF /* TogglePixelWidget.cxx in Sources */, - 2D91750409BA90380026E9FF /* ToggleWidget.cxx in Sources */, - 2D91750609BA90380026E9FF /* TiaZoomWidget.cxx in Sources */, - 2D91750709BA90380026E9FF /* TIASnd.cxx in Sources */, - 2D91750809BA90380026E9FF /* AudioWidget.cxx in Sources */, - 2D91750B09BA90380026E9FF /* EventMappingWidget.cxx in Sources */, - 2D91750C09BA90380026E9FF /* InputDialog.cxx in Sources */, - DC47455509C34BFA00EDDA3A /* BankRomCheat.cxx in Sources */, - DC47455809C34BFA00EDDA3A /* CheatCodeDialog.cxx in Sources */, - DC47455A09C34BFA00EDDA3A /* CheatManager.cxx in Sources */, - DC47455C09C34BFA00EDDA3A /* CheetahCheat.cxx in Sources */, - DC47455E09C34BFA00EDDA3A /* RamCheat.cxx in Sources */, - DCD56D380B247D920092F9F8 /* Cart4A50.cxx in Sources */, - DCD56D3C0B247DB40092F9F8 /* RectList.cxx in Sources */, - DC8078EA0B4BD697005E9305 /* UIDialog.cxx in Sources */, - DCEECE560B5E5E540021D754 /* Cart0840.cxx in Sources */, - DCE3BBF90C95CEDC00A671DF /* RomInfoWidget.cxx in Sources */, - DC07A3C80CAD738A009B4BC9 /* StateManager.cxx in Sources */, - DC0984850D3985160073C852 /* CartSB.cxx in Sources */, - DCA23AE90D75B22500F77B33 /* CartX07.cxx in Sources */, - DC4613670D92C03600D8DAB9 /* RomAuditDialog.cxx in Sources */, - DC487FB60DA5350900E12499 /* AtariVox.cxx in Sources */, - DC11F78D0DB36933003B505E /* MT24LC256.cxx in Sources */, - DC1FC18A0DB3B2C7009B3DF7 /* SerialPortMACOSX.cxx in Sources */, - DCA00FF70DBABCAD00C3823D /* RiotDebug.cxx in Sources */, - DC4AC6EF0DC8DACB00CD3AD2 /* RiotWidget.cxx in Sources */, - DC4AC6F30DC8DAEF00CD3AD2 /* SaveKey.cxx in Sources */, - DCE6EB220DD9ADA00047AC28 /* TrackBall.cxx in Sources */, - DC173F760E2CAC1E00320F94 /* ContextMenu.cxx in Sources */, - DC0DF8690F0DAAF500B0F1F3 /* GlobalPropsDialog.cxx in Sources */, - DC5D2C600F129B1E004D1660 /* LauncherFilterDialog.cxx in Sources */, - DC932D470F278A5200FEFEFC /* TIATables.cxx in Sources */, - DC9EA8870F729A36000452B5 /* KidVid.cxx in Sources */, - DCF467C20F939A1400B25D7A /* CartEF.cxx in Sources */, - DCF467C40F939A1400B25D7A /* CartEFSC.cxx in Sources */, - DCF7B0DD10A762FC007A2870 /* CartF0.cxx in Sources */, - DCF7B0DF10A762FC007A2870 /* CartFA.cxx in Sources */, - DCECDAFC10B9DBDC00AF4E1B /* M6502.cxx in Sources */, - DCECDAFE10B9DBDC00AF4E1B /* NullDev.cxx in Sources */, - DCECDB0010B9DBDC00AF4E1B /* System.cxx in Sources */, - DCE9CC2A1103812700C86671 /* CartDebug.cxx in Sources */, - DCE9CC2C1103812700C86671 /* DiStella.cxx in Sources */, - DC84E11C1135988E00CA7C9D /* Genesis.cxx in Sources */, - DC64EB201152F9C000DC9140 /* CartDPCPlus.cxx in Sources */, - DC3FE47C11C7D35600C91C72 /* png.c in Sources */, - DC3FE47F11C7D35600C91C72 /* pngerror.c in Sources */, - DC3FE48011C7D35600C91C72 /* pngget.c in Sources */, - DC3FE48111C7D35600C91C72 /* pngmem.c in Sources */, - DC3FE48211C7D35600C91C72 /* pngpread.c in Sources */, - DC3FE48411C7D35600C91C72 /* pngread.c in Sources */, - DC3FE48511C7D35600C91C72 /* pngrio.c in Sources */, - DC3FE48611C7D35600C91C72 /* pngrtran.c in Sources */, - DC3FE48711C7D35600C91C72 /* pngrutil.c in Sources */, - DC3FE48811C7D35600C91C72 /* pngset.c in Sources */, - DC3FE48911C7D35600C91C72 /* pngtrans.c in Sources */, - DC3FE48A11C7D35600C91C72 /* pngwio.c in Sources */, - DC3FE48B11C7D35600C91C72 /* pngwrite.c in Sources */, - DC3FE48C11C7D35600C91C72 /* pngwtran.c in Sources */, - DC3FE48D11C7D35600C91C72 /* pngwutil.c in Sources */, - DC3FE49F11C7D3FE00C91C72 /* PNGLibrary.cxx in Sources */, - DCB5CEE711F5B78C00C68D09 /* MessageBox.cxx in Sources */, - DCBD96891210314C0087CEFD /* ComboDialog.cxx in Sources */, - DC4AF1F312E39F700090B82E /* Thumbulator.cxx in Sources */, - DC7A769A13FEA40300ED8633 /* LoggerDialog.cxx in Sources */, - DC8AE5C31417804C00335D45 /* FBSurfaceGL.cxx in Sources */, - DC8AE5C51417804C00335D45 /* FBSurfaceTIA.cxx in Sources */, - DC3E4A6614B25EB30071D7BC /* CartCM.cxx in Sources */, - DC3E4A6814B25EB30071D7BC /* CompuMate.cxx in Sources */, - DC3E4A6A14B25EB30071D7BC /* MindLink.cxx in Sources */, - DC0BFFF914BA2BEB00CF5E7E /* BoosterWidget.cxx in Sources */, - DC0BFFFC14BA2BEB00CF5E7E /* DrivingWidget.cxx in Sources */, - DC0BFFFE14BA2BEB00CF5E7E /* GenesisWidget.cxx in Sources */, - DC0B000014BA2BEB00CF5E7E /* JoystickWidget.cxx in Sources */, - DC0B000214BA2BEB00CF5E7E /* KeyboardWidget.cxx in Sources */, - DC0B000514BA2BEB00CF5E7E /* PaddleWidget.cxx in Sources */, - DC922D0614CAFB1E006EB471 /* CartFA2.cxx in Sources */, - DCAE2A9314CCCCBD004327BB /* MouseControl.cxx in Sources */, - DC49F90514F7D0DB000704B0 /* NTSCFilter.cxx in Sources */, - DC752D961513E9F7005B0D24 /* atari_ntsc.c in Sources */, - DCDBD3181556F60C00308CC4 /* CartCTY.cxx in Sources */, - DCA6277516CB0D45004E9AF0 /* FSNodeZIP.cxx in Sources */, - DCA6277716CB0D45004E9AF0 /* ZipHandler.cxx in Sources */, - DCF28EE91729A5CD00DD0CA9 /* Cart2KWidget.cxx in Sources */, - DCF28EEB1729A5CD00DD0CA9 /* Cart3EWidget.cxx in Sources */, - DCF28EED1729A5CD00DD0CA9 /* Cart3FWidget.cxx in Sources */, - DCF28EEF1729A5CD00DD0CA9 /* Cart4A50Widget.cxx in Sources */, - DCF28EF11729A5CD00DD0CA9 /* Cart4KWidget.cxx in Sources */, - DCF28EF31729A5CD00DD0CA9 /* Cart0840Widget.cxx in Sources */, - DCF28EF51729A5CD00DD0CA9 /* CartARWidget.cxx in Sources */, - DCF28EF71729A5CD00DD0CA9 /* CartCMWidget.cxx in Sources */, - DCF28EF91729A5CD00DD0CA9 /* CartCTYWidget.cxx in Sources */, - DCF28EFB1729A5CD00DD0CA9 /* CartCVWidget.cxx in Sources */, - DCF28EFE1729A5CD00DD0CA9 /* CartDPCPlusWidget.cxx in Sources */, - DCF28F001729A5CD00DD0CA9 /* CartDPCWidget.cxx in Sources */, - DCF28F021729A5CD00DD0CA9 /* CartE0Widget.cxx in Sources */, - DCF28F041729A5CD00DD0CA9 /* CartE7Widget.cxx in Sources */, - DCF28F061729A5CD00DD0CA9 /* CartEFSCWidget.cxx in Sources */, - DCF28F081729A5CD00DD0CA9 /* CartEFWidget.cxx in Sources */, - DCF28F0A1729A5CD00DD0CA9 /* CartF0Widget.cxx in Sources */, - DCF28F0C1729A5CD00DD0CA9 /* CartF4SCWidget.cxx in Sources */, - DCF28F0E1729A5CD00DD0CA9 /* CartF4Widget.cxx in Sources */, - DCF28F101729A5CD00DD0CA9 /* CartF6SCWidget.cxx in Sources */, - DCF28F121729A5CD00DD0CA9 /* CartF6Widget.cxx in Sources */, - DCF28F141729A5CD00DD0CA9 /* CartF8SCWidget.cxx in Sources */, - DCF28F161729A5CD00DD0CA9 /* CartF8Widget.cxx in Sources */, - DCF28F181729A5CD00DD0CA9 /* CartFA2Widget.cxx in Sources */, - DCF28F1A1729A5CD00DD0CA9 /* CartFAWidget.cxx in Sources */, - DCF28F1C1729A5CD00DD0CA9 /* CartFEWidget.cxx in Sources */, - DCF28F1E1729A5CD00DD0CA9 /* CartMCWidget.cxx in Sources */, - DCF28F201729A5CD00DD0CA9 /* CartSBWidget.cxx in Sources */, - DCF28F221729A5CD00DD0CA9 /* CartUAWidget.cxx in Sources */, - DCF28F241729A5CD00DD0CA9 /* CartX07Widget.cxx in Sources */, - DC3C3CE1173B1EC8009FFE61 /* FileListWidget.cxx in Sources */, - DC449CAF176FF512004FA2D4 /* RomListSettings.cxx in Sources */, - 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; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - 089C165DFE840E0CC02AAC07 /* English */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 2D91751709BA90380026E9FF /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = ( - i386, - ppc, - ); - FRAMEWORK_SEARCH_PATHS = ( - ., - "$(HOME)/Library/Frameworks", - ); - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - HAVE_INTTYPES, - HAVE_GETTIMEOFDAY, - DISPLAY_OPENGL, - CHEATCODE_SUPPORT, - DEBUGGER_SUPPORT, - JOYSTICK_SUPPORT, - SOUND_SUPPORT, - THUMB_SUPPORT, - WINDOWED_SUPPORT, - BSPF_MAC_OSX, - MAC_OSX, - ); - GCC_VERSION = 4.0; - HEADER_SEARCH_PATHS = ( - ./SDL.framework/Headers, - ../cheat, - ../common, - ../common/tv_filters, - ../debugger, - ../debugger/gui, - ../emucore, - ../gui, - ../yacc, - ., - ); - INFOPLIST_FILE = "Info-Stella.plist"; - INSTALL_PATH = ""; - LD_RUNPATH_SEARCH_PATHS = ""; - LIBRARY_SEARCH_PATHS = "$(LIBRARY_SEARCH_PATHS)"; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ( - "-framework", - SDL, - "-lz", - ); - PRODUCT_NAME = Stella; - SECTORDER_FLAGS = ""; - VALID_ARCHS = "i386 ppc"; - WARNING_CFLAGS = ( - "-Wmost", - "-Wno-four-char-constants", - "-Wno-unknown-pragmas", - ); - WRAPPER_EXTENSION = app; - }; - name = Development; - }; - 2D91751809BA90380026E9FF /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = ( - i386, - ppc, - ); - FRAMEWORK_SEARCH_PATHS = ( - ., - "$(HOME)/Library/Frameworks", - ); - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PREPROCESSOR_DEFINITIONS = ( - HAVE_INTTYPES, - HAVE_GETTIMEOFDAY, - DISPLAY_OPENGL, - CHEATCODE_SUPPORT, - DEBUGGER_SUPPORT, - JOYSTICK_SUPPORT, - SOUND_SUPPORT, - THUMB_SUPPORT, - WINDOWED_SUPPORT, - BSPF_MAC_OSX, - MAC_OSX, - ); - GCC_VERSION = 4.0; - HEADER_SEARCH_PATHS = ( - ./SDL.framework/Headers, - ../cheat, - ../common, - ../common/tv_filters, - ../debugger, - ../debugger/gui, - ../emucore, - ../gui, - ../yacc, - ., - ); - INFOPLIST_FILE = "Info-Stella.plist"; - INSTALL_PATH = ""; - LD_RUNPATH_SEARCH_PATHS = ""; - LIBRARY_SEARCH_PATHS = "$(LIBRARY_SEARCH_PATHS)"; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ( - "-framework", - SDL, - "-lz", - ); - PRODUCT_NAME = Stella; - SECTORDER_FLAGS = ""; - VALID_ARCHS = "i386 ppc"; - WARNING_CFLAGS = ( - "-Wmost", - "-Wno-four-char-constants", - "-Wno-unknown-pragmas", - ); - WRAPPER_EXTENSION = app; - }; - name = Deployment; - }; - 2D91751909BA90380026E9FF /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = ( - i386, - ppc, - ); - FRAMEWORK_SEARCH_PATHS = ( - "$(HOME)/Library/Frameworks", - ., - ); - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PREPROCESSOR_DEFINITIONS = ( - HAVE_INTTYPES, - HAVE_GETTIMEOFDAY, - DISPLAY_OPENGL, - CHEATCODE_SUPPORT, - DEBUGGER_SUPPORT, - JOYSTICK_SUPPORT, - SOUND_SUPPORT, - THUMB_SUPPORT, - WINDOWED_SUPPORT, - BSPF_MAC_OSX, - MAC_OSX, - ); - GCC_VERSION = 4.0; - HEADER_SEARCH_PATHS = ( - ./SDL.framework/Headers, - ../cheat, - ../common, - ../common/tv_filters, - ../debugger, - ../debugger/gui, - ../emucore, - ../gui, - ../yacc, - ., - ); - INFOPLIST_FILE = "Info-Stella.plist"; - INSTALL_PATH = ""; - LD_RUNPATH_SEARCH_PATHS = ""; - LIBRARY_SEARCH_PATHS = .; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ( - "-framework", - SDL, - "-lz", - ); - PRODUCT_NAME = Stella; - SECTORDER_FLAGS = ""; - VALID_ARCHS = "i386 ppc"; - WARNING_CFLAGS = ( - "-Wmost", - "-Wno-four-char-constants", - "-Wno-unknown-pragmas", - ); - WRAPPER_EXTENSION = app; - }; - name = Default; - }; - 2D91752209BA903B0026E9FF /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = ( - i386, - ppc, - ); - DEBUG_INFORMATION_FORMAT = dwarf; - FRAMEWORK_SEARCH_PATHS = ( - ., - "$(HOME)/Library/Frameworks", - ); - GCC_OPTIMIZATION_LEVEL = 0; - GCC_VERSION = 4.0; - MACOSX_DEPLOYMENT_TARGET = 10.4; - SDKROOT = macosx10.4; - VALID_ARCHS = "i386 ppc"; - }; - name = Development; - }; - 2D91752309BA903B0026E9FF /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = ( - i386, - ppc, - ); - FRAMEWORK_SEARCH_PATHS = ( - ., - "$(HOME)/Library/Frameworks", - ); - GCC_ENABLE_CPP_RTTI = NO; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_VERSION = 4.0; - MACOSX_DEPLOYMENT_TARGET = 10.4; - SDKROOT = macosx10.4; - VALID_ARCHS = "i386 ppc"; - }; - name = Deployment; - }; - 2D91752409BA903B0026E9FF /* Default */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = ( - i386, - ppc, - ); - FRAMEWORK_SEARCH_PATHS = ( - ., - "$(HOME)/Library/Frameworks", - ); - GCC_OPTIMIZATION_LEVEL = 3; - GCC_VERSION = 4.0; - MACOSX_DEPLOYMENT_TARGET = 10.4; - SDKROOT = macosx10.4; - VALID_ARCHS = "i386 ppc"; - }; - name = Default; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 2D91751609BA90380026E9FF /* Build configuration list for PBXNativeTarget "Stella" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2D91751709BA90380026E9FF /* Development */, - 2D91751809BA90380026E9FF /* Deployment */, - 2D91751909BA90380026E9FF /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; - 2D91752109BA903B0026E9FF /* Build configuration list for PBXProject "stella" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2D91752209BA903B0026E9FF /* Development */, - 2D91752309BA903B0026E9FF /* Deployment */, - 2D91752409BA903B0026E9FF /* Default */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Default; - }; -/* End XCConfigurationList section */ - }; - rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; -} diff --git a/src/macosx/stella_intel.xcodeproj/project.pbxproj b/src/macosx/stella_intel.xcodeproj/project.pbxproj index b058adaf4..1d305c8d1 100644 --- a/src/macosx/stella_intel.xcodeproj/project.pbxproj +++ b/src/macosx/stella_intel.xcodeproj/project.pbxproj @@ -486,6 +486,8 @@ DCF7B0DE10A762FC007A2870 /* CartF0.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF7B0DA10A762FC007A2870 /* CartF0.hxx */; }; DCF7B0DF10A762FC007A2870 /* CartFA.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCF7B0DB10A762FC007A2870 /* CartFA.cxx */; }; DCF7B0E010A762FC007A2870 /* CartFA.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCF7B0DC10A762FC007A2870 /* CartFA.hxx */; }; + DCFF14CD18B0260300A20364 /* EventHandlerSDL2.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCFF14CB18B0260300A20364 /* EventHandlerSDL2.cxx */; }; + DCFF14CE18B0260300A20364 /* EventHandlerSDL2.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCFF14CC18B0260300A20364 /* EventHandlerSDL2.hxx */; }; DCFFE59D12100E1400DFA000 /* ComboDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCFFE59B12100E1400DFA000 /* ComboDialog.cxx */; }; DCFFE59E12100E1400DFA000 /* ComboDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCFFE59C12100E1400DFA000 /* ComboDialog.hxx */; }; /* End PBXBuildFile section */ @@ -1020,6 +1022,8 @@ DCF7B0DA10A762FC007A2870 /* CartF0.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartF0.hxx; path = ../emucore/CartF0.hxx; sourceTree = SOURCE_ROOT; }; DCF7B0DB10A762FC007A2870 /* CartFA.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartFA.cxx; path = ../emucore/CartFA.cxx; sourceTree = SOURCE_ROOT; }; DCF7B0DC10A762FC007A2870 /* CartFA.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartFA.hxx; path = ../emucore/CartFA.hxx; sourceTree = SOURCE_ROOT; }; + DCFF14CB18B0260300A20364 /* EventHandlerSDL2.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandlerSDL2.cxx; path = ../common/EventHandlerSDL2.cxx; sourceTree = SOURCE_ROOT; }; + DCFF14CC18B0260300A20364 /* EventHandlerSDL2.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = EventHandlerSDL2.hxx; path = ../common/EventHandlerSDL2.hxx; sourceTree = SOURCE_ROOT; }; DCFFE59B12100E1400DFA000 /* ComboDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ComboDialog.cxx; path = ../gui/ComboDialog.cxx; sourceTree = SOURCE_ROOT; }; DCFFE59C12100E1400DFA000 /* ComboDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ComboDialog.hxx; path = ../gui/ComboDialog.hxx; sourceTree = SOURCE_ROOT; }; F5A47A9D01A0482F01D3D55B /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; @@ -1268,6 +1272,8 @@ DC79F81017A88D9E00288B91 /* Base.cxx */, DC79F81117A88D9E00288B91 /* Base.hxx */, DCC527D810B9DA6A005E1287 /* bspf.hxx */, + DCFF14CB18B0260300A20364 /* EventHandlerSDL2.cxx */, + DCFF14CC18B0260300A20364 /* EventHandlerSDL2.hxx */, DC3EE2D81417801800F9DA4A /* FBSurfaceTIA.cxx */, DC3EE2D91417801800F9DA4A /* FBSurfaceTIA.hxx */, DC368F4E18A2FB710084199C /* FBSurfaceUI.cxx */, @@ -1932,6 +1938,7 @@ DC368F5518A2FB710084199C /* FBSurfaceUI.hxx in Headers */, DC368F5718A2FB710084199C /* FrameBufferSDL2.hxx in Headers */, DC368F5918A2FB710084199C /* SoundSDL2.hxx in Headers */, + DCFF14CE18B0260300A20364 /* EventHandlerSDL2.hxx in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2248,6 +2255,7 @@ DC368F5418A2FB710084199C /* FBSurfaceUI.cxx in Sources */, DC368F5618A2FB710084199C /* FrameBufferSDL2.cxx in Sources */, DC368F5818A2FB710084199C /* SoundSDL2.cxx in Sources */, + DCFF14CD18B0260300A20364 /* EventHandlerSDL2.cxx in Sources */, ); runOnlyForDeploymentPostprocessing = 0; };