From c90117251f11e03452ae9808ff8626016c7958a1 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 23 Nov 2019 00:28:03 +0100 Subject: Compiling with nasm --- ft_read.s | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'ft_read.s') diff --git a/ft_read.s b/ft_read.s index e249078..00718e8 100644 --- a/ft_read.s +++ b/ft_read.s @@ -1,18 +1,18 @@ -# **************************************************************************** # -# # -# ::: :::::::: # -# ft_read.s :+: :+: :+: # -# +:+ +:+ +:+ # -# By: cacharle +#+ +:+ +#+ # -# +#+#+#+#+#+ +#+ # -# Created: 2019/11/22 03:04:44 by cacharle #+# #+# # -# Updated: 2019/11/22 21:19:13 by cacharle ### ########.fr # -# # -# **************************************************************************** # +; **************************************************************************** ; +; ; +; ::: :::::::: ; +; ft_read.s :+: :+: :+: ; +; +:+ +:+ +:+ ; +; By: cacharle +;+ +:+ +;+ ; +; +;+;+;+;+;+ +;+ ; +; Created: 2019/11/22 03:04:44 by cacharle ;+; ;+; ; +; Updated: 2019/11/22 21:19:13 by cacharle ;;; ;;;;;;;;.fr ; +; ; +; **************************************************************************** ; -.globl _ft_read +global _ft_read -# int ft_read(int, void*, size_t); +; int ft_read(int, void*, size_t); _ft_read: mov rax, 0x2000003 syscall -- cgit