mirror of
https://github.com/plctlab/riscv-operating-system-mooc.git
synced 2025-12-27 01:28:55 +00:00
Align heap start and caculate number of reserved pages according to the length of ram available. See https://gitee.com/unicornx/riscv-operating-system-mooc/issues/I9LNCF. Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
11 lines
107 B
Makefile
11 lines
107 B
Makefile
USE_LINKER_SCRIPT = false
|
|
|
|
SRCS_ASM = \
|
|
start.S \
|
|
|
|
SRCS_C = \
|
|
kernel.c \
|
|
uart.c \
|
|
|
|
include ../common.mk
|