-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path131_Kononov_Daniil_0.s
281 lines (226 loc) · 4.5 KB
/
131_Kononov_Daniil_0.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
.data
mx_rows : .long 20
mx_cols : .long 20
mx_sz : .long 400
sz : .space 4
mat : .space 1600
m : .space 4
n : .space 4
p : .space 4
k : .space 4
temp : .space 4
cnt : .long 0
form_in3 : .asciz "%ld%ld%ld"
f_in2: .asciz "%ld%ld"
f_out : .asciz "%ld "
f_o : .asciz "%ld\n"
new_line : .asciz "\n"
f_in : .asciz "%ld"
i : .long 0
j : .long 0
.text
.global main
fill:
xor %ecx, %ecx
lea mat, %edi
for_fill:
movl $0, (%edi, %ecx, 4)
incl %ecx
cmp %ecx, mx_sz
jg for_fill
ret
main:
pushl $p
pushl $n
pushl $m
pushl $form_in3
call scanf
add $16, %esp
xor %edx, %edx
incl m
incl n
incl n
mov m, %eax
mov n, %ebx
mul %ebx
mov %eax, sz
decl sz
call fill
xor %ecx, %ecx
for_read:
cmp %ecx, p
je calc_ev
pusha
pushl $j
pushl $i
pushl $f_in2
call scanf
addl $12, %esp
popa
incl i
incl j
mov i, %eax
mov n, %ebx
mul %ebx
add j, %eax
movl $1, (%edi, %eax, 4)
incl %ecx
jmp for_read
calc_ev:
pusha
pushl $k
pushl $f_in
call scanf
add $8, %esp
popa
call evolution
jmp display
display:
xor %ecx, %ecx
decl n
mov n, %eax
add $2, %eax
incl %ecx
for_write:
cmp %ecx, m
je fin
xor %ebx, %ebx
incl %ebx
forw:
cmp %ebx, n
je ex_forw
mov %ebx, j
xor %edx, %edx
movl (%edi, %eax, 4), %ebx
mov %ebx, temp
mov j, %ebx
pusha
pushl temp
pushl $f_out
call printf
add $8, %esp
popa
incl %eax
incl %ebx
jmp forw
ex_forw:
incl %eax
incl %eax
incl %ecx
pusha
pushl $new_line
call printf
add $4, %esp
popa
jmp for_write
fin:
pushl $0
call fflush
popl %ebx
mov $1, %eax
xor %ebx, %ebx
int $0x80
evolution:
movl $0, i
for_ev:
movl i, %eax
cmp %eax, k
je ex_ev
mov n, %ecx
incl %ecx
movl $2, %edx
for1:
cmp %ecx, sz
jle evol2
mov (%edi, %ecx, 4), %ebx
movl $0, cnt
pushl %ebx
call count
popl %ebx
movl cnt, %eax
cmpl $1, %ebx
je check1
jmp check0
loop_f:
incl %ecx
incl %edx
cmp %edx, n
je next_line
jmp for1
next_line:
add $2, %ecx
mov $2, %edx
jmp for1
check1:
cmp $3, %eax
jg change
cmp $2, %eax
jl change
jmp loop_f
check0:
cmp $3, %eax
je change
jmp loop_f
change:
addl $2, %ebx
mov %ebx, (%edi, %ecx, 4)
jmp loop_f
evol2:
mov n, %ecx
incl %ecx
mov $2, %edx
for2:
cmp %ecx, sz
jle loop_ev
mov (%edi, %ecx, 4), %ebx
cmp $2, %ebx
jge restore
loop_f2:
incl %ecx
incl %edx
cmpl n, %edx
je nextl2
jmp for2
nextl2:
mov $2, %edx
add $2, %ecx
jmp for2
restore:
mov $3, %eax
subl %ebx, %eax
mov %eax, (%edi, %ecx, 4)
jmp loop_f2
loop_ev:
incl i
jmp for_ev
ex_ev:
ret
count:
mov %ecx, %eax
sub n, %eax
call check
incl %eax
call check
subl $2, %eax
call check
add n, %eax
call check
addl $2, %eax
call check
add n, %eax
call check
decl %eax
call check
decl %eax
call check
ret
check:
mov (%edi, %eax, 4), %ebx
cmp $1, %ebx
je inc_cnt
cmp $3, %ebx
je inc_cnt
ret
inc_cnt:
incl cnt
ret