mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
18 lines
180 B
ArmAsm
18 lines
180 B
ArmAsm
|
# relaxation test for callr
|
||
|
|
||
|
.globl text1
|
||
|
.section text1, "ax", @progbits
|
||
|
|
||
|
call func
|
||
|
call func1
|
||
|
|
||
|
.section text2, "ax", @progbits
|
||
|
func:
|
||
|
nop
|
||
|
br func1
|
||
|
nop
|
||
|
nop
|
||
|
nop
|
||
|
func1:
|
||
|
nop
|