Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by Nuclear_Carlson

  1. N

    Multidimensional array of registers with initialization

    Excuse me, I meant — what was the difference between this Does not synthesize module Top ( input CLK50, output reg[5:0][6:0] HEX ); initial begin genvar i; generate for(i = 0; i < 6; i++) begin: test HEX[i][6:0] = 7'b101_0101; end endgenerate end endmodule and...
  2. N

    Multidimensional array of registers with initialization

    Thank you, comrade! It worked! P.S. Cannot you also tell me the difference between the two designs? Works: module Top ( input CLK50, output reg[6:0] HEX[5:0] ); integer i; initial begin for(i = 0; i < 6; i++) begin HEX[i][6:0] = 7'b101_0101; end end endmodule Fails...
  3. N

    Multidimensional array of registers with initialization

    I have some Verilog module with multidimensional outputs (to 7-segment LED panels of my DE1-SoC). I want to make the outputs registered. To test it, I give some dummy code to one of LED digits. Its RTL simulation passes OK, it's even compiled by Quartus, but actually it does not work. module...
  4. N

    Looking for a Compact Flash controller core. Who has one?

    I have to use a COmpact Flash card in my FPGA project as a data storage drive. Also i have to write the data in the UDMA mode on the speed near 30 Mbytes/sec. What solution can you advice?

Part and Inventory Search

Back
Top