mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-14 15:45:23 +00:00
Add comment on a format strictness. ...
Remove unneeded #define.
This commit is contained in:
parent
2620a1e98f
commit
433e8ecda6
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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user