Implement gdbstub

This commit is contained in:
polaris- 2015-09-02 08:56:38 -04:00
parent 2f6927952f
commit 1d319e5b46
18 changed files with 1174 additions and 9 deletions

View file

@ -6,6 +6,7 @@
#include <string>
#include <array>
#include <common/file_util.h>
namespace Settings {
@ -60,6 +61,10 @@ struct Values {
float bg_blue;
std::string log_filter;
// Debugging
bool use_gdbstub;
u16 gdbstub_port;
} extern values;
}