-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_tolower.s
28 lines (23 loc) · 1.04 KB
/
ft_tolower.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
# **************************************************************************** #
# #
# ::: :::::::: #
# ft_tolower.s :+: :+: :+: #
# +:+ +:+ +:+ #
# By: alaulom <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2016/01/06 16:24:27 by alaulom #+# #+# #
# Updated: 2016/02/19 17:41:43 by alaulom ### ########.fr #
# #
# **************************************************************************** #
;int ft_tolower(int c);
global _ft_tolower
section .text
_ft_tolower:
cmp rdi, 'A'
jl _ret
cmp rdi, 'Z'
jg _ret
add rdi, 32
_ret:
mov rax, rdi
ret