dumpster fire

This commit is contained in:
anon
2024-07-19 04:10:50 +02:00
parent bec336d276
commit 1b9acda87b
8 changed files with 152 additions and 57 deletions

11
test/label.eax Normal file

@ -0,0 +1,11 @@
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