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 samuel_raja_77

  1. S

    is internal memory allowed in FPGA

    1.Does these ROM and RAM need to be codded as a separate module .........i.e. if i have a RAM of 2K is it strict to be placed as a separate module or i can use them in my already existing module with another always block...... 2.if i have a RAM within in the module as another always block how...
  2. S

    is internal memory allowed in FPGA

    i need to have memory in my design is it possible to have internal memory of some 10K in fpga or we need to have only external memory ........i am using xilinx version 8.1i and the device i choose is virtex - II pro xc2vp7 which has the 11,088 logic cells 792 BRAM(Kbits) 44 (18X18)...
  3. S

    accesing memory from two always block

    1.The reason is to keep the data that is to be read from external memory internally and process it.....instead of going to external memory each time...so we can reduce clocks........ 2.Is this process which i described can be used without any back end problems......
  4. S

    accesing memory from two always block

    1.i have internal memory in my design which is filled in with the data from the external memory.....this process is done in an always block 2.after filling in the internal memory with data..... there is an another always block which will be refreshing the internal memory ......i.e the data...
  5. S

    maintaining more modules in verilog

    1.i need to enable module2 from module1 and.....after finishing some operation i need to disable the module2 from processing .....and continue the manipulation in module1 2.i tried like giving an enable signal [en_1 o/p from module1] from module1 to module2 such that if that enable signal is...
  6. S

    How to create folder at a specified path by using c++ ?

    Re: foldering in c++ #include <stdlib.h> int main() { int i; for(i=0;i<10;i++) { system ("mkdir %d",i); } } 1.i need to create many folder each name depending on variable is it possible to create with the above code 2.can u suggest me some metod to create many folders the above...
  7. S

    REGARDING memory aceesing in combination always block

    1.is it possible to asses memory in an combinational always block like this always@( a or b or c or d) begin addr=a+1; if( r[addr] == 0) begin e=a-3; end end 2.in this always block the sensitive list doesnot contain the addr which will be generated in the always block only 3.is it right way of...
  8. S

    regarding always block in verilog

    always block verilog 1.is it possible to asses memory in an combinational always block like this always@( a or b or c or d) begin addr=a+1; if( r[addr] == 0) begin e=a-3; end end 2.in this always block the sensitive list...
  9. S

    industry standard test bench

    i.i need a help on how to write a industry standard testbench for my project i 2.Is there any e books available or some other materials what is the standard procedure to be followed
  10. S

    How to implement macros in Verilog?

    Re: macro in verilog IS define synthesizable and what about the usage of parameter instead of define
  11. S

    How to implement macros in Verilog?

    can we have macros as we have in c in verilog too if so how to implement it i have tried to implement using define ...is it good way or any other better way is available i.e. macro(x,n) x & n bit =macro(x,n)
  12. S

    REG case statement in verilog

    case within case 1.can we use a case statement within a case statment like the one described below e.g. case(state2) 1:begin case(state1) 1:begin end 2:begin end...
  13. S

    internal memory in a module

    how to access the internal memory can it be accessed like this in the state machine if(mem[i]==23) begin end or with respect to clock
  14. S

    internal memory in a module

    XILINX xc 2vp7 my doubt is whether we can have the inetrnal memory in our design
  15. S

    Which book is best suited for studying digital electronics?

    morris mano digital electronics free download "digital logic design" by charles roth is good book for counter designs and sequential circuits DIGITAL DESIGN BY marcovitzis new to the market and it is good one

Part and Inventory Search

Back
Top