How to assign each bus bit from a schematic to board pin?
Hello everyone,
I'm trying to connect these pins I have inside a schematic ( images "input" and "ouput" ) to corresponding pins in my board, as shown in the "code verilog" image. The names "bMKR_A" and "bMKR_D" are the board's pins and they're already declared, the board is Arduino MKR Vidor 4000.
Problems is I can't seem to access the bits or parts of the vector inside of each bus to the corresponding pin. My only issue here is the ".ENTRADA[0]" part of the ".ENTRADA[0] (bMKR_A [0])," like lines, I know the rest is correct due to trial and error, but I don't know how to assign each individual bus.
What am I missing? Do I need to declare ENTRADA and SAIDA like
wire [7:0] ENTRADA;
wire [11:0] SAIDA;
before I access them? Because I did that and I still get the same error in line 173.
Thanks in advance for anyone taking the time to read this,
Ricardo Neto