mirror of
https://github.com/make-42/xyosc
synced 2025-01-18 18:57:10 +01:00
23 lines
483 B
ArmAsm
23 lines
483 B
ArmAsm
//go:build !tinygo && !noasm
|
|
#include "textflag.h"
|
|
|
|
// func archExp(x float32) float32
|
|
TEXT ·archExp(SB),NOSPLIT,$0
|
|
JMP ·exp(SB)
|
|
|
|
// func archExp2(x float32) float32
|
|
TEXT ·archExp2(SB),NOSPLIT,$0
|
|
JMP ·exp2(SB)
|
|
|
|
// func archLog(x float32) float32
|
|
TEXT ·archLog(SB),NOSPLIT,$0
|
|
JMP ·log(SB)
|
|
|
|
// func archRemainder(x, y float32) float32
|
|
TEXT ·archRemainder(SB),NOSPLIT,$0
|
|
JMP ·remainder(SB)
|
|
|
|
// func archSqrt(x float32) float32
|
|
TEXT ·archSqrt(SB),NOSPLIT,$0
|
|
JMP ·sqrt(SB)
|