aboutsummaryrefslogtreecommitdiff
path: root/newasm/label.s
diff options
context:
space:
mode:
authorJacques Comeaux <jacquesrcomeaux@protonmail.com>2024-08-21 03:18:35 -0500
committerJacques Comeaux <jacquesrcomeaux@protonmail.com>2024-08-21 03:18:35 -0500
commitccc04526f14764d856ad37b1f517308fccf886a6 (patch)
tree7c25442967b071a485a44c1da73b16ba84adc9af /newasm/label.s
parented6f1106322f8ca4a6e26d08365bb9558ffa9d09 (diff)
Add label and opcode parsers
Diffstat (limited to 'newasm/label.s')
-rw-r--r--newasm/label.s30
1 files changed, 30 insertions, 0 deletions
diff --git a/newasm/label.s b/newasm/label.s
new file mode 100644
index 0000000..af2f641
--- /dev/null
+++ b/newasm/label.s
@@ -0,0 +1,30 @@
+.syntax unified
+.cpu cortex-m0plus
+.thumb
+
+.type label, %function
+.global label
+
+// 1 unexpected begin char
+// 2 doesn't end with colon
+
+// R1 input buffer
+// R2 output buffer
+
+label: PUSH {LR}
+ LDRB R0, [R1] // get a char
+ CMP R0, 0x61 // a
+ BLO 1f
+ CMP R0, 0x7A // z
+ BLS 2f
+1: MOVS R0, #1 // return code 1 (expected lowercase)
+ POP {PC}
+2: BL symbol
+ LDRB R0, [R1] // get a char
+ CMP R0, ': // colon
+ BEQ 3f
+ MOVS R0, #2 // return code 2 (expected colon)
+ POP {PC}
+3: ADDS R1, 1 // consume the colon
+ MOVS R0, #0 // return code 0 (success)
+ POP {PC}