continue works

This commit is contained in:
anon
2024-07-27 14:29:42 +02:00
parent 65d53007b9
commit b09bbe6b89
5 changed files with 51 additions and 11 deletions

20
test/continue.eax Normal file
View File

@ -0,0 +1,20 @@
program my_continue
u8 <> yeah = "yeah"
u8 <> nope = "nope"
begin
repeat
mov eax 1
mov edi 1
mov esi yeah
mov edx 4
syscall
continue
mov eax 1
mov edi 1
mov esi nope
mov edx 4
syscall
end repeat
end program