Minor comment tweak

This commit is contained in:
gil 2024-05-18 21:11:03 -05:00
parent 9e180a565a
commit e7060b38bd

View file

@ -1,4 +1,4 @@
# src/script.ld
/* src/script.lds */
OUTPUT_ARCH("riscv")
ENTRY(_enter)
@ -52,7 +52,6 @@ SECTIONS {
PROVIDE(_memory_end = ORIGIN(ram) + LENGTH(ram));
/* TODO Redefine heap sections */
PROVIDE(_heap_start = _stack_end); # allocate heap to remaining physical memory
PROVIDE(_heap_size = _memory_end - _heap_start); # capture size of heap
}