Documentation for architecture MROD_X_Out/Fifo512w32/a0
VHDL Contents
1 architecture a0 of Fifo512w32 is
23
24 component scfifo_512x32
25 port (
26 clk: IN std_logic;
27 din: IN std_logic_VECTOR(31 downto 0);
28 rd_en: IN std_logic;
29 rst: IN std_logic;
30 wr_en: IN std_logic;
31 data_count: OUT std_logic_VECTOR(8 downto 0);
32 dout: OUT std_logic_VECTOR(31 downto 0);
33 empty: OUT std_logic;
34 full: OUT std_logic);
35 end component;
36
37 signal Rst_Internal: Std_Logic;
38
39 begin
40
41 Rst_Internal <= not Rst_n;
42
43 uc1: scfifo_512x32
44 port map (
45 clk => Clk,
46 din => Data,
47 rd_en => RdReq,
48 rst => Rst_Internal,
49 wr_en => WrReq,
50 data_count => UsedW,
51 dout => Q,
52 empty => Empty,
53 full => Full
54 );
55
56 end architecture a0 ;