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 Tajwar

  1. T

    clock selection buffer usage

    can anybody help me how to use clock selection buffer for Virtex 6 using clocking wizard?
  2. T

    multiplication of clock by clocking wizard

    Document says "Automatically calculates VCO frequency for primitives with an oscillator, and provides multiply and divide values based on input and output frequency requirements" does it means that i need to fix other parameters (like CLKFB_MULT_F and DIVIDE_DIVCLK) to get the VCO frequency...
  3. T

    multiplication of clock by clocking wizard

    can anybody tell me How to multiply a clock using clocking wizard?
  4. T

    Fixed shift for vertex6

    Can anybody help me how to give fixed shift by clocking wizard for vertex6 ????????
  5. T

    Not getting right output from DCM

    Can any1 help me . y im not getting shifted clock at output? here is the code for it module test(input clk, rst, inc,ref_clk, enable, output reg s_clk1, s_clk2, output done, clk_valid ); wire temp1, temp2; always@(posedge ref_clk) begin if(rst) begin s_clk1<=0...
  6. T

    read/write a file using memory core

    I am using 2nd code. but i m having warnings in it. and when i simulate it. i m not geting anything at output. WARNING:Xst:2211 - "ipcore_dir/memory.v" line 38: Instantiating black box module <memory>. WARNING:Xst:1780 - Signal <memory> is never used or assigned. This unconnected signal will...
  7. T

    read/write a file using memory core

    I am trying to read/ write a file from mem. here is my code. I have an error "" if any1 can help me. ERROR:HDLCompilers:247 - "wr_file.v" line 34 Reference to vector wire 'data_out' is not a legal reg or variable lvalue ERROR:HDLCompilers:106 - "wr_file.v" line 34 Illegal left hand side of...
  8. T

    writng a file in verilog

    I ma trying this code for writing a file but cant include data.v file. I have write data file in a doc and saved it as '.v' file but when i add it to stimulus it givess me error module readmemh_demo; reg [31:0] Mem [0:11]; `include "data.v" integer k; initial begin #10...
  9. T

    how to read a file from verilog

    I am trying this code for reading a text file. but when i simulate it, my output at Mem is XXXXXXXXXX . can any1 help me whr i am rong?? module readmemh_demo; reg [31:0] Mem [0:11]; initial $readmemh("data.txt",Mem); integer k; initial begin #10; $display("Contents of Mem after reading data...
  10. T

    how to read a file from verilog

    can any1 tell me how to read a file in verilog? - - - Updated - - - where do v add data.txt file? as a module or as a test bench ?
  11. T

    How to use DCM output as input

    module phase_freq_sel( input dcm_clk_in, input p_sel0 ,p_sel1, input f_sel0 , f_sel1, output fpga_clk, output clk_90,clk_180, clk_270, output reg slctd_phase, input rst, output reg Out_div_2, output reg Out_div_4, output reg Out_div_8, output reg slctd_freq)...
  12. T

    DCm Variable phase shift

    HEllo all, How can i use output of a shifted clock as a clock input for a new combinational logic??? Im trying to use the 90 degree shifted clock as a clk input for any other logic?? always@(posedge 90clk) begin --- --- end if i do so then my output is unknown. if any1 could help...
  13. T

    Verilog Code for varible shift

    Hello All, I am new to DCM, Can anybdy give me code fr one variable shift?
  14. T

    Verilog code for frequency divider (50 Mhz to 1 kHz)

    Re: verilog code frequency divider Hey i cant get 50 per duty cycle.. how would i in this code??

Part and Inventory Search

Back
Top