mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +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()
|
||||
{
|
||||
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.WriteLine(input);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@ namespace Cosmos.VS.Windows {
|
|||
protected byte[] mData = new byte[0];
|
||||
|
||||
public void Update(string aTag, byte[] aData) {
|
||||
mData = aData;
|
||||
Dispatcher.Invoke(DispatcherPriority.Normal,
|
||||
(Action)delegate() {
|
||||
mData = aData;
|
||||
DoUpdate(aTag);
|
||||
}
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue