Fixed issue with strings in uxnasm
This commit is contained in:
parent
a6b99078de
commit
25858c3948
|
@ -359,7 +359,7 @@ pass2(FILE *f)
|
||||||
return 0;
|
return 0;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if(w[1] == '&')
|
if(w[1] == '&' && (w[0] == '.' || w[0] == ',' || w[0] == ';' || w[0] == ':'))
|
||||||
scpy(sublabel(subw, scope, w + 2), w + 1, 64);
|
scpy(sublabel(subw, scope, w + 2), w + 1, 64);
|
||||||
if(!parsetoken(w))
|
if(!parsetoken(w))
|
||||||
return error("Pass 2 - Unknown label", w);
|
return error("Pass 2 - Unknown label", w);
|
||||||
|
|
Loading…
Reference in New Issue