Files
RockOS/programs/origin.S
2026-06-17 18:16:47 -05:00

16 lines
217 B
ArmAsm

.code32
.section .text
.global _start
_start:
mov $1, %eax
mov $(message), %ebx
mov $0, %ecx
mov $0, %edx
int $0x80
loop:
jmp loop
.section .data
message:
.asciz "Hello, Userland!\n";