commit 28b72a4
Devine Lu Linvega
·
2024-03-29 03:32:58 +0000 UTC
parent 3662a6e
(uxnasm) Larger dict buffer
1 files changed,
+1,
-1
+1,
-1
1@@ -23,7 +23,7 @@ typedef struct { int line; char *path; } Context;
2
3 static int ptr, length;
4 static char token[0x40], scope[0x40], lambda[0x05];
5-static char dict[0x4000], *dictnext = dict;
6+static char dict[0x8000], *dictnext = dict;
7 static Uint8 data[0x10000], lambda_stack[0x100], lambda_ptr, lambda_len;
8 static Uint16 labels_len, refs_len, macro_len;
9 static Item labels[0x400], refs[0x1000], macros[0x100];