Fix imgui support + update README.md

This commit is contained in:
CocoSimone
2022-08-19 23:42:15 +02:00
parent 02636d38b6
commit 7962ae12e3
31 changed files with 53895 additions and 29 deletions

View File

@@ -12,6 +12,10 @@ Cpu::Cpu() {
if (cs_open(CS_ARCH_MIPS, CS_MODE_MIPS64, &handle)) {
util::panic("Could not initialize capstone!\n");
}
if (cs_option(handle, CS_OPT_UNSIGNED, CS_OPT_ON)) {
util::panic("Could not initialize capstone!\n");
}
}
Cpu::~Cpu() {