diff options
Diffstat (limited to 'ft_write.s')
| -rw-r--r-- | ft_write.s | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,6 @@ +.globl _ft_write + _ft_write: - mov eax, 4 - int 0x80 + mov rax, 0x2000004 + syscall ret |
![]() |
index : libasm.git | |
| School project: Introduction to assembly, small x86_64 lib |
| aboutsummaryrefslogtreecommitdiff |
| -rw-r--r-- | ft_write.s | 6 |
@@ -1,4 +1,6 @@ +.globl _ft_write + _ft_write: - mov eax, 4 - int 0x80 + mov rax, 0x2000004 + syscall ret |