From 2247ce6ceaca04bdd0367c546edd5d3efc9cbb4b Mon Sep 17 00:00:00 2001 From: geramy_cp <9e7fa7e69b77621edd7e7a6d0b0a26a273ab818fdM2WcnSD> Date: Sun, 3 Feb 2013 12:15:25 +0000 Subject: [PATCH] last commit for fixing the debugger now testing assembly debugger --- source/GeramysTest/Kernel.cs | 7 ++++++- source2/VSIP/Cosmos.VS.Windows/DebuggerUC.cs | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/source/GeramysTest/Kernel.cs b/source/GeramysTest/Kernel.cs index 038fa59dc..8197bbceb 100644 --- a/source/GeramysTest/Kernel.cs +++ b/source/GeramysTest/Kernel.cs @@ -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); } diff --git a/source2/VSIP/Cosmos.VS.Windows/DebuggerUC.cs b/source2/VSIP/Cosmos.VS.Windows/DebuggerUC.cs index 811fbc971..d4af3a860 100644 --- a/source2/VSIP/Cosmos.VS.Windows/DebuggerUC.cs +++ b/source2/VSIP/Cosmos.VS.Windows/DebuggerUC.cs @@ -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); } );