changeset 886:6393d53ce3c7

Fixed help to be consistent with other utils, set DOHELP to 0
author boisy
date Fri, 17 Jan 2003 16:47:21 +0000
parents c12e382aa660
children 08f746b4fa7b
files level1/cmds/dump.asm
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/level1/cmds/dump.asm	Fri Jan 17 16:46:54 2003 +0000
+++ b/level1/cmds/dump.asm	Fri Jan 17 16:47:21 2003 +0000
@@ -26,7 +26,7 @@
 
 * Tweakable options
 DOSCSIZ  set   1	1 = include SS.ScSiz code, 0 = leave out
-DOHELP   set   1	1 = include help message, 0 = leave out
+DOHELP   set   0	1 = include help message, 0 = leave out
 
 Edition  set   6         
 Revs     set   1         
@@ -370,15 +370,15 @@
          puls  a,pc      
 
          IFNE  DOHELP
-HelpMsg  fcc   "Use: Dump [-opts] <file> [-opts]"
+HelpMsg  fcc   "Use: Dump [opts] [<path>] [opts]"
          fcb   C$CR,C$LF
-         fcc   "  -d  dump directory"
+         fcc   "  -d = dump directory"
          fcb   C$CR,C$LF
-         fcc   "  -h  no header"
+         fcc   "  -h = no header"
          fcb   C$CR,C$LF
-         fcc   "  -m  for module in memory"
+         fcc   "  -m = module in memory"
          fcb   C$CR,C$LF
-         fcc   "  -x  for file in execution directory"
+         fcc   "  -x = file in exec dir"
          fcb   C$CR,C$LF
 HelpLen  equ   *-HelpMsg
          ENDC