wip: enable vbe

This commit is contained in:
2024-12-03 10:41:39 +01:00
parent 4bd4198293
commit fb1a1bc213
4 changed files with 19 additions and 96 deletions

View File

@ -31,7 +31,7 @@ $(NAME): $(OBJ)
$(LD) $(LDFLAGS) -o build/$(NAME).bin $(OBJ) $(LIBS)
run: $(NAME)
qemu-system-i386 -kernel build/$(NAME).bin
qemu-system-i386 -kernel build/$(NAME).bin -vga std
iso: $(NAME)
mkdir -p isodir/boot/grub
@ -41,10 +41,10 @@ iso: $(NAME)
rm -rf isodir
run-iso: iso
qemu-system-i386 -cdrom build/$(NAME).iso
qemu-system-i386 -cdrom build/$(NAME).iso -vga std
debug: iso
qemu-system-i386 -s -S build/$(NAME).iso
qemu-system-i386 -s -S build/$(NAME).iso -vga std
clean:
make -C libbozo clean