1
0
Fork 0

DBG: switch default assembler engine to asmjit

This commit is contained in:
mrexodia 2017-05-31 19:01:02 +02:00
parent 9642d09bf2
commit 39b66f3b0f
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 4 additions and 1 deletions

View File

@ -994,7 +994,10 @@ extern "C" DLL_EXPORT duint _dbg_sendmessage(DBGMSG type, void* param1, void* pa
if(BridgeSettingGetUint("Engine", "Assembler", &setting))
assemblerEngine = AssemblerEngine(setting);
else
assemblerEngine = AssemblerEngine::XEDParse;
{
assemblerEngine = AssemblerEngine::asmjit;
BridgeSettingSetUint("Engine", "Assembler", duint(assemblerEngine));
}
std::vector<char> settingText(MAX_SETTING_SIZE + 1, '\0');
dbgclearignoredexceptions();