MSVC support

This commit is contained in:
MerryMage 2016-07-12 13:25:33 +01:00
parent 44352680c6
commit 8449deb0bc
8 changed files with 111 additions and 92 deletions

View file

@ -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();
}