From a929b6471d63c0fb3762792369376f465d670aa8 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Wed, 15 Jun 2022 12:06:41 -0700 Subject: [PATCH] Qbus & Unibus VAX: Clarified autoconfigure HELP language --- VAX/vax_cpu.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/VAX/vax_cpu.c b/VAX/vax_cpu.c index c0ef9ab2..c3ab7e7d 100644 --- a/VAX/vax_cpu.c +++ b/VAX/vax_cpu.c @@ -4049,14 +4049,16 @@ if (bus) { fprintf (st, "In addition to autoconfiguration, most devices support the SET \n"); fprintf (st, "ADDRESS command, which allows the I/O page address of the device to be\n"); fprintf (st, "changed, and the SET VECTOR command, which allows the vector of\n"); - fprintf (st, "the device to be changed. Explicitly setting the I/O address or vector of\n"); - fprintf (st, "any device DISABLES autoconfiguration for the entire system. As\n"); - fprintf (st, "a consequence, when autoconfiguration is disabled, the user may have to\n"); - fprintf (st, "manually configure all remaining devices in the system that are explicitly\n"); - fprintf (st, "enabled after autoconfiguration has been disabled. Autoconfiguration can\n"); - fprintf (st, "be restored for the entire system with the SET %s AUTOCONFIGURE command.\n\n", bus->name); + fprintf (st, "the device to be changed. Explicitly changing the I/O address or vector of\n"); + fprintf (st, "any device to a different value DISABLES autoconfiguration for the entire\n"); + fprintf (st, "system. As a consequence, when autoconfiguration is disabled, the user may\n"); + fprintf (st, "have to manually configure all remaining devices in the system that are\n"); + fprintf (st, "explicitly enabled after autoconfiguration has been disabled.\n"); + fprintf (st, "Autoconfiguration can be restored for the entire system with the\n"); + fprintf (st, "SET %s AUTOCONFIGURE command.\n\n", bus->name); fprintf (st, "The current I/O map can be displayed with the SHOW %s IOSPACE command.\n", bus->name); - fprintf (st, "Addresses that have set by autoconfiguration are marked with an asterisk (*).\n"); + fprintf (st, "Addresses that have set by autoconfiguration in floating address space are\n"); + fprintf (st, "marked with an asterisk (*).\n\n"); fprintf (st, "All devices support the SHOW ADDRESS and SHOW VECTOR\n"); fprintf (st, "commands, which display the device address and vector, respectively.\n\n"); }