diff options
Diffstat (limited to 'newasm/data.s')
-rw-r--r-- | newasm/data.s | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/newasm/data.s b/newasm/data.s new file mode 100644 index 0000000..69d03ac --- /dev/null +++ b/newasm/data.s @@ -0,0 +1,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" |