Fixed Makefile

This commit is contained in:
Xnoe 2021-08-28 07:20:41 +01:00
parent ad942b3d8b
commit ba2db3a84b
Signed by: xnoe
GPG Key ID: 45AC398F44F0DAFE
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
disk.img: boot kernel
disk.img: boot.bin kernel.bin
cat boot.bin kernel.bin > disk.img
boot.bin: boot.asm

View File

@ -14,6 +14,7 @@ sect2:
msg2 db "Hello, World!", 13, 10, 0
print:
pop si
mov ah, 0eh
mov cx, 1
mov bh, 0
@ -25,4 +26,3 @@ print_loop:
jmp print_loop
print_exit:
ret