loadwarka/src/x86/stage2.S

69 lines
943 B
ArmAsm
Raw Normal View History

2022-01-26 20:19:39 +00:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
2022-01-26 22:43:18 +00:00
2022-01-26 20:19:39 +00:00
.code16
2022-01-27 18:09:49 +00:00
.global init
2022-01-27 17:32:40 +00:00
.extern program_size
2022-01-27 17:34:57 +00:00
2022-01-27 18:09:49 +00:00
.section .init
2022-01-27 00:30:53 +00:00
.align 2
2022-01-27 17:32:40 +00:00
size: .word program_size
2022-01-27 00:21:22 +00:00
2022-01-27 01:28:33 +00:00
hello2: .string "Hello from stage 2!\r\n"
hello3: .string "Hello from sector 3!\r\n"
2022-01-27 01:51:26 +00:00
hello4: .string "Hello from sector 4!\r\n"
2022-01-26 22:43:18 +00:00
2022-01-27 18:09:49 +00:00
init:
2022-01-27 01:46:04 +00:00
mov $hello2, %si
2022-01-26 22:43:18 +00:00
call print_str
2022-01-26 20:19:39 +00:00
2022-01-27 01:51:26 +00:00
mov $teststr3, %si
2022-01-27 01:06:12 +00:00
call print_str
2022-01-27 01:51:26 +00:00
mov $teststr4, %si
call print_str
ljmp $0, $sector3
2022-01-26 22:43:18 +00:00
do_ret:
ret
2022-01-27 00:26:54 +00:00
// AL - char
2022-01-26 22:43:18 +00:00
print_char:
mov $0x0E, %ah
mov $0x0001, %bx
int $0x10
2022-01-27 00:36:10 +00:00
ret
2022-01-26 22:43:18 +00:00
2022-01-27 00:26:54 +00:00
// SI - string pointer
2022-01-26 22:43:18 +00:00
print_str:
lodsb
test %al, %al
jz do_ret
call print_char
jmp print_str
2022-01-27 00:21:22 +00:00
2022-01-27 01:51:26 +00:00
.fill 512, 1, 0
2022-01-27 01:06:12 +00:00
2022-01-27 01:51:26 +00:00
teststr3: .string "Test string from sector 3\r\n"
2022-01-27 00:47:11 +00:00
2022-01-27 01:51:26 +00:00
sector3:
2022-01-27 01:46:04 +00:00
mov $hello3, %si
2022-01-27 01:28:33 +00:00
call print_str
2022-01-27 01:51:26 +00: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-27 01:28:33 +00:00
hang:
cli
hlt
jmp hang