last commit for fixing the debugger now testing assembly debugger

This commit is contained in:
geramy_cp 2013-02-03 12:15:25 +00:00
parent ff57733731
commit 2247ce6cea
2 changed files with 7 additions and 2 deletions

View file

@ -15,7 +15,12 @@ namespace GeramysTest
protected override void Run() protected override void Run()
{ {
Console.Write("Input: "); Console.Write("Input: ");
var input = Console.ReadLine(); string input = Console.ReadLine();
int i = 0;
i++;
i++;
string test = "something";
test += ", me.";
Console.Write("Text typed: "); Console.Write("Text typed: ");
Console.WriteLine(input); Console.WriteLine(input);
} }

View file

@ -10,9 +10,9 @@ namespace Cosmos.VS.Windows {
protected byte[] mData = new byte[0]; protected byte[] mData = new byte[0];
public void Update(string aTag, byte[] aData) { public void Update(string aTag, byte[] aData) {
mData = aData;
Dispatcher.Invoke(DispatcherPriority.Normal, Dispatcher.Invoke(DispatcherPriority.Normal,
(Action)delegate() { (Action)delegate() {
mData = aData;
DoUpdate(aTag); DoUpdate(aTag);
} }
); );