From 586e2cc1496ec2f9edad40a411786b8a132f4683 Mon Sep 17 00:00:00 2001 From: Richard Cornwell Date: Thu, 30 Sep 2021 19:26:53 -0400 Subject: [PATCH] IBM360: Added in empty detach for Console. --- IBM360/ibm360_con.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/IBM360/ibm360_con.c b/IBM360/ibm360_con.c index 852c9c2..8c1f1b0 100644 --- a/IBM360/ibm360_con.c +++ b/IBM360/ibm360_con.c @@ -102,12 +102,11 @@ struct dib con_dib = { 0xFF, 1, NULL, con_startcmd, con_haltio, con_unit, con_in DEVICE con_dev = { "INQ", con_unit, NULL, con_mod, NUM_DEVS_CON, 8, 15, 1, 8, 8, - NULL, NULL, NULL, NULL, NULL, NULL, + NULL, NULL, NULL, NULL, NULL, con_detach, &con_dib, DEV_UADDR | DEV_DISABLE | DEV_DEBUG, 0, dev_debug, NULL, NULL, &con_help, NULL, NULL, &con_description }; - /* @@ -389,6 +388,12 @@ con_srv(UNIT *uptr) { return SCPE_OK; } +t_stat +con_detach(UNIT *uptr) +{ + return SCPE_OK; +} + t_stat con_help(FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, const char *cptr) {