Browse code

Raised label limit to compile noodle

Andrew Alderwick authored on 23/04/2021 14:42:07
Showing 1 changed files
... ...
@@ -29,9 +29,9 @@ typedef struct {
29 29
 } Label;
30 30
 
31 31
 typedef struct {
32
-	Uint8 data[256 * 256], llen, mlen;
33
-	Uint16 ptr, length;
34
-	Label labels[256];
32
+	Uint8 data[256 * 256], mlen;
33
+	Uint16 ptr, length, llen;
34
+	Label labels[512];
35 35
 	Macro macros[256];
36 36
 } Program;
37 37