2017-10-25 04:56:58 +02:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
2026-01-27 02:24:34 +01:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain.
|
|
|
|
|
// SPDX-FileCopyrightText: 2017 Wilson Snyder
|
2020-03-21 16:24:24 +01:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2017-10-25 04:56:58 +02:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
module t (
|
|
|
|
|
input clk
|
|
|
|
|
);
|
2017-10-25 04:56:58 +02:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
reg [95:0] wide;
|
2017-10-25 04:56:58 +02:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
initial begin
|
|
|
|
|
// internal code coverage for _vl_debug_print_w
|
|
|
|
|
wide = {32'haa, 32'hbb, 32'hcc};
|
|
|
|
|
$c("_vl_debug_print_w(", $bits(wide), ", ", wide, ");");
|
|
|
|
|
end
|
2021-03-07 19:52:37 +01:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
// Test loop
|
|
|
|
|
always @(posedge clk) begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
2017-10-25 04:56:58 +02:00
|
|
|
|
|
|
|
|
endmodule
|