mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-12-09 08:51:18 +08:00
36fcd9156f
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
27 lines
359 B
NASM
27 lines
359 B
NASM
; 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
|