eaxhla/test/label.eax
2024-07-19 04:10:50 +02:00

12 lines
147 B
Plaintext

program main
u8 <> msg = "heyo\n"
begin
redo:
mov eax 1
mov edi 1
mov esi msg
mov edx 5
syscall
jmp redo
end program