From 3033c455a34854fd6afd717d0c84fb20b600ae28 Mon Sep 17 00:00:00 2001 From: AK6DN Date: Fri, 22 Mar 2024 20:26:43 -0700 Subject: [PATCH] Updated documentation comments for --raw option --- README.md | 4 ++-- obj2bin.pl | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 182dea4..6672c77 100644 --- a/README.md +++ b/README.md @@ -3,15 +3,15 @@ If run with no options, it prints a usage screen: ``` -obj2bin.pl v2.1 by Don North (perl 5.03) +obj2bin.pl v2.3 by Don North (perl 5.036) Usage: ./obj2bin.pl [options...] arguments --help output manpage and exit --debug enable debug mode --verbose verbose status reporting --boot M9312 boot prom .hex --console M9312 console/diagnostic prom .hex - --raw raw binary data output --binary binary program load image .bin [default] + --raw raw binary data output --ascii ascii m9312 program load image .txt --rt11 read .obj files in RT11 format --rsx11 read .obj files in RSX11 format [default] diff --git a/obj2bin.pl b/obj2bin.pl index bdc5f6b..7bab4bb 100644 --- a/obj2bin.pl +++ b/obj2bin.pl @@ -45,8 +45,8 @@ =head1 SYNOPSIS S<[--verbose]> S<[--boot]> S<[--console]> -S<[--raw]> S<[--binary]> +S<[--raw]> S<[--ascii]> S<[--rt11]> S<[--rsx11]> @@ -102,10 +102,6 @@ =head1 OPTIONS a program via a terminal emulator thru the M9312 user command interface. Suitable only for really small test programs. -=item B<--raw> - -Generate raw format file. - =item B<--binary> Generate binary format load records of the program image (paper @@ -116,6 +112,10 @@ =head1 OPTIONS Binary format is the default if no other option is specified. If more than one option is specified the last one takes effect. +=item B<--raw> + +Generate raw data format file. + =item B<--rt11> Read input object files in RT-11 format. @@ -294,6 +294,7 @@ =head1 HISTORY --boot M9312 boot prom .hex --console M9312 console/diagnostic prom .hex --binary binary program load image .bin [default] + --raw raw binary data output --ascii ascii m9312 program load image .txt --rt11 read .obj files in RT11 format --rsx11 read .obj files in RSX11 format [default]