Debug interrupts, allow to show bmp images

This commit is contained in:
Loic Guegan 2021-04-30 09:31:30 +02:00
parent 717556178c
commit 66f2ca6246
12 changed files with 209 additions and 12 deletions

View file

@ -25,6 +25,9 @@ $(EXEC): boot/boot.o $(BOOT_OBJ) $(DRIVERS_OBJ) $(LIBS_OBJ) $(CORE_OBJ) $(RES_OB
%.o: %.psf
objcopy -I binary -O elf64-x86-64 --prefix-symbol res $^ $@
%.o: %.bmp
objcopy -I binary -O elf64-x86-64 --prefix-symbol res $^ $@
clean:
rm -f $(EXEC)
find ./ -name "*.o" -delete