X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=rmac.c;h=9259d4196aef9b14edf026614d26d38ee0bfeaec;hb=2e6a046d5d7e2c1863179c4dce8ef7505ff6dd6c;hp=0ae0f6201b9b33c8f3d4f02a4cfd6918da1c9abc;hpb=7b931ff047bf0f55fbd5ac835987958e22af8d48;p=rmac diff --git a/rmac.c b/rmac.c index 0ae0f62..9259d41 100644 --- a/rmac.c +++ b/rmac.c @@ -1,7 +1,7 @@ // // RMAC - Renamed Macro Assembler for all Atari computers // RMAC.C - Main Application Code -// Copyright (C) 199x Landon Dyer, 2011-2021 Reboot and Friends +// Copyright (C) 199x Landon Dyer, 2011-2022 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 // Source utilised with the kind permission of Landon Dyer // @@ -30,7 +30,7 @@ int list_pag = 1; // Enable listing pagination by default int verb_flag; // Be verbose about what's going on int m6502; // 1, assembling 6502 code int glob_flag; // Assume undefined symbols are global -int lsym_flag; // Include local symbols in object file +int lsym_flag; // Include local symbols in object file (ALWAYS true) int optim_warn_flag; // Warn about possible short branches int prg_flag; // !=0, produce .PRG executable (2=symbols) int prg_extend; // !=0, output extended .PRG symbols @@ -221,7 +221,7 @@ void DisplayVersion(void) "| | | | | | | | (_| | (__ \n" "|_| |_| |_| |_|\\__,_|\\___|\n" "\nRenamed Macro Assembler\n" - "Copyright (C) 199x Landon Dyer, 2011-2021 Reboot and Friends\n" + "Copyright (C) 199x Landon Dyer, 2011-2022 Reboot and Friends\n" "V%01i.%01i.%01i %s (%s)\n\n", MAJOR, MINOR, PATCH, __DATE__, PLATFORM); }