summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/CodeWindow.h
diff options
context:
space:
mode:
authorJohn Peterson <jpeterson57@gmail.com>2008-12-08 00:25:01 +0000
committerJohn Peterson <jpeterson57@gmail.com>2008-12-08 00:25:01 +0000
commit9e0439a1939ba5b0fec4fbac8eaa9ea27f458e76 (patch)
tree8e852df1636e11c36a6573de94026b8074090220 /Source/Core/DebuggerWX/Src/CodeWindow.h
parent7f00e271e5d82528dfe9e92461156f2667fa1476 (diff)
Elf loader etc: Added command line elf loader so I can build and run homebrew with F5, use it with -e file.elf. Made some comments towards finding why lwbt fails to complete the HCI negotiation. I found that it worked in revision 800 so I will try to figure out what broke it along the way. Made some other small changes.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1432 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/CodeWindow.h')
-rw-r--r--Source/Core/DebuggerWX/Src/CodeWindow.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/Core/DebuggerWX/Src/CodeWindow.h b/Source/Core/DebuggerWX/Src/CodeWindow.h
index 82259aa51d..6c7b631a1b 100644
--- a/Source/Core/DebuggerWX/Src/CodeWindow.h
+++ b/Source/Core/DebuggerWX/Src/CodeWindow.h
@@ -50,6 +50,7 @@ class CCodeWindow
~CCodeWindow();
+ void Load_(IniFile &file);
void Load(IniFile &file);
void Save(IniFile &file) const;
@@ -58,6 +59,7 @@ class CCodeWindow
bool UseInterpreter();
+ bool AutomaticStart();
bool UseDualCore();
void JumpToAddress(u32 _Address);
@@ -79,6 +81,7 @@ class CCodeWindow
IDM_CALLSLIST,
IDM_SYMBOLLIST,
IDM_INTERPRETER,
+ IDM_AUTOMATICSTART,
IDM_JITUNLIMITED, IDM_JITOFF, // jit
IDM_JITLSOFF, IDM_JITLSLXZOFF, IDM_JITLSLWZOFF, IDM_JITLSLBZXOFF,
@@ -123,6 +126,16 @@ class CCodeWindow
Bitmaps_max
};
+ // Settings
+ bool bLogWindow;
+ bool bRegisterWindow;
+ bool bBreakpointWindow;
+ bool bMemoryWindow;
+ bool bJitWindow;
+ bool bSoundWindow;
+ bool bVideoWindow;
+ bool bAutomaticStart;
+
// sub dialogs
CLogWindow* m_LogWindow;
CRegisterWindow* m_RegisterWindow;
@@ -176,6 +189,7 @@ class CCodeWindow
void OnProfilerMenu(wxCommandEvent& event);
void OnInterpreter(wxCommandEvent& event); // cpu mode menu
+ void OnAutomaticStart(wxCommandEvent& event);
void OnJITOff(wxCommandEvent& event);
void CreateMenu(const SCoreStartupParameter& _LocalCoreStartupParameter);