Synchronizing the changes...

This commit is contained in:
xolatile
2024-07-25 07:59:18 -04:00
parent 630b6aa36c
commit 62e4518150
2 changed files with 25 additions and 8 deletions

15
test/india.eax Normal file
View File

@ -0,0 +1,15 @@
unix program hello
s8 <> message = "Hello, world!"
begin
mov ebx 0
mov edi 1
mov esi message
mov edx 13
india:
mov eax 1
syscall
inc ebx
cmp ebx 1000000
jne india
exit 0
end program