early-access version 1730

This commit is contained in:
pineappleEA
2021-05-30 08:36:49 +02:00
parent b09a4af601
commit 146ca66c3e
668 changed files with 155049 additions and 791 deletions

View File

@@ -3,16 +3,17 @@
* SPDX-License-Identifier: 0BSD
*/
#include "./fuzz_util.h"
#include <cstring>
#include <fmt/format.h>
#include <fmt/ostream.h>
#include "common/assert.h"
#include "common/fp/fpcr.h"
#include "common/fp/rounding_mode.h"
#include "fuzz_util.h"
#include "rand_int.h"
#include "./rand_int.h"
#include "dynarmic/common/assert.h"
#include "dynarmic/common/fp/fpcr.h"
#include "dynarmic/common/fp/rounding_mode.h"
using namespace Dynarmic;
@@ -34,7 +35,7 @@ u32 RandomFpcr() {
return fpcr.Value();
}
InstructionGenerator::InstructionGenerator(const char* format){
InstructionGenerator::InstructionGenerator(const char* format) {
const size_t format_len = std::strlen(format);
ASSERT(format_len == 16 || format_len == 32);