aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui
diff options
context:
space:
mode:
authorPavel Pisa <pisa@cmp.felk.cvut.cz>2019-02-07 13:16:54 +0100
committerPavel Pisa <pisa@cmp.felk.cvut.cz>2019-02-07 13:16:54 +0100
commit556d9b08fee6d54a2b2ec62862a84d97c91b9792 (patch)
tree4e0c9612e36a4453cf511cddbb220714c6b84937 /qtmips_gui
parent4b91acba17a4d3a3205e99da5d69844a83da2c43 (diff)
downloadqtmips-556d9b08fee6d54a2b2ec62862a84d97c91b9792.tar.gz
qtmips-556d9b08fee6d54a2b2ec62862a84d97c91b9792.tar.bz2
qtmips-556d9b08fee6d54a2b2ec62862a84d97c91b9792.zip
Implemented basic infrastructure to handle exceptions.
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
Diffstat (limited to 'qtmips_gui')
-rw-r--r--qtmips_gui/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qtmips_gui/mainwindow.cpp b/qtmips_gui/mainwindow.cpp
index b342a3c..a520f9d 100644
--- a/qtmips_gui/mainwindow.cpp
+++ b/qtmips_gui/mainwindow.cpp
@@ -149,7 +149,7 @@ void MainWindow::create_core(const machine::MachineConfig &config) {
connect(corescene, SIGNAL(request_cache_program()), this, SLOT(show_cache_program()));
connect(corescene, SIGNAL(request_cache_data()), this, SLOT(show_cache_data()));
// Connect signal from break to machine pause
- connect(machine->core(), SIGNAL(memory_break_reached()), machine, SLOT(pause()));
+ connect(machine->core(), SIGNAL(stop_on_exception_reached()), machine, SLOT(pause()));
// Setup docks
registers->setup(machine);