mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-02 21:48:38 +02:00
Check various different scenarios for array compatibility in continuous array assign. Both testing cases that should work and cases that should fail. Signed-off-by: Lars-Peter Clausen <[email protected]>
17 lines
337 B
Verilog
17 lines
337 B
Verilog
// Check that continuous assignment of two compatible arrays is supported, even
|
|
// if the element types are not identical and one is a built-in integer and the
|
|
// other a equivalent packed type.
|
|
|
|
module test;
|
|
|
|
wire signed [31:0] x[1:0];
|
|
wire integer y[1:0];
|
|
|
|
assign x = y;
|
|
|
|
initial begin
|
|
$display("PASSED");
|
|
end
|
|
|
|
endmodule
|