comparison m68k_core.c @ 584:b6713c1b6f55

Combine andi ccr/sr and ori ccr/sr.
author Michael Pavone <pavone@retrodev.com>
date Fri, 07 Mar 2014 19:35:13 -0800
parents c05fcbfe1b1a
children 55c5b0f913ce
comparison
equal deleted inserted replaced
583:819921b76b4b 584:b6713c1b6f55
549 RAW_IMPL(M68K_RTR, translate_m68k_rtr), 549 RAW_IMPL(M68K_RTR, translate_m68k_rtr),
550 RAW_IMPL(M68K_LINK, translate_m68k_link), 550 RAW_IMPL(M68K_LINK, translate_m68k_link),
551 RAW_IMPL(M68K_UNLK, translate_m68k_unlk), 551 RAW_IMPL(M68K_UNLK, translate_m68k_unlk),
552 552
553 //SR/CCR stuff 553 //SR/CCR stuff
554 RAW_IMPL(M68K_ANDI_CCR, translate_m68k_andi_ccr_sr), 554 RAW_IMPL(M68K_ANDI_CCR, translate_m68k_andi_ori_ccr_sr),
555 RAW_IMPL(M68K_ANDI_SR, translate_m68k_andi_ccr_sr), 555 RAW_IMPL(M68K_ANDI_SR, translate_m68k_andi_ori_ccr_sr),
556 RAW_IMPL(M68K_EORI_CCR, translate_m68k_eori_ccr_sr), 556 RAW_IMPL(M68K_EORI_CCR, translate_m68k_eori_ccr_sr),
557 RAW_IMPL(M68K_EORI_SR, translate_m68k_eori_ccr_sr), 557 RAW_IMPL(M68K_EORI_SR, translate_m68k_eori_ccr_sr),
558 RAW_IMPL(M68K_ORI_CCR, translate_m68k_ori_ccr_sr), 558 RAW_IMPL(M68K_ORI_CCR, translate_m68k_andi_ori_ccr_sr),
559 RAW_IMPL(M68K_ORI_SR, translate_m68k_ori_ccr_sr), 559 RAW_IMPL(M68K_ORI_SR, translate_m68k_andi_ori_ccr_sr),
560 OP_IMPL(M68K_MOVE_CCR, translate_m68k_move_ccr_sr), 560 OP_IMPL(M68K_MOVE_CCR, translate_m68k_move_ccr_sr),
561 OP_IMPL(M68K_MOVE_SR, translate_m68k_move_ccr_sr), 561 OP_IMPL(M68K_MOVE_SR, translate_m68k_move_ccr_sr),
562 OP_IMPL(M68K_MOVE_FROM_SR, translate_m68k_move_from_sr), 562 OP_IMPL(M68K_MOVE_FROM_SR, translate_m68k_move_from_sr),
563 RAW_IMPL(M68K_STOP, translate_m68k_stop), 563 RAW_IMPL(M68K_STOP, translate_m68k_stop),
564 564