aboutsummaryrefslogtreecommitdiff
path: root/ft_write.s
diff options
context:
space:
mode:
Diffstat (limited to 'ft_write.s')
-rw-r--r--ft_write.s6
1 files changed, 4 insertions, 2 deletions
diff --git a/ft_write.s b/ft_write.s
index a21ec45..9cd1d3f 100644
--- a/ft_write.s
+++ b/ft_write.s
@@ -1,4 +1,6 @@
+.globl _ft_write
+
_ft_write:
- mov eax, 4
- int 0x80
+ mov rax, 0x2000004
+ syscall
ret