2017-10-25 02:56:58 +00:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
//
|
2020-03-21 15:24:24 +00:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
|
|
// any use, without warranty, 2017 by Wilson Snyder.
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2017-10-25 02:56:58 +00:00
|
|
|
|
|
|
|
module t (/*AUTOARG*/
|
|
|
|
// Inputs
|
|
|
|
clk
|
|
|
|
);
|
|
|
|
|
|
|
|
input clk;
|
|
|
|
|
2021-03-07 18:52:37 +00:00
|
|
|
reg [95:0] wide;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2017-10-25 02:56:58 +00:00
|
|
|
// Test loop
|
|
|
|
always @ (posedge clk) begin
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
$finish;
|
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|