hazel/user/userinit.asm
2024-07-15 14:03:44 -04:00

8 lines
94 B
NASM

[bits 32]
global _start
_start:
mov ecx, 0xDEADBEEF
mov eax, 1
int 0x80
jmp $