From a2501912d32d477a001041b2a1dd13b07fcb0123 Mon Sep 17 00:00:00 2001 From: nub31 Date: Mon, 3 Feb 2025 16:47:11 +0100 Subject: [PATCH] Update comment --- input/baseline/gc.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input/baseline/gc.asm b/input/baseline/gc.asm index 002d2e6..079c18c 100644 --- a/input/baseline/gc.asm +++ b/input/baseline/gc.asm @@ -1,8 +1,8 @@ global gc_init, gc_alloc section .bss - alloc_list: resq 1 - stack_start: resq 1 + alloc_list: resq 1 ; head of alloc list + stack_start: resq 1 ; start of stack section .data gc_threshold_b: dq 4096 ; default of 4096 bytes, this will scale when gc_collect is ran