this is working pretty well right now

This commit is contained in:
2026-04-16 15:47:33 -04:00
parent a84774e635
commit 51c553524f
11 changed files with 247 additions and 0 deletions

1
command-to-compile.txt Normal file
View File

@@ -0,0 +1 @@
nasm -felf32 boot.s -o boot.o && gcc -m32 -c kernel.c -o kernel.o -std=gnu99 -ffreestanding -O2 -Wall -Wextra && gcc -m32 -T linker.ld -o bugs.bin -ffreestanding -O2 -nostdlib boot.o kernel.o -lgcc && cp bugs.bin isodir/boot/ && cp grub.cfg isodir/boot/grub/ && grub-mkrescue -o bugs.iso isodir && qemu-system-i386 -cdrom bugs.iso