aboutsummaryrefslogtreecommitdiff
path: root/ft_write.s
blob: 7303af02cbf70abfc543a9f56d1db978684fa1bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# **************************************************************************** #
#                                                                              #
#                                                         :::      ::::::::    #
#    ft_write.s                                         :+:      :+:    :+:    #
#                                                     +:+ +:+         +:+      #
#    By: cacharle <marvin@42.fr>                    +#+  +:+       +#+         #
#                                                 +#+#+#+#+#+   +#+            #
#    Created: 2019/11/22 03:04:47 by cacharle          #+#    #+#              #
#    Updated: 2019/11/22 21:19:02 by cacharle         ###   ########.fr        #
#                                                                              #
# **************************************************************************** #

.globl _ft_write

# int ft_write(int, const void*, size_t);
_ft_write:
	mov rax, 0x2000004
	syscall
	ret