Store section size after .EVEN and .ODD

just in case it's the last thing in the section.
This commit is contained in:
Olaf Seibert 2015-05-19 22:42:55 +02:00
parent b45cf742f7
commit dbc3a55666

View File

@ -900,6 +900,7 @@ static int assemble(
if (DOT & 1) {
list_word(stack->top, DOT, 0, 1, "");
DOT++;
change_dot(tr, 0);
}
return 1;
@ -907,6 +908,7 @@ static int assemble(
if (!(DOT & 1)) {
list_word(stack->top, DOT, 0, 1, "");
DOT++;
change_dot(tr, 0);
}
return 1;