Added JIT FPU, removed Softfloat option (too slow to be useful) - Thanks TomB!
This commit is contained in:
parent
f24301e8dd
commit
a8815b211e
55 changed files with 3579 additions and 10940 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
.arm
|
||||
|
||||
.global save_host_fp_regs
|
||||
.global restore_host_fp_regs
|
||||
.global copy_screen_8bit
|
||||
.global copy_screen_16bit_swap
|
||||
.global copy_screen_32bit_to_16bit_neon
|
||||
|
@ -16,6 +18,20 @@
|
|||
|
||||
.align 8
|
||||
|
||||
@----------------------------------------------------------------
|
||||
@ save_host_fp_regs
|
||||
@----------------------------------------------------------------
|
||||
save_host_fp_regs:
|
||||
vstmia r0!, {d7-d15}
|
||||
bx lr
|
||||
|
||||
@----------------------------------------------------------------
|
||||
@ restore_host_fp_regs
|
||||
@----------------------------------------------------------------
|
||||
restore_host_fp_regs:
|
||||
vldmia r0!, {d7-d15}
|
||||
bx lr
|
||||
|
||||
|
||||
@----------------------------------------------------------------
|
||||
@ copy_screen_8bit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue