Commit 8d7fe05385e2e0ac1243ac437d3f400b2c5cb919

Authored by pbrook
1 parent 3a5b360d

M68k addx/subx fix.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2842 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 2 deletions
target-m68k/op.c
@@ -170,7 +170,7 @@ OP(btest) @@ -170,7 +170,7 @@ OP(btest)
170 FORCE_RET(); 170 FORCE_RET();
171 } 171 }
172 172
173 -OP(addx_cc) 173 +OP(subx_cc)
174 { 174 {
175 uint32_t op1 = get_op(PARAM1); 175 uint32_t op1 = get_op(PARAM1);
176 uint32_t op2 = get_op(PARAM2); 176 uint32_t op2 = get_op(PARAM2);
@@ -188,7 +188,7 @@ OP(addx_cc) @@ -188,7 +188,7 @@ OP(addx_cc)
188 FORCE_RET(); 188 FORCE_RET();
189 } 189 }
190 190
191 -OP(subx_cc) 191 +OP(addx_cc)
192 { 192 {
193 uint32_t op1 = get_op(PARAM1); 193 uint32_t op1 = get_op(PARAM1);
194 uint32_t op2 = get_op(PARAM2); 194 uint32_t op2 = get_op(PARAM2);