/usr/share/doc/nasm/examples/weirdpaste.asm is in nasm 2.11.08-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ;Testname=preproc; Arguments=-E; Files=stdout stderr
;Testname=bin; Arguments=-fbin -oweirdpaste.bin; Files=stdout stderr weirdpaste.bin
%define foo xyzzy
%define bar 1e+10
%define xyzzy1e 15
%macro dx 2
%assign xx %1%2
dw xx
%endmacro
dx foo, bar
%macro df 2
%assign xy __float32__(%1e+%2)
dd xy
dd %1e+%2
%endmacro
df 1, 36
df 33, 20
df 0, 2
df 1.2, 5
%define N 1e%++%+ 5
dd N, 1e+5
|