aboutsummaryrefslogtreecommitdiff
path: root/assembler/octal.s
blob: 18abebdc3ced69fd2c4a5cd32c7d8da392494b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.syntax unified
.cpu cortex-m0plus
.thumb

.type octal, %function
.global octal

octal:
  PUSH {LR}
  MOVS R5, R0

  // Handle bit-width = 0
  BNE 30f
10:
  BL get_char
  CMP R0, '0
  BNE 10b
  BL uart_send
  MOVS R4, 0
20:
  BL get_char
  BNE 20b
  POP {PC}
30:

  // R4 will become '1 or '3 or '7
  MOVS R0, 3
  CMP R5, 3
  BHS 40f
  MOVS R0, R5
40:
  MOVS R4, 1
  LSLS R4, R0
  ADDS R4, ('0 - 1)

  // Get first char
50:
  BL get_char
  CMP R0, '0
  BLO 50b
  CMP R0, R4
  BHI 50b
  BL uart_send
  SUBS R0, '0
  MOVS R4, R0

  // Subtract 1, 2, or 3 from bit-width
  MOVS R1, 0
60:
  ADDS R1, 1
  LSRS R0, 1
  BNE 60b
  SUBS R5, R1

  // Loop for remaining chars
70:
  CMP R5, 3
  BLO 80f
  BL get_char
  BEQ 90f
  CMP R0, '0
  BLO 70b
  CMP R0, '7
  BHI 70b
  BL uart_send
  SUBS R0, '0
  LSLS R4, 3
  ADDS R4, R0
  SUBS R5, 3
  B 70b
80:
  BL get_char
  BNE 80b
90:
  POP {PC}