uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit 5d6d9ef4b1058c8d9a28395e30abfc747f0941bb
parent e0c907f0886c0c9daed4034cf05c4dcaf236e107
Author: Devine Lu Linvega <aliceffekt@gmail.com>
Date:   Tue, 26 Mar 2024 11:38:32 -0700

(uxnasm) Program length should be int

Diffstat:
Msrc/uxnasm.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/uxnasm.c b/src/uxnasm.c @@ -34,10 +34,10 @@ typedef struct { } Reference; typedef struct { - int ptr; + int ptr, length; Uint8 data[LENGTH]; Uint8 lambda_stack[0x100], lambda_ptr, lambda_len; - Uint16 line, length, label_len, macro_len, refs_len; + Uint16 line, label_len, macro_len, refs_len; Label labels[0x400]; Macro macros[0x100]; Reference refs[0x1000];