| 1624 | } |
| 1625 | |
| 1626 | static void |
| 1627 | breakOnInstructionsLimitCB (GtkEntry *entry, |
| 1628 | // gchar *string, |
| 1629 | gpointer user_data) |
| 1630 | { |
| 1631 | const char *txt; |
| 1632 | |
| 1633 | txt = gtk_entry_get_text( entry ); |
| 1634 | |
| 1635 | //printf("'%s'\n", txt ); |
| 1636 | |
| 1637 | if ( isdigit(txt[0]) ) |
| 1638 | { |
| 1639 | break_instructions_limit = strtoul( txt, NULL, 0 ); |
| 1640 | } |
| 1641 | updateAllDebugWindows(); |
| 1642 | } |
| 1643 | |
| 1644 | static void romOffsetToggleCB( GtkToggleButton *togglebutton, debuggerWin_t * dw) |
| 1645 | { |
nothing calls this directly
no test coverage detected