1
0
mirror of https://github.com/ksherlock/x65.git synced 2025-03-22 19:30:17 +00:00

Error Fix IV

- Extraneous conditional expression borked late evaluation of branch
address
This commit is contained in:
Carl-Henrik Skårstedt 2015-10-12 20:51:12 -07:00
parent d17fbfb710
commit 3534ee4faa

View File

@ -1775,7 +1775,6 @@ StatusCode Asm::CheckLateEval(strref added_label, int scope_end)
value -= i->address+1;
if (value<-128 || value>127)
return ERROR_BRANCH_OUT_OF_RANGE;
if (ret==STATUS_RELATIVE_SECTION)
allSections[sec].SetByte(trg, value);
break;
case LateEval::LET_BYTE: