mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
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
|