(uxnasm) Catch missized #hex

This commit is contained in:
Devine Lu Linvega 2024-03-29 10:43:22 -07:00
parent 68d6a5f604
commit e47a14f673
1 changed files with 2 additions and 2 deletions

View File

@ -258,9 +258,9 @@ writehex(char *w, Context *ctx)
{ {
if(*w == '#') if(*w == '#')
writebyte(findopcode("LIT") | !!(++w)[2] << 5, ctx); writebyte(findopcode("LIT") | !!(++w)[2] << 5, ctx);
if(!w[2]) if(w[1] && !w[2])
return writebyte(shex(w), ctx); return writebyte(shex(w), ctx);
else if(!w[4]) else if(w[3] && !w[4])
return writeshort(shex(w)); return writeshort(shex(w));
else else
return 0; return 0;