1
0
mirror of https://github.com/simh/simh.git synced 2026-02-13 19:35:20 +00:00

Added help context to pdp11_dz and pdp11_vh

This commit is contained in:
Mark Pizzolato
2013-01-10 13:37:31 -08:00
parent b37b866fd6
commit 7f57ce2c88
3 changed files with 9 additions and 2 deletions

View File

@@ -290,7 +290,9 @@ DEVICE dz_dev = {
&tmxr_ex, &tmxr_dep, &dz_reset,
NULL, &dz_attach, &dz_detach,
&dz_dib, DEV_DISABLE | DEV_UBUS | DEV_QBUS | DEV_DEBUG | DEV_MUX,
0, dz_debug
0, dz_debug, NULL, NULL,
NULL, NULL, /* help and attach_help routines */
(void *)&dz_desc/* help context variable */
};
/* Register names for Debug tracing */

View File

@@ -427,7 +427,11 @@ DEVICE vh_dev = {
&vh_detach, /* detach routine */
(void *)&vh_dib,/* context */
DEV_DISABLE | DEV_DIS | DEV_QBUS | DEV_UBUS | DEV_DEBUG | DEV_MUX, /* flags */
0, vh_debug
0, vh_debug, /* debug control and debug flags */
NULL, /* memory size routine */
NULL, /* logical name */
NULL, NULL, /* help and attach_help routines */
(void *)&vh_desc/* help context variable */
};
/* Register names for Debug tracing */