mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-24 12:35:31 +00:00
last commit for fixing the debugger now testing assembly debugger
This commit is contained in:
parent
ff57733731
commit
2247ce6cea
2 changed files with 7 additions and 2 deletions
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue