diff options
Diffstat (limited to 'src/citra_qt/debugger/registers.cpp')
| -rw-r--r-- | src/citra_qt/debugger/registers.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/registers.cpp b/src/citra_qt/debugger/registers.cpp index e982dfb3f..ab3666156 100644 --- a/src/citra_qt/debugger/registers.cpp +++ b/src/citra_qt/debugger/registers.cpp | |||
| @@ -41,7 +41,7 @@ RegistersWidget::RegistersWidget(QWidget* parent) : QDockWidget(parent) | |||
| 41 | CSPR->addChild(new QTreeWidgetItem(QStringList("N"))); | 41 | CSPR->addChild(new QTreeWidgetItem(QStringList("N"))); |
| 42 | } | 42 | } |
| 43 | 43 | ||
| 44 | void RegistersWidget::OnCPUStepped() | 44 | void RegistersWidget::OnDebugModeEntered() |
| 45 | { | 45 | { |
| 46 | ARM_Interface* app_core = Core::g_app_core; | 46 | ARM_Interface* app_core = Core::g_app_core; |
| 47 | 47 | ||
| @@ -65,3 +65,8 @@ void RegistersWidget::OnCPUStepped() | |||
| 65 | CSPR->child(13)->setText(1, QString("%1").arg((app_core->GetCPSR() >> 30) & 0x1)); // Z - Zero | 65 | CSPR->child(13)->setText(1, QString("%1").arg((app_core->GetCPSR() >> 30) & 0x1)); // Z - Zero |
| 66 | CSPR->child(14)->setText(1, QString("%1").arg((app_core->GetCPSR() >> 31) & 0x1)); // N - Negative/Less than | 66 | CSPR->child(14)->setText(1, QString("%1").arg((app_core->GetCPSR() >> 31) & 0x1)); // N - Negative/Less than |
| 67 | } | 67 | } |
| 68 | |||
| 69 | void RegistersWidget::OnDebugModeLeft() | ||
| 70 | { | ||
| 71 | |||
| 72 | } | ||