comparison m68k_core.c @ 697:7f96bd1cb1be

Sync fixes and logging to fix more sync issues
author Michael Pavone <pavone@retrodev.com>
date Mon, 11 May 2015 00:28:47 -0700
parents e11e68918691
children 200ee73c7210
comparison
equal deleted inserted replaced
696:0b2242bbc84a 697:7f96bd1cb1be
799 }; 799 };
800 800
801 void translate_m68k(m68k_options * opts, m68kinst * inst) 801 void translate_m68k(m68k_options * opts, m68kinst * inst)
802 { 802 {
803 check_cycles_int(&opts->gen, inst->address); 803 check_cycles_int(&opts->gen, inst->address);
804 log_address(&opts->gen, inst->address, "M68K: %X @ %d\n");
804 impl_info * info = m68k_impls + inst->op; 805 impl_info * info = m68k_impls + inst->op;
805 if (info->itype == RAW_FUNC) { 806 if (info->itype == RAW_FUNC) {
806 info->impl.raw(opts, inst); 807 info->impl.raw(opts, inst);
807 return; 808 return;
808 } 809 }