From bb7092e96401e4c89c44773c932788c9b0f87b53 Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Mon, 11 Feb 2019 18:40:40 +0100 Subject: Basic "hardware" breakpoints support implemented. It works like real inserted breakpoint on hardware. Breakpoint has to be removed to allow code continue because else instruction is refetch and breakpoint triggers again. The single step function should resolve temporal masking of the breakpoint. Signed-off-by: Pavel Pisa --- qtmips_machine/core.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'qtmips_machine/core.cpp') diff --git a/qtmips_machine/core.cpp b/qtmips_machine/core.cpp index 68dbe0b..7c92949 100644 --- a/qtmips_machine/core.cpp +++ b/qtmips_machine/core.cpp @@ -83,7 +83,7 @@ Core::hwBreak::hwBreak(std::uint32_t addr) { count = 0; } -void Core::inser_hwbreak(std::uint32_t address) { +void Core::insert_hwbreak(std::uint32_t address) { hw_breaks.insert(address, new hwBreak(address)); } @@ -118,9 +118,9 @@ bool Core::handle_exception(Core *core, Registers *regs, ExceptionCause excause, { if (excause == EXCAUSE_HWBREAK) { if (in_delay_slot) - regs->pc_abs_jmp(inst_addr); - else regs->pc_abs_jmp(jump_branch_pc); + else + regs->pc_abs_jmp(inst_addr); } ExceptionHandler *exhandler = ex_handlers.value(excause); -- cgit v1.2.3