repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add place-holder directory for the a3000 wd533c93 scsi controller implementation.
[AROS.git]
/
arch
/
i386-all
/
stdc
/
math
/
e_sqrtf.s
blob
ced3ff8861f0e78384431305736b303b56cd54e9
1
/*
2
* Written by J.T. Conklin <jtc@netbsd.org>.
3
* Public domain.
4
*/
5
6
#include "aros/i386/asm.h"
7
8
.text
9
_ALIGNMENT
10
.globl AROS_CDEFNAME(sqrtf)
11
_FUNCTION
(
AROS_CDEFNAME
(
sqrtf
))
12
13
.set FirstArg, 4
/* Skip Return-Adress */
14
.set arg_x, FirstArg
15
16
AROS_CDEFNAME
(
sqrtf
):
17
/* Fetch the arguments off the stack. */
18
flds arg_x
(%
esp
)
19
20
fsqrt
21
22
ret