示例#1
0
void init_debugger()
{
    debugger_mode = 1;
    run = 0;

    init_debugger_frontend();

    init_host_disassembler();

    mutex = SDL_CreateMutex();
    debugger_done_cond = SDL_CreateCond();
}
示例#2
0
void init_debugger()
{
    g_DebuggerActive = 1;
    run = 0;

    DebuggerCallback(DEBUG_UI_INIT, 0); /* call front-end to initialize user interface */

    init_host_disassembler();

    mutex = SDL_CreateMutex();
    debugger_done_cond = SDL_CreateCond();
}