Allow whitespace before comma in two-general-operand instructions.

(it was allowed already in other cases such as SOB, JSR, ASH, ...).
This commit is contained in:
Olaf Seibert 2015-05-08 10:03:04 +02:00
parent 422285bb60
commit f01ee85a8f

View File

@ -1201,6 +1201,7 @@ static int assemble(
return 0;
}
cp = skipwhite(cp);
if (*cp++ != ',') {
report(stack->top, "Illegal syntax\n");
free_addr_mode(&left);