From 45c659957798a6ae51105a1c4acd98d0198373a5 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 24 Nov 2022 07:59:35 -1000 Subject: [PATCH] SCP: Elaborate help for examine/deposit syntax being simulator specific General help alignment cleanup. --- scp.c | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/scp.c b/scp.c index 37de4158..28438b33 100644 --- a/scp.c +++ b/scp.c @@ -948,7 +948,12 @@ static const char simh_help1[] = "++$ the last value displayed by an EXAMINE\n" "++++++++ command interpreted as an address\n" "3Switches\n" - " Switches can be used to control the format of display information:\n\n" + " Switches can be used to control the format of display information.\n" + " The actual interpretation and format of examine and deposit data is\n" + " specific to each simulator, so HELP CPU or other documentation for\n" + " this simulator might provide more details about how these details\n" + " are interpreted in this simulator. The default switch interpretations\n" + " are:\n\n" /***************** 80 character line width template *************************/ "++-a display as ASCII\n" "++-c display as character string\n" @@ -957,8 +962,8 @@ static const char simh_help1[] = "++-d or -10 display as decimal\n" "++-h or -16 display as hexadecimal\n" "++-2 display as binary\n\n" - " The simulators typically accept symbolic input (see documentation with each\n" - " simulator).\n\n" + " The simulators typically accept symbolic input (see documentation with\n" + " each simulator).\n\n" "3Examples\n" " Examples:\n\n" "++ex 1000-1100 examine 1000 to 1100\n" @@ -977,9 +982,9 @@ static const char simh_help1[] = #define HLP_EVALUATE "*Commands Evaluating_Instructions" /***************** 80 character line width template *************************/ "2Evaluating Instructions\n" - " The EVAL command evaluates a symbolic instruction and returns the equivalent\n" - " numeric value. This is useful for obtaining numeric arguments for a search\n" - " command:\n\n" + " The EVAL command evaluates a symbolic instruction and returns the\n" + " equivalent numeric value. This is useful for obtaining numeric arguments\n" + " for a search command:\n\n" "++EVAL \n\n" " Examples:\n\n" "+On the VAX simulator:\n" @@ -1004,8 +1009,8 @@ static const char simh_help1[] = "3LOAD\n" " The LOAD command (abbreviation LO) loads a file in binary loader format:\n\n" "++LOAD {implementation options}\n\n" - " The types of formats supported are implementation specific. Options (such\n" - " as load within range) are also implementation specific.\n\n" + " The types of formats supported are implementation specific. Options\n" + " (such as load within range) are also implementation specific.\n\n" #define HLP_DUMP "*Commands Loading_and_Saving_Programs DUMP" "3DUMP\n" " The DUMP command (abbreviation DU) dumps memory in binary loader format:\n\n"