aboutsummaryrefslogtreecommitdiff
path: root/asm-fpu.s
blob: 417d199a03bed611af05a7b6da0d0e0c2912f537 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  .cfi_sections .debug_frame

  .section .text.__get_FPSCR
  .global __get_FPSCR
  .thumb_func
  .cfi_startproc
__get_FPSCR:
  vmrs r0, fpscr
  bx lr
  .cfi_endproc
  .size __get_FPSCR, . - __get_FPSCR

  .section .text.__set_FPSCR
  .global __set_FPSCR
  .thumb_func
  .cfi_startproc
__set_FPSCR:
  vmsr fpscr, r0
  bx lr
  .cfi_endproc
  .size __set_FPSCR, . - __set_FPSCR