Relative Content

Tag Archive for verilogsystem-verilog

Synthesizable Verilog to dual write a 1-D flop array

I’d like some Verilog (for synthesis) advice. I need dual writes to a 1-D array of flops. Both writes can occur on the same clock, and the write addresses will never be the same when the write enables are asserted.

Verilog: Wire conditionally instantiated with generate is not visible later

I’m seeing failing errors both from iverilog and verilator in a module which has a wire instantiated based on a condition. This was originally happening in a SystemVerilog module I got from someone else who had apparently successfully simulated and synthesized the code with Xilinx tools. I’ve created a much simpler verilog example that exhibits the same problem.

Verilog: Wire conditionally instantiated with generate is not visible later

I’m seeing failing errors both from iverilog and verilator in a module which has a wire instantiated based on a condition. This was originally happening in a SystemVerilog module I got from someone else who had apparently successfully simulated and synthesized the code with Xilinx tools. I’ve created a much simpler verilog example that exhibits the same problem.

fully connected layer in system verilog

I’ve built a neural network with 3 fully connected layers using the ReLU activation function. However, the output values are nonsensical, and I can’t access or analyze them properly. Additionally, the ‘fc_complete’ signal doesn’t appear to be functioning.
even half_sum is also showing unknown values.