mirror of
https://github.com/verilator/verilator.git
synced 2025-01-07 15:17:36 +00:00
19 lines
358 B
Verilog
19 lines
358 B
Verilog
// DESCRIPTION: Verilator: Test of select from constant
|
|
//
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2012 by Wilson Snyder.
|
|
|
|
module t ();
|
|
|
|
sub #(.Z(0)) sub1 ();
|
|
sub #(.Z(1)) sub2 ();
|
|
sub #(.Z(2)) sub3 ();
|
|
|
|
endmodule
|
|
|
|
module sub;
|
|
parameter Z = 0;
|
|
wire [1:0] a = 2'b11;
|
|
wire [0:0] b = a;
|
|
endmodule
|