From 4cb0a717680b412d66f61d3bd041c64f2a858804 Mon Sep 17 00:00:00 2001 From: "Terminal.cs" Date: Tue, 25 Apr 2023 17:14:48 -0700 Subject: [PATCH] Refactoring --- source/XSharp/XSharp/Assembler/Gen1/Assembler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/XSharp/XSharp/Assembler/Gen1/Assembler.cs b/source/XSharp/XSharp/Assembler/Gen1/Assembler.cs index 2e86027..b539155 100644 --- a/source/XSharp/XSharp/Assembler/Gen1/Assembler.cs +++ b/source/XSharp/XSharp/Assembler/Gen1/Assembler.cs @@ -36,8 +36,8 @@ public Assembler(bool aFormat = false) : this() public bool EmitAsmLabels { get; set; } - protected UInt16 mGdCode; - protected UInt16 mGdData; + protected ushort mGdCode; + protected ushort mGdData; // Contains info on the current stack structure. What type are on the stack, etc //public readonly StackContents Stack = new StackContents();