python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Constrain total number of array elements less than predetermined value
I'm trying to create an array with a constraint on the total number of array elements less than given value. For example, I want to generate a random array where the total number of elements less than...
mdems
Votes: 0
Answers: 2
Does Verilator support SystemVerilog libraries?
When compiling RTL from multiple sources it is normal to compile them into separate SystemVerilog libraries. Doing this means they cannot interfere with each other, and you can compile multiple diffe...
WestHamster
Votes: 0
Answers: 1
Can you import a vhdl package in a systemverilog file?
Can you import a vhdl package in a systemverilog file?
Let's say I have a VHDL package:
library ieee;
use ieee.std_logic_1164.all;
-- FILE: my_pkg.vhd
package my_pkg is
type ty...

pico
Votes: 0
Answers: 2
Are SystemVerilog packed arrays row or column major for literal assignment?
I want to use multi-dimensional arrays for some SystemVerilog code that I intend to synthesize. My understanding is that packed arrays are essentially a big vector that can be indexed slice or element...

darsnack
Votes: 0
Answers: 1