1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-04-15 23:51:40 +00:00

Move debug execute output into decode2

This covers all units, and we avoid double printing.

Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
Anton Blanchard
2019-09-10 15:02:18 +10:00
committed by Anton Blanchard
parent 92a7152370
commit a8f8c54b77
3 changed files with 9 additions and 7 deletions

View File

@@ -188,6 +188,15 @@ begin
decode2_0: process(clk)
begin
if rising_edge(clk) then
if rin.e.valid = '1' then
report "execute " & to_hstring(rin.e.nia);
end if;
if rin.l.valid = '1' then
report "execute " & to_hstring(rin.e.nia);
end if;
if rin.m.valid = '1' then
report "execute " & to_hstring(rin.e.nia);
end if;
r <= rin;
r_int <= rin_int;
end if;

View File

@@ -79,8 +79,6 @@ begin
v.e.valid := '1';
v.e.write_reg := e_in.write_reg;
report "execute " & to_hstring(e_in.nia);
case_0: case e_in.insn_type is
when OP_ILLEGAL =>

View File

@@ -28,11 +28,6 @@ begin
begin
if rising_edge(clk) then
l <= l_in;
if l_in.valid = '1' then
report "execute " & to_hstring(l_in.nia);
end if;
end if;
end process;