diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-07-27 11:01:44 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-07-27 11:01:44 -0700 |
commit | 53e6c50aeb9341945245e245582d4fb9f78708a6 (patch) | |
tree | 0ff51363f1c827603744e4a1a4f132d7658ea31b | |
parent | 6b64f8009b9f98e9008be847ce7d475dc321e7de (diff) | |
download | mu-53e6c50aeb9341945245e245582d4fb9f78708a6.tar.gz |
4438
-rw-r--r-- | subx/026labels.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/026labels.cc b/subx/026labels.cc index ece513aa..33ab8a2d 100644 --- a/subx/026labels.cc +++ b/subx/026labels.cc @@ -49,7 +49,7 @@ void compute_addresses_for_labels(const segment& code, map<string, uint32_t> add } else { if (contains_any_operand_metadata(curr)) - raise << "'" << to_string(inst) << "': mixing label definition with ':' in operand\n" << end(); + raise << "'" << to_string(inst) << "': label definition (':') not allowed in operand\n" << end(); if (j == 0) { string label = curr.data.substr(0, SIZE(curr.data)-1); put(address, label, current_byte); |