We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e088a46 commit 98ff4e8Copy full SHA for 98ff4e8
src/boot.s
@@ -183,8 +183,6 @@ error_str: .asciz "Error: "
183
no_cpuid_str: .asciz "No CPUID support"
184
no_int13h_extensions_str: .asciz "No support for int13h extensions"
185
second_stage_load_failed_str: .asciz "Failed to load second stage of bootloader"
186
-kernel_load_failed_str: .asciz "Failed to load kernel"
187
-no_long_mode_str: .asciz "No long mode support"
188
189
gdtinfo:
190
.word gdt_end - gdt - 1 # last byte in table
src/second_stage.s
@@ -3,6 +3,8 @@
3
.code16
4
5
loading_kernel_block_str: .asciz "loading kernel block..."
6
+kernel_load_failed_str: .asciz "Failed to load kernel"
7
+no_long_mode_str: .asciz "No long mode support"
8
9
second_stage:
10
lea si, second_stage_start_str
0 commit comments