1
0
mirror of https://github.com/simh/simh.git synced 2026-01-18 00:53:22 +00:00

SCP: Elaborate help for examine/deposit syntax being simulator specific

General help alignment cleanup.
This commit is contained in:
Mark Pizzolato 2022-11-24 07:59:35 -10:00
parent dc020b325c
commit 45c6599577

21
scp.c
View File

@ -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 <expression>\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 <filename> {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"