diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-26 19:30:35 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-26 19:30:35 +0000 |
commit | ccccab03d8569dd7198637ae32deb0631345481e (patch) | |
tree | 3047af36cb2bdecd2c266124120480637b6dc221 /target-m68k | |
parent | bb7ec0437a647c6734f65719f861d68a5281351d (diff) |
m68k compare fix.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4107 c046a42c-6fe2-441c-8c8c-71466251a162
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(); } |