3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 09:04:08 +00:00
yosys/tests/various/rand_const.sv
2021-01-21 08:42:05 -07:00

9 lines
132 B
Systemverilog

module top;
rand const reg rx;
const reg ry;
rand reg rz;
rand const integer ix;
const integer iy;
rand integer iz;
endmodule