mirror of
https://github.com/verilator/verilator.git
synced 2025-01-09 08:07:46 +00:00
85356f464f
Signed-off-by: Arkadiusz Kozdra <akozdra@antmicro.com>
37 lines
660 B
Systemverilog
37 lines
660 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
// any use, without warranty, 2023 by Antmicro Ltd.
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
class Packet;
|
|
rand int rf;
|
|
int state;
|
|
|
|
constraint c { rf == state; }
|
|
|
|
endclass
|
|
|
|
module t (/*AUTOARG*/);
|
|
|
|
Packet p;
|
|
|
|
int v;
|
|
|
|
initial begin
|
|
p = new;
|
|
p.state = 123;
|
|
v = p.randomize();
|
|
if (v != 1) $stop;
|
|
if (p.rf != 123) $stop;
|
|
|
|
p.state = 234;
|
|
v = p.randomize();
|
|
if (v != 1) $stop;
|
|
if (p.rf != 234) $stop;
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
endmodule
|