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_write.s | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'ft_write.s') diff --git a/ft_write.s b/ft_write.s index 7303af0..c558ab6 100644 --- a/ft_write.s +++ b/ft_write.s @@ -1,18 +1,18 @@ -# **************************************************************************** # -# # -# ::: :::::::: # -# ft_write.s :+: :+: :+: # -# +:+ +:+ +:+ # -# By: cacharle +#+ +:+ +#+ # -# +#+#+#+#+#+ +#+ # -# Created: 2019/11/22 03:04:47 by cacharle #+# #+# # -# Updated: 2019/11/22 21:19:02 by cacharle ### ########.fr # -# # -# **************************************************************************** # +; **************************************************************************** ; +; ; +; ::: :::::::: ; +; ft_write.s :+: :+: :+: ; +; +:+ +:+ +:+ ; +; By: cacharle +;+ +:+ +;+ ; +; +;+;+;+;+;+ +;+ ; +; Created: 2019/11/22 03:04:47 by cacharle ;+; ;+; ; +; Updated: 2019/11/22 21:19:02 by cacharle ;;; ;;;;;;;;.fr ; +; ; +; **************************************************************************** ; -.globl _ft_write +global _ft_write -# int ft_write(int, const void*, size_t); +; int ft_write(int, const void*, size_t); _ft_write: mov rax, 0x2000004 syscall -- cgit