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 palai_santosh

  1. P

    small memory is taking 47% of a 1.8MillionGates Xilinx chip!

    I think you are well aware of the problem of using Distributed Memories. looks like a coding issue. Is if statements are intentional?? Imagine the case when two or more write ports want to write. Its trying to infer 1K+ flops to make this reg file... Added after 1 hours 9 minutes: Just to...
  2. P

    small memory is taking 47% of a 1.8MillionGates Xilinx chip!

    whats the value of "rg_data_width" & "rg_data_width"?
  3. P

    Xilinx ISE9.1 testbench written using verilog

    Xilinx ISE9.1 Yes , you can write . By the way what kind of test parameters you are going to use? you may not get all the features of verification. But you can easyly simulate designs ( relatively small designs) in ISESim.
  4. P

    How to determine number of clock/global lines using Xilinx?

    why can't it direct assign the GCLK pin to DCM instead? You can connect it directly . but to do that you have to instanciate the DCM primitive in your code and connectt he pin. On the other hand if you use the architecture wizzard , it will instantiate an IBUFG in between your GCLK pin and the...
  5. P

    How to determine number of clock/global lines using Xilinx?

    GCLK pins are the "Global clock pins" you can feed an external clock signal to FPGA using these pins , both in single ended and differential modes. Ex. In xilinx ML555 board a 30 MHz clock input is used on GCLK pin(L19). Once the clock signal is inside the FPGA you can used BUFG and pass it to...
  6. P

    Need Help in compiling VHDL using XILINX ise 9.2i

    As Farhad said when you write like this its like driving a fip-flop with 2 clocks. From the look of it , what i can see is the SET signal not required to be edge sensitive. You can try somethign like this ( it will synthesize). if you want it to be asynchronous set then you can do something...
  7. P

    time measurement in simulation

    Most of the simulators will show you. by the way what you want to measure exactly??
  8. P

    how to convert std_logic_vector to integer

    You can try this use IEEE.std_logic_signed.all; CONV_INTEGER();
  9. P

    How to determine number of clock/global lines using Xilinx?

    Can you tell me exactly what you are looking for? Xilinx FPGAs has internal GLOBAL routing lines . There are certain pins dedicated to connect clock ( xtal) to the FPGA. You can see those in FPGA editor . If you are using ISE11+ then use PlanAhead.
  10. P

    modelsim script to select signal

    yes , you can try something like this. after the VSIM .... write something like this view wave add wave -noupdate -format Logic -label clk /top_tb/top_DUT/CLK0_OUT for more information on this commnad you can refer to the modelsim reference manual.
  11. P

    Need information and tutorials on lms/rls filters

    lms/rls filters you can just google for some tutorials on lms filter. Its very simple to simulate an lms filter using matlab, you can start with it.
  12. P

    Is xilinx infer arrays used in code to BRAM or DRAM?

    it entirely depends on the size of the array and the coding style sometime. Block ram is the dedicated ram blocks inside the fpga. Distributed ram is basically using those Luts,SRL16 and flops in the CLBs. block ram can operate faster than the distributed ram.
  13. P

    Help~~complexsignal in System Generator

    i am bit confuged after looking at your block diagram. Based on it i am commenting few things. 1. system generator will do the hdl sysnthesis fpr you on only the blocks you placed between "gateway in" and "gateway out". rest of all modules considered as black box. 2. the module you are...
  14. P

    need help mimo Vs. BER MATLAB code

    where can i get matlab code for mimo Did you see the pdf file inside the folder. it has the gist of theory related. The code is also commented well.
  15. P

    Help~~complexsignal in System Generator

    Can you tell more about your system or may be a block diagram of it. Its possible to do it.

Part and Inventory Search

Back
Top