/usr/share/doc/nasm/examples/zerobyte.asm is in nasm 2.11.05-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 | ;Testname=test; Arguments=-fbin -ozerobyte.bin; Files=stdout stderr zerobyte.bin
bits 64
mov eax,bar-foo
foo:
add al,r10b
bar:
lldt ax
lldt r8w
ltr [rax]
sldt eax
sldt r8d
str eax
str rax
str r8d
str r8
verr ax
verr r8w
verw ax
verw r8w
|