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 gnoble29

  1. G

    [SOLVED] Array instantiation in verilog

    Thanks ads_ee for your quick reply. Can you explain little bit about array to bus conversion and its implementation in verilog?
  2. G

    [SOLVED] Array instantiation in verilog

    My sub module will be as follows Module sub(input clk, input rst, output reg a[0:10]); reg i; always @(posedge clk) begin for (i=0;i<10;i=i+1) begin a[i]=1’b0; end end endmodule My aim is to initialize an array to zero by using submodule. But I am not able to pass the array since it...
  3. G

    [SOLVED] Array instantiation in verilog

    How can I instantiate an array in verilog? For example, I Have an array a[0:10] in my top module.I want to pass this a[0:10] into another submodule. How it is possible? I tried like this but showing error. module top { input clk, input rst }; wire a[0:10]; sub dut( . clk(clk)...
  4. G

    width of program counter

    Can any one clearly define the address bus and data bus width required for a 32 bit processor? What about the program counter size?
  5. G

    Difference between Resonant Body Transistor and Resonant Gate transistor

    Can anyone explain the difference between Resonant Body Transistor and Resonant Gate transistor.
  6. G

    Voltage Dropping in digital circuit

    During integration of different parts of my digital circuit,the output voltage of one section [which needs to drive an nmos] is dropping from1.8v to 0.4v.How can I avoid this?
  7. G

    clock skew problems after the implementation of ASIC

    I heard that temperature is having some role in the clock skew even after STA. Is it true??
  8. G

    clock skew problems after the implementation of ASIC

    I have a basic doubt about clock skew.Consider during manufacturing time ,I have optimized my design for minimum clock skew.Is there any chance for occurring the skew again in real time working of the ASIC?
  9. G

    slice delay product in xilinx

    Anyone can plz tell me what is the meaning of slice delay product??How to calculate slice delay product in Xilinx ?
  10. G

    Simulate a digital to analog converter in ModelSim

    Is there a way to simulate a digital to analog converter in ModelSim????? I have my Verilog code that produces the 16 bit input to a DAC . It would be really nice if I could somehow see the analog waveform in simulation...
  11. G

    [SOLVED] multiple assignments in verilog

    thankyou sir...I changed <= to =....Now its working in single clock..
  12. G

    [SOLVED] multiple assignments in verilog

    I have written the following verilog codes.....The first one will execute in one clock cycle......But due to multiple assignments of variable ,the second code is not executing in one clock cycle.....Can anyone suggest any method so that the second code also will execute fully in one clock...
  13. G

    for loop in verilog code

    In my design all the iterations of for loop is executing in one clock edge.... I want a for loop which will execute one iteration in one clock edge...That means in first rising edge of clock,it should execute first iteration of for loop.In second rising edge of clock,it should execute 2nd...
  14. G

    for loop in verilog code

    Actually above code is only a sample...I want to include a block of statements in each iteration that i want to execute sequentially in each clock cycle..If i go for state machine i want to replicate my code for each state and code length become very large...Thats why i am asking about for...
  15. G

    for loop in verilog code

    ok..then how can i modify the above program so that the for loop will execute only one iteration for each clock..... PLZ help me....thanks for ur reply

Part and Inventory Search

Back
Top