mirror of https://github.com/mgba-emu/mgba.git
GBA Debugger defaults to loopback address
This commit is contained in:
parent
858c94e5ee
commit
3253c5dd32
|
@ -53,7 +53,11 @@ struct mDebugger* mDebuggerCreate(enum mDebuggerType type, struct mCore* core) {
|
||||||
case DEBUGGER_GDB:
|
case DEBUGGER_GDB:
|
||||||
#ifdef USE_GDB_STUB
|
#ifdef USE_GDB_STUB
|
||||||
GDBStubCreate(&debugger->gdb);
|
GDBStubCreate(&debugger->gdb);
|
||||||
GDBStubListen(&debugger->gdb, 2345, 0, GDB_WATCHPOINT_STANDARD_LOGIC);
|
struct Address localHost = {
|
||||||
|
.version = IPV4,
|
||||||
|
.ipv4 = 0x7F000001
|
||||||
|
};
|
||||||
|
GDBStubListen(&debugger->gdb, 2345, &localHost, GDB_WATCHPOINT_STANDARD_LOGIC);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
case DEBUGGER_NONE:
|
case DEBUGGER_NONE:
|
||||||
|
|
Loading…
Reference in New Issue