iverilog/ivtest/vhdl_tests/partpv.v

16 lines
201 B
Verilog

// This test is intended to generate a IVL_LPM_SELECT_PV
// in the `b' port map
module top;
wire [7:0] foo;
bot b( .q(foo[3:0]) );
endmodule // top
module bot(q);
output [3:0] q;
endmodule