1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-02-10 06:30:13 +00:00
oot/src/libc/sqrt.s
cadmic ec70295357
Move non-libultra libc functions to src/libc/ (#2055)
* Move non-libultra libc functions to src/libc/

* Add explicit nops in delay slots

* Don't rely on CPP expanding undefined macros to 0

* Delete old Makefile rules

* Fix type of memset()
2024-08-20 01:15:24 -04:00

15 lines
167 B
ArmAsm

#include "ultra64/asm.h"
#if OOT_DEBUG
.set noreorder
#endif
.section .text
.balign 16
LEAF(sqrt)
sqrt.d $f0, $f12
jr $ra
nop
END(sqrt)