serparser.vhd

来自「fpga实现OFDM的源代码 并且配有各个部分的详细说明」· VHDL 代码 · 共 56 行

VHD
56
字号
library IEEE;use IEEE.STD_LOGIC_1164.all;use IEEE.STD_LOGIC_ARITH.all;use IEEE.STD_LOGIC_UNSIGNED.all;--  Uncomment the following lines to use the declarations that are--  provided for instantiating Xilinx primitive components.--library UNISIM;--use UNISIM.VComponents.all;entity serparser is  port (         clk : in  std_logic;        rst : in  std_logic; 		  a : in  std_logic;        b : out std_logic);end serparser;architecture serparser of serparser is  component parallel    port (      clk    : in  std_logic;      rst    : in  std_logic;      input  : in  std_logic;      output : out std_logic_vector(1 downto 0));  end component;  component serial    port (      clk    : in  std_logic;      rst    : in  std_logic;      input  : in  std_logic_vector(1 downto 0);      output : out std_logic);  end component;  signal aux : std_logic_vector(1 downto 0);begin  parallel_1 : parallel    port map (      clk    => clk,      rst    => rst,      input  => a,      output => aux);  serial_1 : serial    port map (      clk    => clk,      rst    => rst,      input  => aux,      output => b);end serparser;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?