// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2026 PlanV GmbH
// SPDX-License-Identifier: CC0-1.0
// verilog_format: off
`define stop $stop
`define checkh(gotv,expv) do if ((gotv) !== (expv)) begin $write("%%Error: %s:%0d: got=%0x exp=%0x (%s !== %s)\n", `__FILE__,`__LINE__, (gotv), (expv), `"gotv`", `"expv`"); `stop; end while(0);
`define checkd(gotv,expv) do if ((gotv) !== (expv)) begin $write("%%Error: %s:%0d: got=%0d exp=%0d\n", `__FILE__,`__LINE__, (gotv), (expv)); `stop; end while(0);
// verilog_format: on
modulet(
inputclk
);
logic[63:0]crc=64'h5aef0c8dd70a4497;
logicrst_n=1'b0;
logica,b,c,d,e;
intcyc=0;
inthit_simple=0;
inthit_clocked=0;
inthit_clocked_disable=0;
inthit_default_disable=0;
inthit_consrep_range=0;
inthit_consrep_2=0;
inthit_consrep_3=0;
defaultclockingcb@(posedgeclk);
endclocking
// Non-adjacent CRC bits to avoid LFSR shift correlation
assigna=crc[0];
assignb=crc[5];
assignc=crc[10];
assignd=crc[15];
assigne=crc[20];
// Form 1: cover sequence ( sexpr ) stmt
coversequence(a|b|c|d|e)hit_simple++;
// Form 2: cover sequence ( clocking_event sexpr ) stmt