view nasmbuild/nasm-2.13rc9/test/uscore.asm @ 10714:0350bdce1ab8

<rdococ> revert
author HackBot
date Sun, 16 Apr 2017 15:59:43 +0000
parents 587a0a262d22
children
line wrap: on
line source

;Testname=test; Arguments=-fbin -ouscore.bin; Files=stdout stderr uscore.bin
	dd 0x1234_5678
	dd 305_419_896		; Same number as above it
	dd 0x1e16		; NOT a floating-point number!
	dd 1e16h		; NOT a floating-point number!
	dd 1e16_h		; NOT a floating-point number!
	dd $1e16		; NOT a floating-point number!
	dd $1e+16		; NOT a floating-point number!
	dd 1e16			; THIS is a floating-point number!
	dd 1e+16
	dd 1.e+16
	dd 1e+1_6
	dd 1e1_6
	dd 1.0e16
	dd 1_0e16		; This is 1e17, not 1e16!