diff options
Diffstat (limited to 'src/emu/emuopts.c')
-rw-r--r-- | src/emu/emuopts.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/emu/emuopts.c b/src/emu/emuopts.c index c537ce6dc4e..c7df63d76d1 100644 --- a/src/emu/emuopts.c +++ b/src/emu/emuopts.c @@ -160,6 +160,13 @@ const options_entry emu_options::s_option_entries[] = { OPTION_UPDATEINPAUSE, "0", OPTION_BOOLEAN, "keep calling video updates while in pause" }, { OPTION_DEBUGSCRIPT, NULL, OPTION_STRING, "script for debugger" }, + // comm options + { NULL, NULL, OPTION_HEADER, "CORE COMM OPTIONS" }, + { OPTION_COMM_LOCAL_HOST, "0.0.0.0", OPTION_STRING, "local address to bind to" }, + { OPTION_COMM_LOCAL_PORT, "15112", OPTION_STRING, "local port to bind to" }, + { OPTION_COMM_REMOTE_HOST, "127.0.0.1", OPTION_STRING, "remote address to connect to" }, + { OPTION_COMM_REMOTE_PORT, "15112", OPTION_STRING, "remote port to connect to" }, + // misc options { NULL, NULL, OPTION_HEADER, "CORE MISC OPTIONS" }, { OPTION_DRC, "1", OPTION_BOOLEAN, "enable DRC cpu core if available" }, |