// 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 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
);
intcyc=0;
logica_high=1'b1;
logica_low=1'b0;
logica_drop=1'b1;
// Weak always [m:$] is a pure safety property: it has no end-of-trace
// obligation, so it can only fail (else fires), once per failing tick.