diff options
Diffstat (limited to 'target-m68k')
-rw-r--r-- | target-m68k/op.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-m68k/op.c b/target-m68k/op.c index b9412d8fcb..51d7bc34d1 100644 --- a/target-m68k/op.c +++ b/target-m68k/op.c @@ -504,7 +504,7 @@ OP(set_T0_nz32) OP(set_T0_s32) { int32_t arg = get_op(PARAM1); - T0 = (arg > 0); + T0 = (arg < 0); FORCE_RET(); } |