-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_write.s
25 lines (21 loc) · 1 KB
/
ft_write.s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# **************************************************************************** #
# #
# :::::::: #
# ft_write.s :+: :+: #
# +:+ #
# By: ikole <ikole@student.codam.nl> +#+ #
# +#+ #
# Created: 2020/03/09 11:36:18 by ikole #+# #+# #
# Updated: 2020/03/09 11:36:19 by ikole ######## odam.nl #
# #
# **************************************************************************** #
global _ft_write
section .text
_ft_write:
mov rax, 0x02000004
syscall
jc error
ret
error:
mov rax, -1
ret