From ed6f1106322f8ca4a6e26d08365bb9558ffa9d09 Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Wed, 21 Aug 2024 00:21:54 -0500 Subject: Start new assembler --- newasm/data.s | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 newasm/data.s (limited to 'newasm/data.s') 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" -- cgit v1.2.3