1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2024 by Antmicro.
// SPDX-License-Identifier: CC0-1.0
module t (/*AUTOARG*/
// Inputs
clk
);
input clk;
module_with_assert module_with_assert(clk);
module_with_assertctl module_with_assertctl(clk);
always @ (posedge clk) begin
assert(0);
end
always @ (negedge clk) begin
$write("*-* All Finished *-*\n");
$finish;
end
endmodule
module module_with_assert(input clk);
always @(posedge clk) assert(0);
endmodule
module module_with_assertctl(input clk);
function void assert_off; begin
$assertoff;
end
endfunction
function void assert_on; begin
$asserton;
end
endfunction
function void f_assert; begin
assert(0);
end
endfunction
initial begin
assert_on();
assert(0);
assert_off();
assert_off();
assert(0);
assert_on();
assert_on();
assert(0);
f_assert();
f_assert();
assert_off();
f_assert();
f_assert();
end
endmodule
|