-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab1_V2.s
104 lines (75 loc) · 1.22 KB
/
lab1_V2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
EXIT = 1
STDIN = 0
WRITE = 4
READ = 3
STDOUT = 1
OPEN = 5
CLOSE = 6
.section .data
hex: .ascii "0123456789ABCDEF"
wejscie_len = 1
wyjscie_len = 3
spacja = 32
dzielnik = 16
.section .bss
.comm wejscie, 1024
.comm wyjscie, 1024
.section .text
.global _start
_start:
WCZYTAJ:
movl $READ, %eax
movl $STDIN, %ebx
movl $wejscie, %ecx
movl $wejscie_len, %edx
int $0x80
cmp $0, %eax
je WYJSCIE
movl $0, %eax
movl $0, %edi
movl $0, %esi
movl $0, %edx
movl $0, %ebx
movb wejscie(, %edi, 1), %al
movl $dzielnik, %ecx
divl %ecx
movl %edx, %ebx
cmpl $dzielnik, %eax
jl CASE2
movl $0, %edx
movl $dzielnik, %ecx
divl %ecx
movb hex(, %eax, 1), %cl
movb %cl, wyjscie(, %esi, 1)
incl %esi
movb hex(, %edx, 1), %cl
movb %cl, wyjscie(, %esi, 1)
incl %esi
movb hex(, %ebx, 1), %cl
movb %cl, wyjscie(, %esi, 1)
incl %esi
movb $spacja, %dl
movb %dl, wyjscie(, %esi, 1)
incl %esi
jmp WYPISZ
CASE2:
movb hex(, %eax, 1), %cl
movb %cl, wyjscie(, %esi, 1)
incl %esi
movb hex(, %edx, 1), %cl
movb %cl, wyjscie(, %esi, 1)
incl %esi
movb $spacja, %dl
movb %dl, wyjscie(, %esi, 1)
incl %esi
WYPISZ:
movl $WRITE, %eax
movl $STDOUT, %ebx
movl $wyjscie, %ecx
movl %esi, %edx
int $0x80
jmp WCZYTAJ
WYJSCIE:
movl $EXIT, %eax
movl $STDIN, %ebx
int $0x80