Files
magenta/arch/x86_64/start_64.S
T

15 lines
188 B
ArmAsm
Raw Normal View History

.code64
2022-12-14 21:45:24 +00:00
.extern kernel_init # defined in core/main.c
.section .boot.rodata, "a", @progbits
2022-12-13 20:21:28 +00:00
.global start_64
.type start_64, @function
start_64:
2022-12-14 21:45:24 +00:00
pop %rax
call kernel_init
cli
hlt