From 2e00f427cd54d6ca0d9d8a69ee7499fdd3d520ed Mon Sep 17 00:00:00 2001 From: kudzu_cp <6d05c8c8ef5431987001abfdb2eadc9593ac9498> Date: Thu, 12 Aug 2010 03:34:54 +0000 Subject: [PATCH] --- source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs b/source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs index 5d8954472..58da9cb22 100644 --- a/source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs +++ b/source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs @@ -8,11 +8,10 @@ namespace Cosmos.Compiler.DebugStub { public class DebugStub : CodeGroup { public class WriteALToComPort : CodeBlock { - // Input AL + // Input: AL // Output: None // Modifies: EAX, EDX, ESI public override void Assemble() { - //TODO: Make a data point to put this in instead of using stack EAX.Push(); ESI = ESP; Call("WriteByteToComPort"); @@ -27,7 +26,7 @@ namespace Cosmos.Compiler.DebugStub { ESI = xBase; // TODO: X# upgrade this Label = "DebugStub_Cls_More"; - //TODO: Fix to direct memory write after + //TODO: Fix to direct memory write after we fix the X# bug with Memory[ESI, 8] = 0x0A; AL = 0x0A; Memory[ESI, 8] = AL; // Colour ESI++;