From d52282ec3292a1e366d3837e56ef1fb5f07ce178 Mon Sep 17 00:00:00 2001 From: Aiden Gall Date: Sun, 9 Feb 2025 18:02:15 +0000 Subject: initial commit --- config.inc | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 config.inc (limited to 'config.inc') diff --git a/config.inc b/config.inc new file mode 100644 index 0000000..ae7ee48 --- /dev/null +++ b/config.inc @@ -0,0 +1,9 @@ +; stack size in bytes. bottom of stack must be 16 byte aligned, therefore +; STACK_CAPACITY must be a multiple of 16 +STACK_CAPACITY = 64*4096 + +; heap allocation implementation. supported options are: +; - posix_memalign (POSIX.1-2001) +; - aligned_alloc (C11) +; - mmap (linux) +MALLOC equ aligned_alloc -- cgit v1.2.3