From 0736576545b4b5db4793404d6fcd0fe12e291392 Mon Sep 17 00:00:00 2001 From: 0xAX Date: Sun, 4 Jan 2015 23:05:22 +0600 Subject: [PATCH] Updated bootloader example --- linux-bootstrap-1.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/linux-bootstrap-1.md b/linux-bootstrap-1.md index f3fee03..f5a1f7b 100644 --- a/linux-bootstrap-1.md +++ b/linux-bootstrap-1.md @@ -106,17 +106,18 @@ Now BIOS started to work, after all initializations, hardware checking, it needs jmp boot boot: + mov al, '!' mov ah, 0x0e mov bh, 0x00 mov bl, 0x07 - mov al, '!' int 0x10 jmp $ times 510-($-$$) db 0 -db 0xaa + db 0x55 +db 0xaa ``` Build and run it with: