makefile update

This commit is contained in:
Adrien Bourmault 2019-03-09 22:29:30 +01:00
parent 3317fe0db5
commit f4e9072e6e
2 changed files with 5 additions and 3 deletions

View File

@ -91,13 +91,15 @@ make_disk:
@$(MBRDIR)/create_disk.sh $(BINDIR)/disk.img
@echo ${CL2}[make_disk]${CL} OK${CL3}
test: kernel loader
kaleid: kernel loader
test: kaleid
@qemu-system-x86_64 -hda build/bin/disk.img -d cpu_reset,guest_errors,pcall,int -enable-kvm 2> qemu.log &
@ndisasm $(BINDIR)/kaleid -o 0x00100000 -b 64 > loader_disasm64.asm
@ndisasm $(BINDIR)/kaleid -o 0x00100000 -b 32 > loader_disasm32.asm
test32: kernel loader
test32: kaleid
@qemu-system-i386 -hda build/bin/disk.img -d cpu_reset,guest_errors,pcall,int -enable-kvm 2> qemu.log &
@ndisasm $(BINDIR)/kaleid -o 0x00100000 -b 64 > loader_disasm64.asm
@ndisasm $(BINDIR)/kaleid -o 0x00100000 -b 32 > loader_disasm32.asm

View File

@ -152,7 +152,7 @@ _loader64:
call tritemporize ; Let time to see
extern StartKern
jmp StartKern
;jmp StartKern
;; We must never reach this point ------------------------------------------- ;;
jmp Die