eaxhla/test/heyo.eax
2024-07-23 23:54:05 +02:00

31 lines
471 B
Plaintext

fast procedure heyo
s8 <> heyo_data = "Heyo world!\n"
begin
nop mov eax 1
nop mov edi 1
nop mov esi heyo_data
nop mov edx 12
nop syscall
end procedure
fast procedure cyaa
s8 <> cyaa_data = "Cyaa world!\n"
begin
nop mov eax 1
nop mov edi 1
nop mov esi cyaa_data
nop mov edx 12
nop syscall
end procedure
unix program main
begin
nop mov r10d 0x11223344
nop fastcall heyo
nop fastcall cyaa
nop fastcall heyo
nop fastcall cyaa
nop exit 60
nop
end program