Files
sv2v/test/core/struct_array_param.v

9 lines
198 B
Verilog
Raw Permalink Normal View History

2019-08-06 23:11:06 -04:00
module top;
2021-02-19 15:04:23 -05:00
parameter foo_1 = { 3'b010, 2'b01, 4'b0000 };
parameter foo_0 = { 3'b001, 2'b00, 4'b0010 };
2019-08-06 23:11:06 -04:00
initial begin
$display(foo_0);
$display(foo_1);
end
endmodule