aboutsummaryrefslogtreecommitdiff
path: root/asm-v8-main.s
blob: a59845ce90a8a0f649c424399bf5b0b5c04e225d (plain) (blame)
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
  .section .text.__msplim_r
  .global __msplim_r
  .thumb_func
__msplim_r:
  mrs r0, MSPLIM
  bx lr

  .section .text.__msplim_w
  .global __msplim_w
  .thumb_func
__msplim_w:
  msr MSPLIM, r0
  bx lr

  .section .text.__psplim_r
  .global __psplim_r
  .thumb_func
__psplim_r:
  mrs r0, PSPLIM
  bx lr

  .section .text.__psplim_w
  .global __psplim_w
  .thumb_func
__psplim_w:
  msr PSPLIM, r0
  bx lr