diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-11-22 03:05:58 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-11-22 03:18:48 +0100 |
| commit | a917ec555ef8419bf638d6b8f87c965dff96e9e1 (patch) | |
| tree | a18ab385f8e5a5c115d157324f8d2a3966b0003d /ft_strcpy.s | |
| parent | b22183ba021d9ab3418d8f47545708597247e583 (diff) | |
| download | libasm-a917ec555ef8419bf638d6b8f87c965dff96e9e1.tar.gz libasm-a917ec555ef8419bf638d6b8f87c965dff96e9e1.tar.bz2 libasm-a917ec555ef8419bf638d6b8f87c965dff96e9e1.zip | |
ft_strdup.s and Makefile
Diffstat (limited to 'ft_strcpy.s')
| -rw-r--r-- | ft_strcpy.s | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ft_strcpy.s b/ft_strcpy.s index 228ea04..d20476d 100644 --- a/ft_strcpy.s +++ b/ft_strcpy.s @@ -1,3 +1,15 @@ +# **************************************************************************** # +# # +# ::: :::::::: # +# ft_strcpy.s :+: :+: :+: # +# +:+ +:+ +:+ # +# By: cacharle <marvin@42.fr> +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2019/11/22 03:04:28 by cacharle #+# #+# # +# Updated: 2019/11/22 03:16:19 by cacharle ### ########.fr # +# # +# **************************************************************************** # + .globl _ft_strcpy _ft_strcpy: @@ -10,4 +22,5 @@ _ft_strcpy: inc rcx cmp byte ptr [rbx + rcx], 0 jne FT_STRCPY_LOOP + mov byte ptr [rax + rcx], 0 ret |
