otsdaq_prepmodernization  v2_05_02_indev
fake_user_data.vhd
1 ----------------------------------------------------------------------------------
2 -- Company: FNAL
3 -- Engineer: Ryan Rivera
4 --
5 -- Create Date: 13:58:04 11/28/2007
6 -- Design Name:
7 -- Module Name: fake_user_data - Behavioral
8 -- Project Name:
9 -- Target Devices:
10 -- Tool versions:
11 -- Description:
12 --
13 -- Dependencies:
14 --
15 -- Revision:
16 -- Revision 0.01 - File Created
17 -- Additional Comments:
18 --
19 ----------------------------------------------------------------------------------
20 library IEEE;
21 use IEEE.STD_LOGIC_1164.ALL;
22 use IEEE.STD_LOGIC_ARITH.ALL;
23 use IEEE.STD_LOGIC_UNSIGNED.ALL;
24 
25 ---- Uncomment the following library declaration if instantiating
26 ---- any Xilinx primitives in this code.
27 --library UNISIM;
28 --use UNISIM.VComponents.all;
29 
30 entity fake_user_data is
31  Port ( addrs : out STD_LOGIC_VECTOR (7 downto 0);
32  size : out STD_LOGIC_VECTOR (10 downto 0);
33  data : out STD_LOGIC_VECTOR (7 downto 0));
34 end fake_user_data;
35 
36 architecture Behavioral of fake_user_data is
37 begin
38 
39  addrs <= x"03";
40  size <= "000" & x"12";
41  data <= x"50";
42 
43 end Behavioral;
44