We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 538f218 commit 3209306Copy full SHA for 3209306
source/fdisk/bootnorm.asm
@@ -150,7 +150,7 @@ print:
150
lodsb
151
test al, al
152
jz .r
153
- xor bx, bx ; video page 0
+ mov bx, 0x7 ; video page 0, default color
154
mov ah, 0x0E ; print it via TTY mode
155
int 0x10
156
jmp print
@@ -159,7 +159,7 @@ print:
159
read_error_msg: db 'Read error', 0
160
no_active_msg: db 'No active partition', 0
161
invalid_vbr_sig_msg: db 'VBR has illegal signature', 0
162
-try_next_dev_msg: db '. Trying next boot device...', 0
+try_next_dev_msg: db '. Trying next boot device...', 13, 10, 0
163
164
165
;-----------------------------------------------------------------------------
0 commit comments