commit | 8d7fe05385e2e0ac1243ac437d3f400b2c5cb919 | [log] [tgz] |
---|---|---|
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | Sun May 20 22:20:28 2007 +0000 |
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | Sun May 20 22:20:28 2007 +0000 |
tree | 6e48ca61a90aac54d933a2dc354822bf547b484d | |
parent | 3a5b360dac4ce1900e1cb19b7ad870086936869c [diff] |
M68k addx/subx fix. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2842 c046a42c-6fe2-441c-8c8c-71466251a162
diff --git a/target-m68k/op.c b/target-m68k/op.c index 8ea7589..34878c0 100644 --- a/target-m68k/op.c +++ b/target-m68k/op.c
@@ -170,7 +170,7 @@ FORCE_RET(); } -OP(addx_cc) +OP(subx_cc) { uint32_t op1 = get_op(PARAM1); uint32_t op2 = get_op(PARAM2); @@ -188,7 +188,7 @@ FORCE_RET(); } -OP(subx_cc) +OP(addx_cc) { uint32_t op1 = get_op(PARAM1); uint32_t op2 = get_op(PARAM2);