mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-24 14:55:11 +00:00
Fixed issue with raw bytes in macros
This commit is contained in:
parent
e70041017d
commit
037ab10b6a
1 changed files with 5 additions and 6 deletions
11
src/uxnasm.c
11
src/uxnasm.c
|
@ -235,6 +235,10 @@ walktoken(char *w)
|
|||
res += walktoken(m->items[i]);
|
||||
return res;
|
||||
}
|
||||
if(sihx(w) && slen(w) == 2)
|
||||
return 1;
|
||||
else if(sihx(w) && slen(w) == 4)
|
||||
return 1;
|
||||
return error("Invalid token", w);
|
||||
}
|
||||
|
||||
|
@ -392,12 +396,7 @@ cleanup(char *filename)
|
|||
continue; /* Ignore capitalized labels(devices) */
|
||||
else if(!p.labels[i].refs)
|
||||
fprintf(stderr, "--- Unused label: %s\n", p.labels[i].name);
|
||||
fprintf(stderr, "Assembled %s in %.2fkb(%.2f%% used), %d labels, %d macros.\n",
|
||||
filename,
|
||||
(p.length - TRIM) / 1024.0,
|
||||
p.length / 652.80,
|
||||
p.llen,
|
||||
p.mlen);
|
||||
fprintf(stderr, "Assembled %s in %.2fkb(%.2f%% used), %d labels, %d macros.\n", filename, (p.length - TRIM) / 1024.0, p.length / 652.80, p.llen, p.mlen);
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in a new issue