Commit ccccab03d8569dd7198637ae32deb0631345481e

Authored by pbrook
1 parent bb7ec043

m68k compare fix.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4107 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
target-m68k/op.c
... ... @@ -504,7 +504,7 @@ OP(set_T0_nz32)
504 504 OP(set_T0_s32)
505 505 {
506 506 int32_t arg = get_op(PARAM1);
507   - T0 = (arg > 0);
  507 + T0 = (arg < 0);
508 508 FORCE_RET();
509 509 }
510 510  
... ...