mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00:00
17 lines
339 B
ArmAsm
17 lines
339 B
ArmAsm
|
@ Test to ensure that the b to linker script symbol isn't changed to other format.
|
||
|
|
||
|
|
||
|
.syntax unified
|
||
|
.cpu cortex-m3
|
||
|
.fpu softvfp
|
||
|
.thumb
|
||
|
.file "x.c"
|
||
|
.text
|
||
|
.align 2
|
||
|
.global main
|
||
|
.thumb
|
||
|
.thumb_func
|
||
|
.type main, %function
|
||
|
main:
|
||
|
b extFunc
|