aboutsummaryrefslogtreecommitdiff
path: root/ft_write.s
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-23 00:28:03 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-23 00:28:03 +0100
commitc90117251f11e03452ae9808ff8626016c7958a1 (patch)
treeb4ef9f0f562d3394e23af4a698ad35964f18bc23 /ft_write.s
parent8e3a5ac569a3ccc1101b58fe8ef673f02b4961fb (diff)
downloadlibasm-c90117251f11e03452ae9808ff8626016c7958a1.tar.gz
libasm-c90117251f11e03452ae9808ff8626016c7958a1.tar.bz2
libasm-c90117251f11e03452ae9808ff8626016c7958a1.zip
Compiling with nasm
Diffstat (limited to 'ft_write.s')
-rw-r--r--ft_write.s26
1 files changed, 13 insertions, 13 deletions
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 <marvin@42.fr> +#+ +:+ +#+ #
-# +#+#+#+#+#+ +#+ #
-# Created: 2019/11/22 03:04:47 by cacharle #+# #+# #
-# Updated: 2019/11/22 21:19:02 by cacharle ### ########.fr #
-# #
-# **************************************************************************** #
+; **************************************************************************** ;
+; ;
+; ::: :::::::: ;
+; 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
+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