From 221ff8ee34b4e3089634ccee0ae9873572f957dd Mon Sep 17 00:00:00 2001 From: Jakub Husak Date: Thu, 1 Dec 2022 18:04:32 +0100 Subject: [PATCH] added spaces possible before mnemonics in InOpcode section "{...}" --- source/app.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/app.d b/source/app.d index c320729..f3b7462 100644 --- a/source/app.d +++ b/source/app.d @@ -593,6 +593,8 @@ void readValue() { bool savedInstructionBegin = instructionBegin; valOpStack.length = 0; inOpcode = true; + if (line[column] == ' ' || line[column]=='\t' ) + readSpaces(); assemblyInstruction(readInstruction()); if (line[column] == ' ' || line[column]=='\t' ) readSpaces();