A simple vhdl fir description.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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