blob: 7fe8f94c89cec0191c1815cbbc8df2c16cc90ea8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.section .text.t1
.global _start
.global end
_start:
bl end
.section .text.t2
.zero 64 * 1024 * 1024
.section .text.t3
.zero 64 * 1024 * 1024
.section .text.t4
end:
bl _start
|