This may work in simulation but is not necessarily synthesizable. In hardware (i.e. on the FPGA), if you desire a register to be initialized to a certain value a flip-flop with a reset is needed. However, in certain scenarios, a reset may not be needed if all the inputs that create this signal initialize to known values.
Action items for this issue:
See if this synthesizes onto the FPGA
Think through if it is necessary to initialize these regs
If it is not, necessary remove the initialize
If it is, consider how to add into a flip-flop with a reset
Lines 33 and 34 state:
This may work in simulation but is not necessarily synthesizable. In hardware (i.e. on the FPGA), if you desire a register to be initialized to a certain value a flip-flop with a reset is needed. However, in certain scenarios, a reset may not be needed if all the inputs that create this signal initialize to known values.
Action items for this issue:
reg
s