mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
16 lines
188 B
ArmAsm
16 lines
188 B
ArmAsm
|
.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
|