diff options
author | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-08-21 00:21:54 -0500 |
---|---|---|
committer | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-08-21 00:21:54 -0500 |
commit | ed6f1106322f8ca4a6e26d08365bb9558ffa9d09 (patch) | |
tree | 0258d4a7b0429c82b4f7af8d63106ea93e7150de /newasm/data.s | |
parent | d23ab4295a865580f6cb7bb4526978bac388b5ac (diff) |
Start new assembler
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" |