Silence some loadstore related debug
authorAnton Blanchard <anton@linux.ibm.com>
Mon, 9 Sep 2019 01:23:29 +0000 (11:23 +1000)
committerAnton Blanchard <anton@ozlabs.org>
Mon, 9 Sep 2019 01:23:29 +0000 (11:23 +1000)
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
simple_ram_behavioural.vhdl
simple_ram_behavioural_helpers_c.c

index c39af3e59ace789fdafab98b210dc35167f79f70..4279bb1994205f1c5a2fd71c155edd31a459515a 100644 (file)
@@ -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;
index 0a70533596d335e64b4ab566fdb19f32eea4cc66..c5678e72d0e511cb6f6d1c99c936e26f46202d5e 100644 (file)
@@ -9,7 +9,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 
-#define DEBUG
+#undef DEBUG
 
 #define ALIGN_UP(VAL, SIZE)    (((VAL) + ((SIZE)-1)) & ~((SIZE)-1))