Remove noisy debugs.
authorTim Newsome <tim@sifive.com>
Thu, 16 Feb 2017 22:15:44 +0000 (14:15 -0800)
committerTim Newsome <tim@sifive.com>
Thu, 16 Feb 2017 22:15:44 +0000 (14:15 -0800)
This version was able to download code, and run to a breakpoint.

riscv/debug_module.cc

index af719746a286495a3caf946e9a4161653223f056..5298b3309c8ff3eda57688bdbd8814b977a47a7d 100644 (file)
@@ -22,9 +22,6 @@ debug_module_data_t::debug_module_data_t()
 
 bool debug_module_data_t::load(reg_t addr, size_t len, uint8_t* bytes)
 {
-  D(fprintf(stderr, "debug_module_data_t load 0x%lx bytes at 0x%lx\n", len,
-        addr));
-
   if (addr + len < sizeof(data)) {
     memcpy(bytes, data + addr, len);
     return true;
@@ -111,8 +108,6 @@ void debug_module_t::add_device(bus_t *bus) {
 
 bool debug_module_t::load(reg_t addr, size_t len, uint8_t* bytes)
 {
-  D(fprintf(stderr, "debug_module_t load 0x%lx bytes at 0x%lx\n",
-        len, addr));
   addr = DEBUG_START + addr;
 
   if (addr >= DEBUG_ROM_ENTRY &&