Files
Xenia-Canary/src/Xenia.Debug/Breakpoint.cs
2015-06-08 23:22:25 -07:00

20 lines
410 B
C#

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