Skip to content

Commit

Permalink
Update the help text for the --end option of sna2skool.py
Browse files Browse the repository at this point in the history
  • Loading branch information
skoolkid committed May 25, 2024
1 parent e561691 commit 8bf464e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion skoolkit/sna2skool.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def main(args):
group.add_argument('-d', '--defb', dest='defb', metavar='SIZE', type=int,
help='Disassemble as DEFB statements of this size.')
group.add_argument('-e', '--end', dest='end', metavar='ADDR', type=integer, default=65536,
help='Stop disassembling at this address (default=65536).')
help='Stop disassembling at this address (default: 65536).')
group.add_argument('-H', '--hex', dest='base', action='store_const', const=16, default=config['Base'],
help='Write hexadecimal addresses and operands in the disassembly.')
group.add_argument('-I', '--ini', dest='params', metavar='p=v', action='append', default=[],
Expand Down
2 changes: 1 addition & 1 deletion sphinx/source/commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ list::
standard input, or '0' to use no control file. This
option may be used multiple times.
-d SIZE, --defb SIZE Disassemble as DEFB statements of this size.
-e ADDR, --end ADDR Stop disassembling at this address (default=65536).
-e ADDR, --end ADDR Stop disassembling at this address (default: 65536).
-H, --hex Write hexadecimal addresses and operands in the
disassembly.
-I p=v, --ini p=v Set the value of the configuration parameter 'p' to
Expand Down

0 comments on commit 8bf464e

Please sign in to comment.