From 5d82af5204a2c9da72cff42c87088d91d9cc5891 Mon Sep 17 00:00:00 2001 From: Anton Blanchard Date: Mon, 9 Sep 2019 11:23:29 +1000 Subject: [PATCH] Silence some loadstore related debug Signed-off-by: Anton Blanchard --- simple_ram_behavioural.vhdl | 4 ---- simple_ram_behavioural_helpers_c.c | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/simple_ram_behavioural.vhdl b/simple_ram_behavioural.vhdl index c39af3e..4279bb1 100644 --- a/simple_ram_behavioural.vhdl +++ b/simple_ram_behavioural.vhdl @@ -40,16 +40,13 @@ begin if rst = '1' then state <= IDLE; ret_ack <= '0'; - report "MEM RST"; else ret_dat := x"XXXXXXXXXXXXXXXX"; -- Active if wishbone_in.cyc = '1' then - report "MEM CYC"; case state is when IDLE => - report "MEM IDLE"; if wishbone_in.stb = '1' then -- write if wishbone_in.we = '1' then @@ -67,7 +64,6 @@ begin end if; end if; when ACK => - report "MEM ACK"; ret_ack <= '0'; state <= IDLE; end case; diff --git a/simple_ram_behavioural_helpers_c.c b/simple_ram_behavioural_helpers_c.c index 0a70533..c5678e7 100644 --- a/simple_ram_behavioural_helpers_c.c +++ b/simple_ram_behavioural_helpers_c.c @@ -9,7 +9,7 @@ #include #include -#define DEBUG +#undef DEBUG #define ALIGN_UP(VAL, SIZE) (((VAL) + ((SIZE)-1)) & ~((SIZE)-1))