Add infinite loop to bootloader

This commit is contained in:
manzerbredes 2015-07-18 08:56:35 +04:00
parent 927e25caab
commit 707d7e38b6
2 changed files with 5 additions and 0 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
*.bin *.bin
PiegOS

View file

@ -8,6 +8,10 @@ start:
mov ax, 0x0C70 ;Put bootloader adress in ax register mov ax, 0x0C70 ;Put bootloader adress in ax register
mov ds, ax ;Init data segment mov ds, ax ;Init data segment
;Pause here !
infiniteLoop:
jmp infiniteLoop
;Complete the MBR with nothing ;Complete the MBR with nothing
times 510 - ($ - start) db 0x0 times 510 - ($ - start) db 0x0