From 23765aae8a815c2b1e20a62f90625662c702df5b Mon Sep 17 00:00:00 2001 From: Leon Krieg Date: Mon, 30 Sep 2024 22:35:37 +0200 Subject: [PATCH] Increase available memory to 4096 bytes --- src/common/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/memory.c b/src/common/memory.c index 8680081..eb5c82a 100644 --- a/src/common/memory.c +++ b/src/common/memory.c @@ -4,7 +4,7 @@ #include #include -#define MEM_SIZE 1024 +#define MEM_SIZE 4096 #define MEM_START 0x00 #define MEM_BLOCK_SIZE ((int) sizeof(mem_block_t)) #define MEM_MAX_BLOCKS (MEM_SIZE / MEM_BLOCK_SIZE)