26 lines
646 B
Systemverilog
26 lines
646 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed under the Creative Commons Public Domain
|
|
// SPDX-FileCopyrightText: 2026 Matthew Ballance
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
// Test basic functional coverage infrastructure
|
|
|
|
module t;
|
|
/* verilator lint_off UNSIGNED */
|
|
int addr;
|
|
int cmd;
|
|
|
|
// For now, this is just a placeholder until parser support is added
|
|
// We'll test the runtime infrastructure directly from C++
|
|
|
|
initial begin
|
|
addr = 10;
|
|
cmd = 1;
|
|
$display("Test placeholder for functional coverage");
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
|
|
endmodule
|