diff --git a/src/x86_stage1.S b/src/x86_stage1.S index e46b8c1..3777ea4 100644 --- a/src/x86_stage1.S +++ b/src/x86_stage1.S @@ -34,7 +34,7 @@ size: .word _end - _start disk: .byte 0 newline: .string "\r\n" -hello: .string "Hello stage 1!\r\n" +hello: .string "Hello from stage 1!\r\n" stage1_size_str: .string "Stage 1 size: " stage2_size_str: .string "Stage 2 size: " diff --git a/src/x86_stage2.S b/src/x86_stage2.S index 69f9431..257a0fd 100644 --- a/src/x86_stage2.S +++ b/src/x86_stage2.S @@ -32,7 +32,7 @@ _start: .align 4 size: .word _end - _start -hello: .string "Hello stage 2!\r\n" +hello: .string "Hello from stage 2!\r\n" main: mov $STAGE2_ADDR(hello), %si