This repository has been archived on 2026-03-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-02-27 22:22:48 +02:00

18 lines
199 B
ArmAsm

.section .multiboot
.align 4
.long 0x1BADB002
.long 0x0
.long -(0x1BADB002)
.section .text
.global _start
.type _start, @function
_start:
cli
call kernel_main
.hang:
hlt
jmp .hang