Fix hello messages

This commit is contained in:
Alex Kotov 2022-01-27 05:29:34 +05:00
parent a0e1eb29fa
commit fd57d412f7
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
2 changed files with 2 additions and 2 deletions

View File

@ -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: "

View File

@ -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