mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00:00
16 lines
172 B
ArmAsm
16 lines
172 B
ArmAsm
|
.syntax unified
|
||
|
.globl _start
|
||
|
.globl func_to_branch_to
|
||
|
|
||
|
.arm
|
||
|
.text
|
||
|
func_to_branch_to:
|
||
|
bx lr
|
||
|
|
||
|
.thumb
|
||
|
.section .foo, "xa"
|
||
|
.thumb_func
|
||
|
_start:
|
||
|
bl func_to_branch_to
|
||
|
|