1
0
mirror of https://github.com/pfusik/xasm.git synced 2024-06-01 01:41:29 +00:00

added spaces possible before mnemonics in InOpcode section "{...}"

This commit is contained in:
Jakub Husak 2022-12-01 18:04:32 +01:00
parent 3b0ab7d67e
commit 221ff8ee34

View File

@ -593,6 +593,8 @@ void readValue() {
bool savedInstructionBegin = instructionBegin; bool savedInstructionBegin = instructionBegin;
valOpStack.length = 0; valOpStack.length = 0;
inOpcode = true; inOpcode = true;
if (line[column] == ' ' || line[column]=='\t' )
readSpaces();
assemblyInstruction(readInstruction()); assemblyInstruction(readInstruction());
if (line[column] == ' ' || line[column]=='\t' ) if (line[column] == ' ' || line[column]=='\t' )
readSpaces(); readSpaces();