From a305fce466a568023afd5dace163a78090445016 Mon Sep 17 00:00:00 2001 From: Toby Jaffey Date: Sun, 7 Dec 2025 21:12:48 +0000 Subject: [PATCH] zigtris is > 16KB, so use 32KB for default host. --- host/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/Makefile b/host/Makefile index d31fa90..4e137e3 100644 --- a/host/Makefile +++ b/host/Makefile @@ -1,5 +1,5 @@ all: - gcc -Wall -Werror -pedantic -std=c99 -O2 -DUVM32_MEMORY_SIZE=65535 -I../uvm32 -o host ../uvm32/uvm32.c host.c + gcc -Wall -Werror -pedantic -std=c99 -O2 -DUVM32_MEMORY_SIZE=32768 -I../uvm32 -o host ../uvm32/uvm32.c host.c clean: rm -f host