mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-01-03 05:00:31 -07:00
m68k compare fix.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4107 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
bb7ec0437a
commit
ccccab03d8
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue