| 3143 | } |
| 3144 | |
| 3145 | void consoleWin_t::openDebugWindow(void) |
| 3146 | { |
| 3147 | //printf("Open GUI 6502 Debugger Window\n"); |
| 3148 | |
| 3149 | if ( debuggerWindowIsOpen() ) |
| 3150 | { |
| 3151 | debuggerWindowSetFocus(); |
| 3152 | } |
| 3153 | else |
| 3154 | { |
| 3155 | ConsoleDebugger *debugWin; |
| 3156 | |
| 3157 | debugWin = new ConsoleDebugger(this); |
| 3158 | |
| 3159 | debugWin->show(); |
| 3160 | } |
| 3161 | } |
| 3162 | |
| 3163 | void consoleWin_t::openHexEditor(void) |
| 3164 | { |
no test coverage detected