mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
15 lines
256 B
ArmAsm
15 lines
256 B
ArmAsm
@ Test to ensure that ARM calls exceeding 32Mb generate stubs,
|
|
@ and that a large input section forces stub insertion before its
|
|
@ contribution.
|
|
|
|
.text
|
|
myfunc:
|
|
.space 0x2000000
|
|
bl bar
|
|
|
|
.section .far, "xa"
|
|
.type bar, %function
|
|
.global bar
|
|
bar:
|
|
bx lr
|