summaryrefslogtreecommitdiff
path: root/debug.c
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2016-02-13 22:20:37 -0800
committerMichael Pavone <pavone@retrodev.com>2016-02-13 22:20:37 -0800
commitbad18594ed92f321cbc418be8937297be0340b97 (patch)
tree4f25499b04d84557dc0936cc517044db4d2b17b5 /debug.c
parenta2eef830e8de968d206f9b54202c15e36088b5ca (diff)
Add yt debug command for printing YM-2612 timer info. Fix AMS shift values.
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/debug.c b/debug.c
index 46aa4a8..2273517 100644
--- a/debug.c
+++ b/debug.c
@@ -775,6 +775,10 @@ int run_debugger_command(m68k_context *context, char *input_buf, m68kinst inst,
ym_print_channel_info(gen->ym, i);
}
}
+ break;
+ case 't':
+ ym_print_timer_info(gen->ym);
+ break;
}
break;
}