Commented out unused break on exceed counter widgets that will later be removed.
This commit is contained in:
parent
91298bb24f
commit
7c70db115e
|
@ -654,13 +654,12 @@ ConsoleDebugger::ConsoleDebugger(QWidget *parent)
|
||||||
//cpuCyclesLbl2 = new QLabel( tr("(+0):") );
|
//cpuCyclesLbl2 = new QLabel( tr("(+0):") );
|
||||||
cpuCyclesVal = new QLineEdit( tr("(+0):") );
|
cpuCyclesVal = new QLineEdit( tr("(+0):") );
|
||||||
cpuInstrsLbl1 = new QLabel( tr("Instructions:") );
|
cpuInstrsLbl1 = new QLabel( tr("Instructions:") );
|
||||||
cpuInstrsLbl2 = new QLabel( tr("(+0):") );
|
|
||||||
//cpuInstrsLbl2 = new QLabel( tr("(+0):") );
|
//cpuInstrsLbl2 = new QLabel( tr("(+0):") );
|
||||||
cpuInstrsVal = new QLineEdit( tr("(+0):") );
|
cpuInstrsVal = new QLineEdit( tr("(+0):") );
|
||||||
brkCpuCycExd = new QCheckBox( tr("Break when Exceed") );
|
//brkCpuCycExd = new QCheckBox( tr("Break when Exceed") );
|
||||||
brkInstrsExd = new QCheckBox( tr("Break when Exceed") );
|
//brkInstrsExd = new QCheckBox( tr("Break when Exceed") );
|
||||||
cpuCycExdVal = new QLineEdit( tr("0") );
|
//cpuCycExdVal = new QLineEdit( tr("0") );
|
||||||
instrExdVal = new QLineEdit( tr("0") );
|
//instrExdVal = new QLineEdit( tr("0") );
|
||||||
|
|
||||||
cpuCyclesVal->setFont(font);
|
cpuCyclesVal->setFont(font);
|
||||||
cpuCyclesVal->setReadOnly(true);
|
cpuCyclesVal->setReadOnly(true);
|
||||||
|
|
|
@ -248,8 +248,8 @@ class ConsoleDebugger : public QDialog
|
||||||
QLineEdit *regAEntry;
|
QLineEdit *regAEntry;
|
||||||
QLineEdit *regXEntry;
|
QLineEdit *regXEntry;
|
||||||
QLineEdit *regYEntry;
|
QLineEdit *regYEntry;
|
||||||
QLineEdit *cpuCycExdVal;
|
//QLineEdit *cpuCycExdVal;
|
||||||
QLineEdit *instrExdVal;
|
//QLineEdit *instrExdVal;
|
||||||
QLineEdit *selBmAddr;
|
QLineEdit *selBmAddr;
|
||||||
QLineEdit *cpuCyclesVal;
|
QLineEdit *cpuCyclesVal;
|
||||||
QLineEdit *cpuInstrsVal;
|
QLineEdit *cpuInstrsVal;
|
||||||
|
@ -267,8 +267,8 @@ class ConsoleDebugger : public QDialog
|
||||||
QCheckBox *I_chkbox;
|
QCheckBox *I_chkbox;
|
||||||
QCheckBox *Z_chkbox;
|
QCheckBox *Z_chkbox;
|
||||||
QCheckBox *C_chkbox;
|
QCheckBox *C_chkbox;
|
||||||
QCheckBox *brkCpuCycExd;
|
//QCheckBox *brkCpuCycExd;
|
||||||
QCheckBox *brkInstrsExd;
|
//QCheckBox *brkInstrsExd;
|
||||||
QLabel *emuStatLbl;
|
QLabel *emuStatLbl;
|
||||||
QLabel *ppuLbl;
|
QLabel *ppuLbl;
|
||||||
QLabel *spriteLbl;
|
QLabel *spriteLbl;
|
||||||
|
@ -277,7 +277,7 @@ class ConsoleDebugger : public QDialog
|
||||||
QLabel *cpuCyclesLbl1;
|
QLabel *cpuCyclesLbl1;
|
||||||
//QLabel *cpuCyclesLbl2;
|
//QLabel *cpuCyclesLbl2;
|
||||||
QLabel *cpuInstrsLbl1;
|
QLabel *cpuInstrsLbl1;
|
||||||
QLabel *cpuInstrsLbl2;
|
//QLabel *cpuInstrsLbl2;
|
||||||
QTimer *periodicTimer;
|
QTimer *periodicTimer;
|
||||||
QFont font;
|
QFont font;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue