Added libc functions

This commit is contained in:
Fabio Scotto di Santolo
2025-11-30 18:37:12 +01:00
parent 8f026965ca
commit 3a102f1e61
5 changed files with 168 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ CFLAGS = -nostdlib -O2 -g3 -Wall -Wextra -fno-stack-protector -ffreestanding
LD_SCRIPT = kernel.ld
LDFLAGS = -T$(LD_SCRIPT) -Wl,-Map=kernel.map
SRC = kernel.c
SRC = kernel.c common.c
OUT = kernel.elf
.PHONY: all clean run