From 80d8f3ae48255f786bd4d52a1819ea0c339f6946 Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Fri, 23 Aug 2024 19:46:17 -0500 Subject: Add register parser and binary search for opcodes --- newasm/parsers/opcode.s | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 newasm/parsers/opcode.s (limited to 'newasm/parsers/opcode.s') diff --git a/newasm/parsers/opcode.s b/newasm/parsers/opcode.s new file mode 100644 index 0000000..8ec327d --- /dev/null +++ b/newasm/parsers/opcode.s @@ -0,0 +1,40 @@ +.syntax unified +.cpu cortex-m0plus +.thumb + +.type opcode, %function +.global opcode + +// 1 unexpected first char + +// R4 input buffer +// R2 output buffer + +opcode: PUSH {LR} + LDRB R0, [R4] // get a char + CMP R0, 0x41 // A + BLO 1f + CMP R0, 0x5A // Z + BLS 2f +1: MOVS R0, #1 // unexpected char + POP {PC} +2: ADDS R4, 1 // consume the character + STRB R0, [R2] // store in temp buffer + ADDS R2, 1 // advance temp buffer pointer + LDRB R0, [R4] // get another character + BL goodchar // check if valid symbol char + BEQ 2b // if so keep getting chars + MOVS R0, #0 // return code success + STRB R0, [R2] // write null byte + POP {PC} + +goodchar: CMP R0, '0 + BLO bad + CMP R0, '9 + BLS good + CMP R0, 'A + BLO bad + CMP R0, 'Z + BHI bad +good: CMP R0, R0 +bad: BX LR -- cgit v1.2.3