You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In certain circumstances, a user may issue an instruction such as:
LBCC FUNCTION
This instructs the CPU to perform a long branch to where FUNCTION is located in memory. Long branches are useful since they can be used to branch to anywhere in the 64K memory space. However, if FUNCTION is within +129 bytes or -126 bytes of the current instruction, then we can transform the LBCC to a BCC instead, saving several op-cycles, as well as a byte in instruction op-codes.
The text was updated successfully, but these errors were encountered:
In certain circumstances, a user may issue an instruction such as:
This instructs the CPU to perform a long branch to where
FUNCTION
is located in memory. Long branches are useful since they can be used to branch to anywhere in the 64K memory space. However, ifFUNCTION
is within +129 bytes or -126 bytes of the current instruction, then we can transform theLBCC
to aBCC
instead, saving several op-cycles, as well as a byte in instruction op-codes.The text was updated successfully, but these errors were encountered: