-
Notifications
You must be signed in to change notification settings - Fork 0
/
io.s
64 lines (43 loc) · 1.14 KB
/
io.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
.section .data
fmt_in: .asciz " %d"
fmt_out: .asciz "%d "
linebreak: .ascii "\n"
.section .text
input:
pushl %ebp
movl %esp, %ebp
movl 8(,%ebp,), %ecx # Tamanho do vetor
movl 12(,%ebp,), %esi # Endereço do vetor
input_loop:
pushl %ecx # Salva ecx
pushl %esi # Endereço do elemento
pushl $fmt_in # Formato de entrada
call scanf
addl $8, %esp # Alinha a pilha
// Incrementa esi (próximo elemento)
addl $4, %esi
popl %ecx # Recupera ecx
loop input_loop
popl %ebp
ret
output:
pushl %ebp
movl %esp, %ebp
movl 8(,%ebp,), %ecx # Tamanho do vetor
movl 12(,%ebp,), %esi # Endereço do vetor
output_loop:
pushl %ecx # Salva ecx
pushl (%esi) # Valor do elemento
pushl $fmt_out # Formato de saída
call printf
addl $8, %esp # Alinha a pilha
// Incrementa esi (próximo elemento)
addl $4, %esi
// Recupera ecx depois de alinhar a pilha
popl %ecx
loop output_loop
pushl linebreak
call putchar
addl $4, %esp
popl %ebp
ret