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 53361a9 commit 1ea1c8eCopy full SHA for 1ea1c8e
boot/freeldr/freeldr/arch/realmode/i386.S
@@ -27,6 +27,10 @@ RealModeEntryPoint:
27
/* Setup the stack */
28
mov sp, word ptr ds:[stack16]
29
30
+ /* Output first status */
31
+ mov si, offset Msg_Starting
32
+ call writestr
33
+
34
/* Enable A20 address line */
35
call EnableA20
36
@@ -54,6 +58,9 @@ RealModeEntryPoint:
54
58
55
59
jmp exit_to_protected
56
60
61
+Msg_Starting:
62
+ .ascii "Hello World!", CR, LF, NUL
63
57
64
65
/* This is the entry point from protected mode */
66
switch_to_real16:
0 commit comments