7 lines
204 B
Makefile
7 lines
204 B
Makefile
all:
|
|
as -o boot.o boot.s
|
|
gcc -nostdinc -nostdlib -ffreestanding -c main.c -o theObjectCode.o
|
|
ld -o boot.bin -Ttext 0x0 --oformat binary -e init boot.o theObjectCode.o
|
|
|
|
run:
|
|
qemu-system-x86_64 boot.bin
|