checkpoint: assembly and source.

This commit is contained in:
Ernie Pasveer
2022-11-06 18:18:42 -06:00
parent b4b13a6aa6
commit 09fe27ae11
17 changed files with 372 additions and 231 deletions
+11
View File
@@ -63,6 +63,11 @@ bool SeerAssemblyConfigPage::showOpcodeColumn () const {
return showOpcodeCheckBox->isChecked();
}
bool SeerAssemblyConfigPage::showSourceLines () const {
return showSourceCheckBox->isChecked();
}
QString SeerAssemblyConfigPage::registerFormat () const {
return registerFormatComboBox->currentText();
@@ -113,6 +118,11 @@ void SeerAssemblyConfigPage::setShowOpcodeColumn (bool flag) {
showOpcodeCheckBox->setChecked(flag);
}
void SeerAssemblyConfigPage::setShowSourceLines (bool flag) {
showSourceCheckBox->setChecked(flag);
}
void SeerAssemblyConfigPage::setRegisterFormat (const QString& format) {
registerFormatComboBox->setCurrentText(format);
@@ -127,6 +137,7 @@ void SeerAssemblyConfigPage::reset () {
setShowAddressColumn(true);
setShowOffsetColumn(false);
setShowOpcodeColumn(false);
setShowSourceLines(false);
setRegisterFormat("Natural");
}