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 a_k_s

  1. A

    Handling strings in verilog

    Hi Fvm, ya i was talking about the same thing. I got a code regarding the same. module add3(in,out); input [3:0] in; output [3:0] out; reg [3:0] out; always @ (in) case (in) 4'b0000: out <= 4'b0000; 4'b0001: out <= 4'b0001; 4'b0010: out <= 4'b0010; 4'b0011: out <= 4'b0011; 4'b0100: out <=...
  2. A

    Handling strings in verilog

    Hi, I am new to verilog coding. I have a problem in handling strings. In my implementation I will receive a parameter value from DSP to my FPGA as 32'd58710000, I have to convert each digit to ASCII and send to another module. like 5 = 35 in ascii 8 = 38 in ascii and so on. My problem...

Part and Inventory Search

Back
Top