comparison m68k_core.c @ 614:60a06c025103

Fix flag mask for m68k not
author Michael Pavone <pavone@retrodev.com>
date Mon, 29 Dec 2014 00:14:21 -0800
parents 963d5901f583
children a18e3923481e
comparison
equal deleted inserted replaced
613:09d5adf8d1ca 614:60a06c025103
647 OP_IMPL(M68K_MULS, translate_m68k_mul), 647 OP_IMPL(M68K_MULS, translate_m68k_mul),
648 OP_IMPL(M68K_MULU, translate_m68k_mul), 648 OP_IMPL(M68K_MULU, translate_m68k_mul),
649 RAW_IMPL(M68K_EXT, translate_m68k_ext), 649 RAW_IMPL(M68K_EXT, translate_m68k_ext),
650 UNARY_IMPL(M68K_NEG, X|N|Z|V|C), 650 UNARY_IMPL(M68K_NEG, X|N|Z|V|C),
651 OP_IMPL(M68K_NEGX, translate_m68k_negx), 651 OP_IMPL(M68K_NEGX, translate_m68k_negx),
652 UNARY_IMPL(M68K_NOT, X|N|Z|V|C), 652 UNARY_IMPL(M68K_NOT, N|Z|V|C),
653 UNARY_IMPL(M68K_TST, N|Z|V0|C0), 653 UNARY_IMPL(M68K_TST, N|Z|V0|C0),
654 654
655 //shift/rotate 655 //shift/rotate
656 OP_IMPL(M68K_ASL, translate_m68k_sl), 656 OP_IMPL(M68K_ASL, translate_m68k_sl),
657 OP_IMPL(M68K_LSL, translate_m68k_sl), 657 OP_IMPL(M68K_LSL, translate_m68k_sl),