-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_toupper.s
38 lines (33 loc) · 1.12 KB
/
ft_toupper.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
30
31
32
33
34
35
36
37
38
# **************************************************************************** #
# #
# ::: :::::::: #
# ft_toupper.s :+: :+: :+: #
# +:+ +:+ +:+ #
# By: edelangh <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2015/03/24 14:19:17 by edelangh #+# #+# #
# Updated: 2015/03/24 14:27:08 by edelangh ### ########.fr #
# #
# **************************************************************************** #
section .text
global _ft_toupper
; rdi rsi rdx
; edi esi edx
_ft_toupper:
push rbp
mov rbp, rsp
mov rax, rdi
cmp edi, 'a'
jl nope
cmp edi, 'z'
jg nope
jmp yep
yep:
sub rax, 32
jmp end
nope:
; mov rax, 0
jmp end
end:
pop rbp
ret