-
Notifications
You must be signed in to change notification settings - Fork 0
/
io.s
56 lines (38 loc) · 966 Bytes
/
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
.section .data
fmt_in: .asciz " %f"
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
// Escreve float
pushl %esi
call print_float
addl $4, %esp
// Incrementa esi (próximo elemento)
addl $4, %esi
popl %ecx
loop output_loop
popl %ebp
ret