verilator/test_regress/t/t_tri_eqcase_input.v
2022-08-18 07:03:05 -04:00

21 lines
425 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2022 by Antmicro Ltd.
// SPDX-License-Identifier: CC0-1.0
module t (/*AUTOARG*/
// Inputs
clk
);
input clk;
wire a = 1'bz === clk;
always begin
if (a) begin
$write("*-* All Finished *-*\n");
$finish;
end
end
endmodule