(uxnasm) Fixed issue with labels

This commit is contained in:
neauoire 2021-11-27 14:58:37 -08:00
parent b4e50165b6
commit 6c0e39ad6f
1 changed files with 2 additions and 0 deletions

View File

@ -264,10 +264,12 @@ tokenize(char *w, FILE *f)
if(!makelabel(w + 1))
return error("Invalid label", w);
scpy(w + 1, p.scope, 64);
litlast = 0;
break;
case '&': /* sublabel */
if(!makelabel(sublabel(subw, p.scope, w + 1)))
return error("Invalid sublabel", w);
litlast = 0;
break;
case '#': /* literals hex */
if(!sihx(w + 1) || (slen(w) != 3 && slen(w) != 5))