nasm/travis/test/floatize.asm
Cyrill Gorcunov cd22ea42c3 test: nasm-t -- Add floatize test
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
2018-11-11 21:43:45 +03:00

17 lines
325 B
NASM

%assign x13 13+26
%assign f16 __float16__(1.6e-7)
%assign f32 __float32__(1.6e-7)
%assign f64 __float64__(1.6e-7)
%assign f80m __float80m__(1.6e-7)
%assign f80e __float80e__(1.6e-7)
%assign f128l __float128l__(1.6e-7)
%assign f128h __float128h__(1.6e-7)
dw f16
dd f32
dq f64
dq f80m
dw f80e
dq f128l
dq f128h