Raised label limit to compile noodle

This commit is contained in:
Andrew Alderwick 2021-04-23 15:42:07 +01:00
parent 3c758b734b
commit 75142397b8
1 changed files with 3 additions and 3 deletions

View File

@ -29,9 +29,9 @@ typedef struct {
} Label; } Label;
typedef struct { typedef struct {
Uint8 data[256 * 256], llen, mlen; Uint8 data[256 * 256], mlen;
Uint16 ptr, length; Uint16 ptr, length, llen;
Label labels[256]; Label labels[512];
Macro macros[256]; Macro macros[256];
} Program; } Program;