-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memset.s
27 lines (22 loc) · 1.05 KB
/
ft_memset.s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# **************************************************************************** #
# #
# ::: :::::::: #
# ft_memset.s :+: :+: :+: #
# +:+ +:+ +:+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/07/19 17:00:28 by vtarasiu #+# #+# #
# Updated: 2019/07/19 17:00:28 by vtarasiu ### ########.fr #
# #
# **************************************************************************** #
global _ft_memset
_ft_memset:
push rbp
mov rbp, rsp
push rdi
mov rcx, rdx
mov rax, rsi
rep stosb
pop rdi
pop rbp
ret