mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-13 03:29:50 +00:00
15 lines
214 B
ArmAsm
15 lines
214 B
ArmAsm
|
.thumb
|
||
|
.syntax unified
|
||
|
.cpu cortex-m7
|
||
|
.fpu fpv5-d16
|
||
|
.eabi_attribute 27, 2
|
||
|
.text
|
||
|
.align 2
|
||
|
.global main
|
||
|
.thumb
|
||
|
.thumb_func
|
||
|
.type main, %function
|
||
|
|
||
|
main:
|
||
|
bl foo
|