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
Currently, GBz80 to Items does not support the shortcut for add a, X, where X is a register or an address stored in register hl. This does not affect the case where X is a 8 bit integer constant. The mnemonic sub is not affected.
The following instructions
add a
add b
add c
add d
add h
add l
add [hl]
are equivalent to
add a, a
add a, b
add a, c
add a, d
add a, h
add a, l
add a, [hl]
The text was updated successfully, but these errors were encountered:
Currently, GBz80 to Items does not support the shortcut for
add a, X
, whereX
is a register or an address stored in registerhl
. This does not affect the case whereX
is a 8 bit integer constant. The mnemonicsub
is not affected.The following instructions
are equivalent to
The text was updated successfully, but these errors were encountered: