diff --git a/ft_write.s b/ft_write.s new file mode 100644 index 0000000..69f63d4 --- /dev/null +++ b/ft_write.s @@ -0,0 +1,10 @@ +global _write + +_write: + mov eax, 0x1 + syscall + jc .error + ret +.error: + mov rax, -1 + ret \ No newline at end of file