mirror of
https://github.com/zeldaret/oot.git
synced 2025-02-10 06:30:13 +00:00
* 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()
15 lines
167 B
ArmAsm
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)
|