From: HimbeerserverDE Date: Sun, 11 Sep 2022 09:24:26 +0000 (+0200) Subject: Document print_al X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=50d3bff047ec2008e21ef529f36d8396dd0dcbb5;p=loadnothing.git Document print_al --- diff --git a/boot.asm b/boot.asm index 3b23d58..6c7d3bf 100644 --- a/boot.asm +++ b/boot.asm @@ -5,9 +5,9 @@ call boot ; Print AL register print_al: - mov ah, 0x0e - mov bh, 0x00 - mov bl, 0x07 + mov ah, 0x0e ; TTY output + mov bh, 0x00 ; Page 0 + mov bl, 0x07 ; Color: Light grey on black background int 0x10 ret