blob: 3b3a05dd5055b75db2e49e07a578ed18cf42be52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.thumb
.syntax unified
.cpu cortex-m7
.fpu fpv5-d16
.eabi_attribute 27, 3
.text
.align 2
.global main
.thumb
.thumb_func
.type main, %function
main:
bl foo
|