2 use ieee.std_logic_1164.all;
3 use ieee.numeric_std.all;
10 SIM : boolean := false
15 d_in : in Decode2ToCrFileType;
16 d_out : out CrFileToDecode2Type;
18 w_in : in WritebackToCrFileType;
21 sim_dump : in std_ulogic;
23 log_out : out std_ulogic_vector(12 downto 0)
27 architecture behaviour of cr_file is
28 signal crs : std_ulogic_vector(31 downto 0) := (others => '0');
29 signal crs_updated : std_ulogic_vector(31 downto 0);
30 signal xerc : xer_common_t := xerc_init;
31 signal xerc_updated : xer_common_t;
32 signal log_data : std_ulogic_vector(12 downto 0);
34 cr_create_0: process(all)
35 variable hi, lo : integer := 0;
36 variable cr_tmp : std_ulogic_vector(31 downto 0) := (others => '0');
41 if w_in.write_cr_mask(i) = '1' then
44 cr_tmp(hi downto lo) := w_in.write_cr_data(hi downto lo);
48 crs_updated <= cr_tmp;
50 if w_in.write_xerc_enable = '1' then
51 xerc_updated <= w_in.write_xerc_data;
59 cr_write_0: process(clk)
61 if rising_edge(clk) then
62 if w_in.write_cr_enable = '1' then
63 report "Writing " & to_hstring(w_in.write_cr_data) & " to CR mask " & to_hstring(w_in.write_cr_mask);
66 if w_in.write_xerc_enable = '1' then
67 report "Writing XERC";
74 cr_read_0: process(all)
76 -- just return the entire CR to make mfcrf easier for now
77 if d_in.read = '1' then
78 report "Reading CR " & to_hstring(crs_updated);
80 d_out.read_cr_data <= crs_updated;
81 d_out.read_xerc_data <= xerc_updated;
84 sim_dump_test: if SIM generate
87 if sim_dump = '1' then
88 report "CR 00000000" & to_hstring(crs);
89 assert false report "end of test" severity failure;
96 if rising_edge(clk) then
97 log_data <= w_in.write_cr_enable &
98 w_in.write_cr_data(31 downto 28) &
104 end architecture behaviour;