1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-28 10:55:43 +00:00

add jml($1234) for JML Absolute indirect long

This commit is contained in:
lintbe 2014-02-19 13:22:06 +01:00
parent e150c76cb7
commit 284436229e

View File

@ -150,7 +150,7 @@ void GetEA (EffAddr* A)
A->AddrModeSet = AM65_DIR_IND_Y;
} else {
/* (adr) */
A->AddrModeSet = AM65_ABS_IND | AM65_DIR_IND;
A->AddrModeSet = AM65_ABS_IND | AM65_ABS_IND_LONG | AM65_DIR_IND;
}
}