diff options
author | Ian C <ianc@noddybox.co.uk> | 2018-09-06 11:48:23 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2018-09-06 11:48:23 +0100 |
commit | e1dcecf9d221f030c041657c5f69f15236cd3c43 (patch) | |
tree | a4ef1b1ac4e37d521acfad39c5465f173e1d90ca /src/casm.c | |
parent | a637b47b962e37d46c4ac7c54dd8090679a679da (diff) |
Made '$' expansion account for bank in 24-bit address mode.V1.5
Diffstat (limited to 'src/casm.c')
-rw-r--r-- | src/casm.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -59,7 +59,7 @@ */ static const char *casm_usage = -"Version 1.5 development\n" +"Version 1.5\n" "\n" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" @@ -176,6 +176,7 @@ CommandStatus SetOption(int opt, int argc, char *argv[], { case OPT_ADDRESS24: options.address24 = ParseTrueFalse(argv[0], FALSE); + LabelSetAddress24(options.address24); break; default: break; |