3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 00:55:32 +00:00

Allow combination of rand and const modifiers

This commit is contained in:
Zachary Snow 2021-01-21 08:30:55 -07:00
parent 699a98b265
commit 1096b969ef
3 changed files with 19 additions and 2 deletions

View file

@ -0,0 +1,8 @@
module top;
rand const reg rx;
const reg ry;
rand reg rz;
rand const integer ix;
const integer iy;
rand integer iz;
endmodule

View file

@ -0,0 +1 @@
read_verilog -sv rand_const.sv