Implement gdbstub

This commit is contained in:
polaris- 2015-09-02 08:56:38 -04:00
parent addef06081
commit 31dee93e84
18 changed files with 1174 additions and 9 deletions

View file

@ -75,6 +75,10 @@ void Config::ReadValues() {
// Miscellaneous
Settings::values.log_filter = glfw_config->Get("Miscellaneous", "log_filter", "*:Info");
// GDBStubebugging
Settings::values.use_gdbstub = glfw_config->GetBoolean("Debugging", "use_gdbstub", false);
Settings::values.gdbstub_port = glfw_config->GetInteger("Debugging", "gdbstub_port", 24689);
}
void Config::Reload() {