/usr/share/doc/nasm/examples/insnlbl.asm is in nasm 2.09.10-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 | ;Testname=test; Arguments=-fbin -oinsnlbl.bin; Files=stdout stderr insnlbl.bin
;
; Test "instruction as label" -- make opcodes legal as labels if
; they are followed by a colon.
;
do: jmp dq+2
dw do, add, sub, dq
add: jmp add-2
sub: jmp do+2
dq: dw $-sub
|