verilator/test_regress/t/t_flag_xinitial_unique.v

23 lines
443 B
Systemverilog
Raw Normal View History

2017-10-02 03:31:40 +02:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2017 Wilson Snyder
// SPDX-License-Identifier: CC0-1.0
2017-10-02 03:31:40 +02:00
2026-03-08 23:26:40 +01:00
module t ( /*AUTOARG*/
// Outputs
value,
value2
);
2017-10-02 03:31:40 +02:00
2026-03-08 23:26:40 +01:00
output reg [63:0] value;
output wire [64:0] value2;
2026-03-08 23:26:40 +01:00
assign value2 = {8'bx, 57'h12};
2017-10-02 03:31:40 +02:00
2026-03-08 23:26:40 +01:00
initial begin
$write("*-* All Finished *-*\n");
$finish;
end
2017-10-02 03:31:40 +02:00
endmodule