X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=riscv%2Fdebug_module.cc;h=533b959b9d3cf487b70910189f60482229185acc;hb=51a8a43d747c8e182dbcb63f602c6e27df30c276;hp=62671f67a25c8cc6b343e109b0ea9f4ec3ce1f0b;hpb=4e768d4afc8e60adb306478257c9ecbba539b958;p=riscv-isa-sim.git diff --git a/riscv/debug_module.cc b/riscv/debug_module.cc index 62671f6..533b959 100644 --- a/riscv/debug_module.cc +++ b/riscv/debug_module.cc @@ -126,7 +126,9 @@ bool debug_module_t::store(reg_t addr, size_t len, const uint8_t* bytes) } if (addr >= debug_progbuf_start && ((addr + len) <= (debug_progbuf_start + sizeof(program_buffer)))) { + fprintf(stderr, "Successful write to program buffer %d bytes at %x\n", (int) len, (int) addr); memcpy(program_buffer + addr - debug_progbuf_start, bytes, len); + return true; } @@ -213,7 +215,7 @@ bool debug_module_t::dmi_read(unsigned address, uint32_t *value) perform_abstract_command(); } } else if (address >= DMI_PROGBUF0 && address < DMI_PROGBUF0 + progsize) { - unsigned i = address = DMI_PROGBUF0; + unsigned i = address - DMI_PROGBUF0; result = read32(program_buffer, i); if ((abstractauto.autoexecprogbuf >> i) & 1) { perform_abstract_command();