Qt/Debugger: Implement "JIT" widget

This commit is contained in:
spycrab
2018-04-09 15:31:20 +02:00
parent dabfecfd74
commit 1dfcffcce2
13 changed files with 475 additions and 1 deletions

View File

@ -152,6 +152,9 @@ void CodeWidget::ConnectWidgets()
connect(m_code_view, &CodeViewWidget::SymbolsChanged, this, &CodeWidget::UpdateSymbols);
connect(m_code_view, &CodeViewWidget::BreakpointsChanged, this,
[this] { emit BreakpointsChanged(); });
connect(m_code_view, &CodeViewWidget::RequestPPCComparison, this,
&CodeWidget::RequestPPCComparison);
}
void CodeWidget::OnSearchAddress()