diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-04-12 10:28:45 +1200 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-04-12 10:29:03 +1200 |
commit | ad07458a267ee23dd386b1809842f696356ff187 (patch) | |
tree | c00c41e3e9d64141d7da0778498330ed87644fc1 /src/bin/tq.rs | |
parent | 32b0861a8045a695aca155e946332ce8b958a6a7 (diff) | |
download | torque-asm-ad07458a267ee23dd386b1809842f696356ff187.zip |
Remove brackets from format names in program help text
These could be misleading, they could incorrectly indicate that the
brackets are part of the format name.
Diffstat (limited to 'src/bin/tq.rs')
-rw-r--r-- | src/bin/tq.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bin/tq.rs b/src/bin/tq.rs index 571a628..a41aba9 100644 --- a/src/bin/tq.rs +++ b/src/bin/tq.rs @@ -78,18 +78,18 @@ Environment variables: into the program. Output formats: - <cmd> + cmd CMD module load format used by the CP/M operating system. - <debug> + debug Print assembled words as human-readable binary literals. - <inhx> + inhx Original 8-bit Intel hex format. - <inhx32> + inhx32 Modified 16-bit Intel hex format used by Microchip. - <raw> + raw Assembled words are converted to big-endian bytestrings and concatenated. Each word is padded to the nearest byte. Words must all be the same width. - <source> + source Print the source file before assembly, with symbols resolved. Created by Ben Bridle. |