Fixing bug in RSHIFT.
This commit is contained in:
@ -82,7 +82,7 @@ typedef struct {
|
||||
tos = (ucell_t) w / (ucell_t) tos) \
|
||||
X("*/MOD", SSMOD, SSMOD_FUNC) \
|
||||
Y(LSHIFT, tos = (*sp-- << tos)) \
|
||||
Y(RSHIFT, tos = (*sp-- >> tos)) \
|
||||
Y(RSHIFT, tos = (((ucell_t) *sp--) >> tos)) \
|
||||
Y(AND, tos &= *sp--) \
|
||||
Y(OR, tos |= *sp--) \
|
||||
Y(XOR, tos ^= *sp--) \
|
||||
|
||||
Reference in New Issue
Block a user