verilator/test_regress/t/t_vlt_match_error.v
2024-08-11 21:04:46 +02:00

24 lines
582 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2024 by Ethan Sifferman.
// SPDX-License-Identifier: CC0-1.0
module DECLFILENAME;
logic UNUSEDSIGNAL;
logic [0:1] ASCRANGE_UNDRIVEN;
always_comb begin
case (ASCRANGE_UNDRIVEN)
2'b0x: UNUSEDSIGNAL = 1;
endcase
end
`ifdef T_VLT_MATCH_ERROR_1
import hi::*;
`elsif T_VLT_MATCH_ERROR_2
initial $readmemh("", EC_ERROR);
`elsif T_VLT_MATCH_ERROR_3
initial #1;
`endif
endmodule