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 ketanlad_18

  1. K

    Xst:2734 - Property "use_dsp48" is not applicable for this technology.

    [code] library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity post_normalize is generic(wE:positive:=6; wF:positive:=13); Port ( ck,rst:in std_logic; a : in STD_LOGIC_VECTOR (wF-1 downto 0)...
  2. K

    FILE usage in xilinx ISE Software giving errors

    first make a test bench.after that in test bench file after each input line write command for write in file try this
  3. K

    Xst:2371 - HDL ADVISOR - Logic functions respectively driving the data and gate enabl

    hi,thanks for suggestion i replaced following portion of code. p2:process(clk,n_diff_i,nA_e,nB_e,s,co,rst,nB_f) begin n_diff_i<=conv_integer(nA_e-nB_e); if rst='1' then co<=a1; elsif rst='0' and clk='1' then if n_diff_i=0 then co<=a2; elsif n_diff_i>0 and n_diff_i<13 then co<=a3; else co<=a1...
  4. K

    Xst:2371 - HDL ADVISOR - Logic functions respectively driving the data and gate enabl

    hi,i am writing the code for right shift.it is synthesis without error.but several warnings are generated.warnings are stated after code.please give me idea to remove this error. library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity...
  5. K

    this is my code for fir filter.i want write the output in "to_file" text file.

    this is my code for fir filter.i want write the output in "to_file" text file. library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; USE IEEE.STD_LOGIC_TEXTIO.ALL; use std.textio.all; --use work.utils_pkg.all; library work; use...

Part and Inventory Search

Back
Top