From 3eae1d082fbd86d48a8f9ee2c57b8931a468cb59 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 21 Nov 2019 05:04:37 +0100 Subject: Initial commit (i cant even compile this shit) --- ft_strcpy.s | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ft_strcpy.s (limited to 'ft_strcpy.s') diff --git a/ft_strcpy.s b/ft_strcpy.s new file mode 100644 index 0000000..44a098d --- /dev/null +++ b/ft_strcpy.s @@ -0,0 +1,11 @@ +_ft_strcpy: + pop ax + pop bx + mov ecx, eax ; copy + FT_STRCPY_LOOP: + mov [ecx], ebx + inc ebx + inc ecx + cmp ebx, 0 + jneq FT_STRCPY_LOOP + ret -- cgit