mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 12:12:39 +00:00
Documentation states that minimum of all reported coverage of all signals in a line should be taken. Previous logic would break if there were any signals with zero coverage followed by signals with nonzero coverage - a minimum from those nonzero toggle count would be taken, disregarding zero coverage of previous signals. Internal-tag: [#62193] Signed-off-by: Krzysztof Obłonczek <koblonczek@antmicro.com>
23 lines
587 B
Systemverilog
23 lines
587 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// Copyright 2024 by Antmicro. This program is free software; you can
|
|
// redistribute it and/or modify it under the terms of either the GNU
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
// Version 2.0.
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
|
|
module t();
|
|
logic[1:0] a;
|
|
logic[1:0] b;
|
|
logic[1:0] c;
|
|
|
|
initial begin
|
|
#1 a = 2'b01;
|
|
#1 b = 2'b10;
|
|
#1 c = 2'b11;
|
|
#1 c = 2'b10;
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
endmodule
|