verilator/test_regress/t/t_alw_sen_compare.v

24 lines
440 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2025 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
module top;
sub inst (
.a({128{1'b1}}),
.b({128{1'b1}})
);
endmodule
module sub (
a,
b
);
input [127:0] a;
input [127:0] b;
always @(a or b) begin
$display("doesn't matter");
end
endmodule