2026-06-05 15:35:01 +02:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain.
|
|
|
|
|
// SPDX-FileCopyrightText: 2024 Wilson Snyder
|
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
2026-06-06 00:36:55 +02:00
|
|
|
module t (
|
|
|
|
|
input clk
|
|
|
|
|
);
|
2026-06-05 15:35:01 +02:00
|
|
|
class Packet;
|
|
|
|
|
int m_z;
|
|
|
|
|
int m_x;
|
|
|
|
|
covergroup cov1 @m_z;
|
|
|
|
|
coverpoint m_x;
|
|
|
|
|
endgroup
|
|
|
|
|
endclass
|
|
|
|
|
initial begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
|
|
|
|
endmodule
|