summaryrefslogtreecommitdiff
path: root/target-m68k/op.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-m68k/op.c')
-rw-r--r--target-m68k/op.c2
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();
}