blob: 69d03acd104dface4d17ec64429ae48c5a679f53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.syntax unified
.cpu cortex-m0plus
.thumb
.global crlf, word, hword, byte, align, asciz, SP, LR, PC
crlf: .asciz "\r\n"
word: .asciz "word"
hword: .asciz "hword"
byte: .asciz "byte"
align: .asciz "align"
asciz: .asciz "asciz"
SP: .asciz "SP"
LR: .asciz "LR"
PC: .asciz "PC"
|