X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=rmac.c;h=1111d6d64053ac5901cea5b35e0991db71372538;hp=7858040c9c7c8378d1fd366159f06f7a8a3b4a05;hb=c38505ee4b2a0de59926107e52fb8bb84041a0e4;hpb=7d364a21bf389d947bb61cc235d00b3892aca89a;ds=sidebyside diff --git a/rmac.c b/rmac.c index 7858040..1111d6d 100644 --- a/rmac.c +++ b/rmac.c @@ -1,7 +1,7 @@ // // RMAC - Reboot's Macro Assembler for all Atari computers // RMAC.C - Main Application Code -// Copyright (C) 199x Landon Dyer, 2011-2019 Reboot and Friends +// Copyright (C) 199x Landon Dyer, 2011-2020 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 // Source utilised with the kind permission of Landon Dyer // @@ -146,7 +146,7 @@ void DisplayHelp(void) " -dsymbol[=value] Define symbol (with optional value, default=0)\n" " -e[errorfile] Send error messages to file, not stdout\n" " -f[format] Output object file format\n" - " a: ALCYON (use this for ST)\n" + " a: ALCYON\n" " b: BSD (use this for Jaguar)\n" " e: ELF\n" " p: P56 (use this for DSP56001 only)\n" @@ -156,15 +156,7 @@ void DisplayHelp(void) " -l[filename] Create an output listing file\n" " -l*[filename] Create an output listing file without pagination\n" " -m[cpu] Select default CPU. Available options:\n" - " 68000\n" - " 68020\n" - " 68030\n" - " 68040\n" - " 68060\n" - " 6502\n" - " tom\n" - " jerry\n" - " 56001\n" + " 68000, 68020, 68030, 68040, 68060, 6502, tom, jerry, 56001\n" " -n Don't do things behind your back in RISC assembler\n" " -o file Output file name\n" " +o[value] Turn a specific optimisation on\n" @@ -213,7 +205,7 @@ void DisplayVersion(void) "| | | | | | | | (_| | (__ \n" "|_| |_| |_| |_|\\__,_|\\___|\n" "\nReboot's Macro Assembler\n" - "Copyright (C) 199x Landon Dyer, 2011-2019 Reboot\n" + "Copyright (C) 199x Landon Dyer, 2011-2020 Reboot\n" "V%01i.%01i.%01i %s (%s)\n\n", MAJOR, MINOR, PATCH, __DATE__, PLATFORM); }