On page 36 of Verilog HDL: A Guide to Digital Design and Synthesis by Samir Palnitkar, it says, arrays "are allowed in Verilog for reg, integer, time, and vector register data types." As an example, it declared an integer array with integer count[0:7];. How would one initialize array (count) with a set of values?
I've scoured that book looking for pointers on how to initialize (count), but I can't find anything to help me.
Is the solution as simple as coding, integer count[0:7] = { 2, 3, 5, 7, 11, 13, 17, 19 };?