From 8ce31d6bac7ea9d1366a637a506efd9ef4734027 Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Sun, 8 Mar 2020 21:38:14 +0100 Subject: [PATCH] Add -rt11 and -rsx options to usage message. --- macro11.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/macro11.c b/macro11.c index 687177b..981d137 100644 --- a/macro11.c +++ b/macro11.c @@ -145,6 +145,8 @@ static void print_help( printf(" libraries (see -m) into individual .MAC files in the current\n"); printf(" directory. No assembly of input is done.\n"); printf(" This must be the last command line option!\n"); + printf("-rsx Generate RSX style object files (default).\n"); + printf("-rt11 Generate RT11 style object files.\n"); printf("-ysl Syntax extension: change length of symbols from \n"); printf(" default = %d to larger values, max %d.\n", SYMMAX_DEFAULT, SYMMAX_MAX); printf("-yus Syntax extension: allow underscore \"_\" in symbols.\n");