Files of a 5*2^n VHDL entity using Winograd5 and radix2 implementations
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

14 satır
253B

  1. LIBRARY ieee;
  2. USE ieee.std_logic_1164.ALL;
  3. USE ieee.numeric_std.ALL;
  4. USE work.FIVEn_DFT_PKG.ALL;
  5. PACKAGE simu_pkg IS
  6. TYPE donnee_sortie IS ARRAY (0 TO 2*cst_nb_samples_in_5ndft-1) OF integer;
  7. CONSTANT w_x_simu : natural := 8;
  8. END;