eFEX firmware  1.7.3
ATLAS l1-calo - electron and tau feature extraction firmware for eFEX boards

Back to eFEX documentation
Regsync_logic.vhd
Go to the documentation of this file.
1 
6 
7 
8 library IEEE;
9 use IEEE.STD_LOGIC_1164.all;
10 use IEEE.NUMERIC_STD.all;
12 
13  entity RegSyncLogic is
14  port (
16  DataIn: in std_logic_vector(227 downto 0);
18  DataOut: out std_logic_vector(227 downto 0)
19 
20  );
21  end RegSyncLogic;
23 ----------------------------------------------------------------------------------------------------
24 Architecture struct of RegSyncLogic is
25 ----------------------------------------------------------------------------------------------------
26 -- Nothing much here....
27 
28 ----------------------------------------------------------------------------------------------------
29 Begin
30 DataOut <= DataIn;
31 
32 
33 End struct;
34 
35 
36 
37 
38 
39 
40 
41 
42 
43 
44 
regsynch logic
regsynch logic
in DataIn std_logic_vector( 227 downto 0)
data in
out DataOut std_logic_vector( 227 downto 0)
data out