12 lines
117 B
Coq
12 lines
117 B
Coq
|
|
module test();
|
||
|
|
wire d;
|
||
|
|
wire [5:0] f;
|
||
|
|
b u1 (.c({d, f}));
|
||
|
|
endmodule
|
||
|
|
|
||
|
|
module b (c);
|
||
|
|
|
||
|
|
output [6:0] c;
|
||
|
|
|
||
|
|
endmodule
|