aboutsummaryrefslogtreecommitdiffstats
path: root/test/floattest.asm
blob: 3c7ba8b0c3bed1cd33891a7c893f1c3167ea7748 (plain)
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
;Testname=optimized; Arguments=-Ox -felf -ofloattest.o; Files=stdout stderr floattest.o

; nasm -O99 -f elf32 floattest.asm
; ld -m elf_i386 -o floattest floattest.o -I/lib/ld-linux.so.2 -lc

	global _start
	extern printf

	section .text
_start:

	fld qword [num1]
	fadd qword [num2]
	sub esp, 8
	fstp qword [esp]
	push fmt
	call printf
	add esp, 4*3

	mov eax, 1
	xor ebx, ebx
	int 80h

	section .data
num1	dq 41.5
num2	dq 0.5

fmt	db "%f", 10, 0