diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-03-07 19:35:13 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-03-07 19:35:13 -0800 |
commit | 617f6c62ea109d2209e2b6fbdc150d279a1885cf (patch) | |
tree | b364d9fb9771ec2d70c86bc0dde655a9793f92f8 /m68k_core.c | |
parent | 28bc72c0e478ec24bc9d10e822ef8818448ce491 (diff) |
Combine andi ccr/sr and ori ccr/sr.
Diffstat (limited to 'm68k_core.c')
-rw-r--r-- | m68k_core.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/m68k_core.c b/m68k_core.c index 4a44ebc..af6d544 100644 --- a/m68k_core.c +++ b/m68k_core.c @@ -551,12 +551,12 @@ impl_info m68k_impls[] = { RAW_IMPL(M68K_UNLK, translate_m68k_unlk), //SR/CCR stuff - RAW_IMPL(M68K_ANDI_CCR, translate_m68k_andi_ccr_sr), - RAW_IMPL(M68K_ANDI_SR, translate_m68k_andi_ccr_sr), + RAW_IMPL(M68K_ANDI_CCR, translate_m68k_andi_ori_ccr_sr), + RAW_IMPL(M68K_ANDI_SR, translate_m68k_andi_ori_ccr_sr), RAW_IMPL(M68K_EORI_CCR, translate_m68k_eori_ccr_sr), RAW_IMPL(M68K_EORI_SR, translate_m68k_eori_ccr_sr), - RAW_IMPL(M68K_ORI_CCR, translate_m68k_ori_ccr_sr), - RAW_IMPL(M68K_ORI_SR, translate_m68k_ori_ccr_sr), + RAW_IMPL(M68K_ORI_CCR, translate_m68k_andi_ori_ccr_sr), + RAW_IMPL(M68K_ORI_SR, translate_m68k_andi_ori_ccr_sr), OP_IMPL(M68K_MOVE_CCR, translate_m68k_move_ccr_sr), OP_IMPL(M68K_MOVE_SR, translate_m68k_move_ccr_sr), OP_IMPL(M68K_MOVE_FROM_SR, translate_m68k_move_from_sr), |