(uxnasm) Fixed refs limit check

This commit is contained in:
Devine Lu Linvega 2023-03-01 11:46:44 -08:00
parent 96a19b4887
commit ea0d81a9b1
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ typedef struct {
Uint16 llen, mlen, rlen;
Label labels[0x400];
Macro macros[0x100];
Reference refs[0x400];
Reference refs[0x800];
char scope[0x40];
} Program;
@ -179,7 +179,7 @@ makereference(char *scope, char *label, char rune, Uint16 addr)
{
char subw[0x40], parent[0x40];
Reference *r;
if(p.rlen == 0x1000)
if(p.rlen >= 0x800)
return error("References limit exceeded", label);
r = &p.refs[p.rlen++];
if(label[0] == '&') {