Adding modules/functions to the debugger.

This commit is contained in:
Ben Vanik
2015-06-08 21:12:40 -07:00
parent 9d7d6df476
commit 573f190a43
47 changed files with 1427 additions and 128 deletions

View File

@@ -6,10 +6,14 @@ using System.Threading.Tasks;
using Xenia.Debug.Utilities;
namespace Xenia.Debug {
public class Breakpoint : Changeable {
public class Breakpoint : Changeable<Breakpoint> {
// type code/data/kernel
// address+[end address]
// conditions? script?
// action (suspend, trace, etc)
public Breakpoint() {
this.self = this;
}
}
}