22 lines
318 B
Plaintext
22 lines
318 B
Plaintext
program my_break
|
|
u8 <> yeah = "yeah"
|
|
u8 <> nope = "nope"
|
|
begin
|
|
repeat
|
|
mov eax 1
|
|
mov edi 1
|
|
mov esi yeah
|
|
mov edx 4
|
|
syscall
|
|
|
|
break
|
|
|
|
mov eax 1
|
|
mov edi 1
|
|
mov esi nope
|
|
mov edx 4
|
|
syscall
|
|
end repeat
|
|
exit 0
|
|
end program
|