1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00
This commit is contained in:
laubzega 2018-10-14 01:21:34 -07:00 committed by Oliver Schmidt
parent cf7f3abadd
commit 7d9485f6bc

View File

@ -685,7 +685,7 @@ static unsigned OptGotoSPAdj (CodeSeg* S)
CS_DelEntry (S, I + 6);
}
else if (adjustment > 8) {
/* For range (8, 255] we have ldy #0, jsr addysp */
/* For range (8, 255] we have ldy #, jsr addysp */
Arg = MakeHexArg (adjustment & 0xff);
X = NewCodeEntry (OP65_LDY, AM65_IMM, Arg, 0, L[1]->LI);
CS_InsertEntry (S, X, I + 9);