Moved my testing and utility programs to tool folder...

This commit is contained in:
xolatile
2024-07-08 05:05:55 -04:00
parent 75ea0eaec2
commit f7cd79e4ad
6 changed files with 0 additions and 0 deletions

21
tool/heyo_object.asm Normal file
View File

@ -0,0 +1,21 @@
format ELF64
public _start
section '.text' executable
_start:
mov eax, 1
mov edi, 1
mov esi, heyo
mov edx, 12
syscall
mov eax, 60
mov edi, 0
syscall
section '.data' writable
heyo: db "heyo world!", 10