| 892 | } |
| 893 | |
| 894 | void UpdateRegs(HWND hwndDlg) { |
| 895 | if (DebuggerWasUpdated) { |
| 896 | X.A = GetEditHex(hwndDlg,IDC_DEBUGGER_VAL_A); |
| 897 | X.X = GetEditHex(hwndDlg,IDC_DEBUGGER_VAL_X); |
| 898 | X.Y = GetEditHex(hwndDlg,IDC_DEBUGGER_VAL_Y); |
| 899 | X.PC = GetEditHex(hwndDlg,IDC_DEBUGGER_VAL_PC); |
| 900 | } |
| 901 | } |
| 902 | |
| 903 | ///indicates whether we're under the control of the debugger |
| 904 | bool inDebugger = false; |
no test coverage detected