<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Source/Core/Common/DebugInterface.h, branch stable</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>Add missing license headers</title>
<updated>2015-05-25T11:11:47+00:00</updated>
<author>
<name>Tillmann Karras</name>
<email>tilkax@gmail.com</email>
</author>
<published>2015-05-24T04:32:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=268f52e05479dc8e0f2cbf550472ca8d4867cf22'/>
<id>268f52e05479dc8e0f2cbf550472ca8d4867cf22</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use a fake exception to exit early in case of memory breakpoints.</title>
<updated>2015-04-25T02:37:54+00:00</updated>
<author>
<name>comex</name>
<email>comexk@gmail.com</email>
</author>
<published>2015-04-23T05:22:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=2264e7b087ae796695979d2d5c75cd5eef1e03b7'/>
<id>2264e7b087ae796695979d2d5c75cd5eef1e03b7</id>
<content type='text'>
Change TMemCheck::Action to return whether to break rather than calling
PPCDebugInterface::BreakNow, as this simplified the implementation; then
remove said method, as that was its only caller.  One "interface" method
down, many to go...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change TMemCheck::Action to return whether to break rather than calling
PPCDebugInterface::BreakNow, as this simplified the implementation; then
remove said method, as that was its only caller.  One "interface" method
down, many to go...
</pre>
</div>
</content>
</entry>
<entry>
<title>Added a RAM Watch window to the debugger</title>
<updated>2014-10-26T03:56:02+00:00</updated>
<author>
<name>skidau</name>
<email>skidau@gmail.com</email>
</author>
<published>2014-10-19T10:45:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=613cae613a8c2ac34dd823f875ac4a6a0059db38'/>
<id>613cae613a8c2ac34dd823f875ac4a6a0059db38</id>
<content type='text'>
Conflicts:
	Source/Core/Core/HW/Memmap.cpp
	Source/Core/Core/HW/Memmap.h
	Source/Core/DolphinWX/Debugger/CodeWindow.h
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	Source/Core/Core/HW/Memmap.cpp
	Source/Core/Core/HW/Memmap.h
	Source/Core/DolphinWX/Debugger/CodeWindow.h
</pre>
</div>
</content>
</entry>
<entry>
<title>Core: Kill off Host_ShowJitResults</title>
<updated>2014-08-15T19:18:28+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2014-08-15T19:10:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=cf46ac7dc952abf1ee67c3f938a4bd6b6c5973d5'/>
<id>cf46ac7dc952abf1ee67c3f938a4bd6b6c5973d5</id>
<content type='text'>
Another host function that can be killed off by simple wx event handling
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Another host function that can be killed off by simple wx event handling
</pre>
</div>
</content>
</entry>
<entry>
<title>Common: Introduce the new Gekko disassembler to Common.</title>
<updated>2014-08-04T04:45:07+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2014-07-18T01:33:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=0718937237db22d26e1b764b4733645c2b9f1562'/>
<id>0718937237db22d26e1b764b4733645c2b9f1562</id>
<content type='text'>
This moves the Gekko disassembler to Common where it should be. Having it in the Bochs disassembly Externals is incorrect.

Unlike the PowerPC disassembler prior however, this one is updated to have an API that is more fitting for C++. e.g. Not needing to specify a string buffer and size. It does all of this under the hood.

This modifies all the DebuggingInterfaces as necessary to handle this.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This moves the Gekko disassembler to Common where it should be. Having it in the Bochs disassembly Externals is incorrect.

Unlike the PowerPC disassembler prior however, this one is updated to have an API that is more fitting for C++. e.g. Not needing to specify a string buffer and size. It does all of this under the hood.

This modifies all the DebuggingInterfaces as necessary to handle this.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add ClearAllMemChecks to DebugInterface</title>
<updated>2014-03-06T02:50:23+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2014-03-06T01:51:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=610a6f9b23e7cc2b9553781f24ede40633c0ab3e'/>
<id>610a6f9b23e7cc2b9553781f24ede40633c0ab3e</id>
<content type='text'>
Breakpoints have one, but memchecks don't, despite being cleared directly in the breakpoint window.

Now DolphinWX should call the interface functions and not the direct functions of the breakpoints or memchecks for clearing.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Breakpoints have one, but memchecks don't, despite being cleared directly in the breakpoint window.

Now DolphinWX should call the interface functions and not the direct functions of the breakpoints or memchecks for clearing.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change the DebugInterface, PPCDebugInterface, and DSPDebugInterface to use CamelCase names.</title>
<updated>2014-03-03T05:39:08+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2014-03-03T05:39:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=279a8c014804499b150ec9c41276a6b6c912a874'/>
<id>279a8c014804499b150ec9c41276a6b6c912a874</id>
<content type='text'>
This is the standard coding convention in the codebase, so our interfaces should use it too.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the standard coding convention in the codebase, so our interfaces should use it too.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make Common/ mostly IWYU clean (and fix errors in rest of the project detected by this change).</title>
<updated>2014-02-22T22:37:29+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2014-02-20T03:11:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=83b7bb64aa5e1ee6b18eaa5d08c17bb5b6c57048'/>
<id>83b7bb64aa5e1ee6b18eaa5d08c17bb5b6c57048</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace all include guard ifdefs with "#pragma once"</title>
<updated>2014-02-10T23:07:16+00:00</updated>
<author>
<name>lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2014-02-10T18:54:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=d2038049f51192fbb55fbde2fc08128bacfb7707'/>
<id>d2038049f51192fbb55fbde2fc08128bacfb7707</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unnecessary Src/ folders</title>
<updated>2013-12-31T19:03:19+00:00</updated>
<author>
<name>Jasper St. Pierre</name>
<email>jstpierre@mecheye.net</email>
</author>
<published>2013-12-07T20:14:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=34692ab826abc8f8faa61bdb2280b742424528f1'/>
<id>34692ab826abc8f8faa61bdb2280b742424528f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
