From c097ae5e572fc9d2a4895546e60f761dab6e1230 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Wed, 15 May 2013 05:43:14 -0700 Subject: [PATCH] Added help info to asynchronous timer device --- sim_timer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim_timer.c b/sim_timer.c index 87d9799d..02bf2ea5 100644 --- a/sim_timer.c +++ b/sim_timer.c @@ -795,8 +795,8 @@ return SCPE_OK; MTAB sim_timer_mod[] = { #if defined (SIM_ASYNCH_IO) && defined (SIM_ASYNCH_CLOCKS) - { MTAB_XTD|MTAB_VDV, 0, "ASYNC", "ASYNC", &sim_timer_set_async, &sim_timer_show_async }, - { MTAB_XTD|MTAB_VDV, 0, NULL, "NOASYNC", &sim_timer_clr_async, NULL }, + { MTAB_VDV, MTAB_VDV, "ASYNC", "ASYNC", &sim_timer_set_async, &sim_timer_show_async, NULL, "Enables/Displays Asynchronous Timer operation mode" }, + { MTAB_VDV, 0, NULL, "NOASYNC", &sim_timer_clr_async, NULL, NULL, "Disables Asynchronous Timer operation" }, #endif { 0 }, };