mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-08 09:07:53 +00:00
13 lines
217 B
ArmAsm
13 lines
217 B
ArmAsm
|
.syntax unified
|
||
|
.cpu cortex-m4
|
||
|
.fpu fpv4-sp-d16
|
||
|
.thumb
|
||
|
.text
|
||
|
.align 2
|
||
|
.global foo
|
||
|
.thumb
|
||
|
.thumb_func
|
||
|
.type foo, %function
|
||
|
foo:
|
||
|
bx lr
|