File: math.s

package info (click to toggle)
binutils-avr 2.26.20160125%2BAtmel3.6.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 365,552 kB
  • sloc: ansic: 2,480,046; asm: 892,807; exp: 188,218; cpp: 133,829; makefile: 63,886; sh: 32,212; yacc: 26,783; lisp: 16,709; xml: 7,490; perl: 6,449; python: 4,555; ada: 4,318; pascal: 3,174; lex: 2,250; cs: 879; sed: 334; f90: 298; awk: 168; objc: 134; java: 73; fortran: 43
file content (37 lines) | stat: -rw-r--r-- 754 bytes parent folder | download | duplicates (45)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
*	
* Math built-in functions
*
	.float	$acos(0.0)
	.float	$asin(0.0)
	.float	$atan(0.0)
	.float	$atan2(1.0,2.0)
        .float  $ceil(1.5)
	.float	$cosh(0.0)
	.float	$cos(0.0)
	.float	$cvf(1)
	.int	$cvi(2.5)
	.int	$cvi(-2.5)
	.float	$exp(1.0)
	.float	$fabs(-2.5)
        .float  $floor(3.4)
        .float  $fmod(10,4)
	.int	$int(1.2)
	.float	$ldexp(1,2)
	.float	$log10(1.0)
	.float	$log(1.0)
	.float	$max(1.0,2.0)
	.float	$min(1.0,2.0)
	.float	$pow(2.0,3.0)
        .float  $round(4.5)
        .float  $round(-4.5)
	.int	$sgn(-1.0)
	.int	$sgn(0)
	.int	$sgn(1)
	.float	$sin(0.0)
	.float	$sinh(0.0)
	.float	$sqrt(1.0)
	.float	$tan(0.0)
	.float	$tanh(0.0)
        .float  $trunc(-1.5)
        .float  $trunc(1.5)
	.end