mirror of
https://github.com/tailix/loadwarka.git
synced 2024-11-11 13:50:54 -05:00
Fix hello messages
This commit is contained in:
parent
a0e1eb29fa
commit
fd57d412f7
2 changed files with 2 additions and 2 deletions
|
@ -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: "
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue