mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-30 03:04:50 +01:00
MSVC support
This commit is contained in:
parent
44352680c6
commit
8449deb0bc
8 changed files with 111 additions and 92 deletions
|
|
@ -6,10 +6,11 @@
|
|||
|
||||
#include <cinttypes>
|
||||
#include <cstring>
|
||||
#include <functional>
|
||||
|
||||
#include <catch.hpp>
|
||||
#include <common/bit_util.h>
|
||||
|
||||
#include "common/bit_util.h"
|
||||
#include "common/common_types.h"
|
||||
#include "frontend/disassembler.h"
|
||||
#include "interface/interface.h"
|
||||
|
|
@ -217,7 +218,7 @@ void FuzzJitArm(const size_t instruction_count, const size_t instructions_to_exe
|
|||
printf("CPSR: %08x %08x %s\n", interp.Cpsr, jit.Cpsr(), interp.Cpsr != jit.Cpsr() ? "*" : "");
|
||||
|
||||
#ifdef _MSC_VER
|
||||
DebugBreak();
|
||||
__debugbreak();
|
||||
#endif
|
||||
FAIL();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue