From f01ee85a8ff0eb6ff48225302a454255a8907308 Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Fri, 8 May 2015 10:03:04 +0200 Subject: [PATCH] Allow whitespace before comma in two-general-operand instructions. (it was allowed already in other cases such as SOB, JSR, ASH, ...). --- assemble.c | 1 + 1 file changed, 1 insertion(+) diff --git a/assemble.c b/assemble.c index 92209d2..fd2ccdf 100644 --- a/assemble.c +++ b/assemble.c @@ -1201,6 +1201,7 @@ static int assemble( return 0; } + cp = skipwhite(cp); if (*cp++ != ',') { report(stack->top, "Illegal syntax\n"); free_addr_mode(&left);