11 lines
122 B
ArmAsm
11 lines
122 B
ArmAsm
|
.cpu cortex-m0
|
||
|
.fpu softvfp
|
||
|
.syntax unified
|
||
|
.thumb
|
||
|
.text
|
||
|
.global foo
|
||
|
.thumb_func
|
||
|
.type foo, %function
|
||
|
foo:
|
||
|
bx lr
|