add: ft_write

This commit is contained in:
2024-09-02 17:22:08 +02:00
parent 5bccb1efc6
commit 054e31a020
3 changed files with 13 additions and 1 deletions

8
src/ft_write.asm Normal file
View File

@ -0,0 +1,8 @@
section .note.GNU-stack noalloc noexec progbits
section .text
global ft_write
ft_write:
mov rax, 1
syscall
ret