Now the bootloader should be responsible for all initial setup, loading the kernel, and then handing off to the kernel with proper data in place.
7 lines
99 B
Makefile
7 lines
99 B
Makefile
AS := nasm
|
|
ASFLAGS := -felf64
|
|
LDFLAGS := -m elf_x86_64
|
|
CFLAGS := -march=nocona -m64
|
|
|
|
# vim:ft=make
|