This file is indexed.

/usr/share/tkgate/primitives/div.v is in tkgate-data 2.0~b10-4.

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
module div #(.Dab_q(1), .Dab_r(1)) (A, B, Q, R);
   input  ${ABQR_RANGE} A,B;
   output ${ABQR_RANGE} Q,R;
   
   assign #Dab_q Q = ${invQ} (A / B);
   assign #Dab_r R = ${invR} (A % B);

endmodule   // div