basic types and memory operations

This commit is contained in:
2025-05-29 22:20:47 +03:00
parent a05038d700
commit 9d161d1cb5
5 changed files with 129 additions and 14 deletions

2
run.sh
View File

@@ -10,7 +10,7 @@ CFLAGS="-std=c11 -O2 -g3 -Wall -Wextra --target=riscv32-unknown-elf -fno-stack-p
# Build the kernel
$CC $CFLAGS -Wl,-Tkernel.ld -Wl,-Map=kernel.map -o kernel.elf \
kernel.c
kernel.c common.c
# Start QEMU
$QEMU -machine virt -bios default -nographic -serial mon:stdio --no-reboot \