diff options
Diffstat (limited to 'bootloader/bootloader.asm')
| -rw-r--r-- | bootloader/bootloader.asm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bootloader/bootloader.asm b/bootloader/bootloader.asm index 25b9a46..8baeca7 100644 --- a/bootloader/bootloader.asm +++ b/bootloader/bootloader.asm @@ -8,6 +8,10 @@ start: mov ax, 0x0C70 ;Put bootloader adress in ax register mov ds, ax ;Init data segment +;Pause here ! +infiniteLoop: + jmp infiniteLoop + ;Complete the MBR with nothing times 510 - ($ - start) db 0x0 |
