From 556d9b08fee6d54a2b2ec62862a84d97c91b9792 Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Thu, 7 Feb 2019 13:16:54 +0100 Subject: Implemented basic infrastructure to handle exceptions. Signed-off-by: Pavel Pisa --- qtmips_gui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qtmips_gui') 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); -- cgit v1.2.3