mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-15 12:25:58 +00:00
Add comment on a format strictness. ...
Remove unneeded #define.
This commit is contained in:
11
assemble.c
11
assemble.c
@@ -766,6 +766,17 @@ static int assemble(
|
||||
free_tree(value);
|
||||
} else if (strcmp(label, "B") == 0 ||
|
||||
strcmp(label, "NB") == 0) {
|
||||
/*
|
||||
* Page 6-46 footnote 1 says
|
||||
* "A macro argument (a form of symbolic argument)
|
||||
* is enclosed within angle brackets or delimited
|
||||
* by the circumflex construction, as described in
|
||||
* section 7.3. For example,
|
||||
* <A,B,C>
|
||||
* ^/124/"
|
||||
* but we don't enforce that here (yet) by using
|
||||
* simply getstring().
|
||||
*/
|
||||
cp = skipwhite(cp);
|
||||
if (EOL(*cp)) {
|
||||
ok = 1;
|
||||
|
||||
Reference in New Issue
Block a user