1
0
Fork 0
mirror of https://github.com/tailix/loadwarka.git synced 2024-11-11 13:50:54 -05:00
loadwarka/src/x86/stage2.S

49 lines
704 B
ArmAsm
Raw Normal View History

2022-01-26 15:19:39 -05:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
2022-01-26 17:43:18 -05:00
2022-01-26 15:19:39 -05:00
.code16
2022-01-27 13:27:41 -05:00
.global _start
2022-01-27 13:59:54 -05:00
.extern print_str
2022-01-27 12:34:57 -05:00
2022-01-27 13:50:02 -05:00
.section .rodata
2022-01-26 20:28:33 -05:00
hello2: .string "Hello from stage 2!\r\n"
hello3: .string "Hello from sector 3!\r\n"
2022-01-26 20:51:26 -05:00
hello4: .string "Hello from sector 4!\r\n"
2022-01-26 17:43:18 -05:00
2022-01-27 13:50:02 -05:00
.section .text
2022-01-27 13:27:41 -05:00
_start:
2022-01-26 20:46:04 -05:00
mov $hello2, %si
2022-01-26 17:43:18 -05:00
call print_str
2022-01-26 15:19:39 -05:00
2022-01-26 20:51:26 -05:00
mov $teststr3, %si
2022-01-26 20:06:12 -05:00
call print_str
2022-01-26 20:51:26 -05:00
mov $teststr4, %si
call print_str
ljmp $0, $sector3
2022-01-26 17:43:18 -05:00
2022-01-26 20:51:26 -05:00
.fill 512, 1, 0
2022-01-26 20:06:12 -05:00
2022-01-26 20:51:26 -05:00
teststr3: .string "Test string from sector 3\r\n"
2022-01-26 19:47:11 -05:00
2022-01-26 20:51:26 -05:00
sector3:
2022-01-26 20:46:04 -05:00
mov $hello3, %si
2022-01-26 20:28:33 -05:00
call print_str
2022-01-26 20:51:26 -05:00
ljmp $0, $sector4
.fill 512, 1, 0
teststr4: .string "Test string from sector 4\r\n"
sector4:
mov $hello4, %si
call print_str
2022-01-26 20:28:33 -05:00
hang:
cli
hlt
jmp hang