MCPcopy Create free account
hub / github.com/TASEmulators/fceux / breakOnInstructionsLimitCB

Function breakOnInstructionsLimitCB

src/drivers/sdl/debugger.cpp:1626–1642  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1624}
1625
1626static void
1627breakOnInstructionsLimitCB (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
1644static void romOffsetToggleCB( GtkToggleButton *togglebutton, debuggerWin_t * dw)
1645{

Callers

nothing calls this directly

Calls 1

updateAllDebugWindowsFunction · 0.85

Tested by

no test coverage detected