aboutsummaryrefslogtreecommitdiff
path: root/newasm/parsers/immediate.s
blob: ac3e578b0cae5b77469075fa49765b3ea29f38d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.syntax unified
.cpu cortex-m0plus
.thumb

.type immediate, %function
.global immediate

// R4 input buffer
// R2 output buffer

immediate:PUSH    {LR}
          BL      decimal
          POP     {PC}