-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_bzero.s
29 lines (25 loc) · 1.06 KB
/
ft_bzero.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
28
29
# **************************************************************************** #
# #
# ::: :::::::: #
# ft_bzero.s :+: :+: :+: #
# +:+ +:+ +:+ #
# By: edelangh <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2015/03/23 11:00:46 by edelangh #+# #+# #
# Updated: 2015/03/26 18:29:12 by edelangh ### ########.fr #
# #
# **************************************************************************** #
section .text
global _ft_bzero ;defini on function
; rdi rsi rdx
_ft_bzero:
enter 0, 0
mov rbx, rdi
mov rax, 0
mov rcx, rsi
cmp rdi, 0
je end
rep stosb
end:
leave
ret