diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-05-11 20:34:33 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-05-11 20:34:33 -0700 |
commit | 9eadca47ed6f00e7a00ac25b6b85ba4426104950 (patch) | |
tree | d10d297e6e93ca06ec93db50eadf14209ef29a8b /m68k_core.c | |
parent | 92699df4cb844ec29bcb2c55e5d68d747aabb6a8 (diff) |
Remove/comment verbose logging added for tracking down sync bug
Diffstat (limited to 'm68k_core.c')
-rw-r--r-- | m68k_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m68k_core.c b/m68k_core.c index b56b58b..c58b906 100644 --- a/m68k_core.c +++ b/m68k_core.c @@ -801,7 +801,7 @@ impl_info m68k_impls[] = { void translate_m68k(m68k_options * opts, m68kinst * inst) { check_cycles_int(&opts->gen, inst->address); - log_address(&opts->gen, inst->address, "M68K: %X @ %d\n"); + //log_address(&opts->gen, inst->address, "M68K: %X @ %d\n"); impl_info * info = m68k_impls + inst->op; if (info->itype == RAW_FUNC) { info->impl.raw(opts, inst); |