eaxhla/test/heyo.eax
2024-07-13 22:31:00 -04:00

19 lines
249 B
Plaintext

unix program heyo_world
s8 [] heyo = "Heyo world!\n"
s8 [] cyaa = "Cyaa world!\n"
begin
mov eax 1
mov edi 1
mov esi heyo
mov edx 12
syscall
mov eax 1
mov edi 1
mov esi cyaa
mov edx 12
syscall
mov eax 60
mov edi 60
syscall
end program