makefile update
This commit is contained in:
parent
3317fe0db5
commit
f4e9072e6e
6
Makefile
6
Makefile
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue