From 271ac76d7386e3d4be5c89e7087c26abf7368c14 Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Mon, 25 Jan 2021 20:39:41 -0500 Subject: [PATCH] utils: shape-table: document the appleiibot option --- utils/hgr-utils/shape_table.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/utils/hgr-utils/shape_table.c b/utils/hgr-utils/shape_table.c index 17e28fb4..38ffe6b3 100644 --- a/utils/hgr-utils/shape_table.c +++ b/utils/hgr-utils/shape_table.c @@ -51,10 +51,11 @@ static void warn_if_zero(unsigned char byte, int line) { static void print_usage(char *exe) { - printf("Usage:\t%s [-h] [-a] [-b]\n\n",exe); + printf("Usage:\t%s [-h] [-a] [-b] [-x]\n\n",exe); printf("\t-h\tprint this help message\n"); printf("\t-a\toutput shape table in applesoft BASIC format\n"); - printf("\t-b\toutput shape table in binary format for BLOADing\n"); + printf("\t-b\toutput shape table in binary format for appleiibot\n"); + printf("\t-x\toutput shape table in hex format for assembly language\n"); printf("\n"); exit(1); }