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

.globl _ft_write

_ft_write:
	mov rax, 0x2000004
	syscall
	ret