/usr/share/doc/nasm/examples/loopoffs.asm is in nasm 2.10.09-1ubuntu0.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=unoptimized; Arguments=-fbin -oloopoffs.bin -O0; Files=stdout stderr loopoffs.bin
;Testname=optimized; Arguments=-fbin -oloopoffs.bin -Ox; Files=stdout stderr loopoffs.bin
bits 16
delay: loop delay
loop $
delay2: a32 loop delay2
a32 loop $
delay3: loop delay3,ecx
loop $,ecx
delay4: a32 loop delay4,ecx
a32 loop $,ecx
|