1module buf #(.Diz(1)) (I, Z);
2   input ${IZ_RANGE} I;
3   output ${IZ_RANGE} Z;
4
5   assign #Diz Z = ${invZ}I;
6
7endmodule // buf
8