Again, I believe this was intended to be a rebase but it ended up being a rebase and merge.
revert Merge branch 'master' of https://git.eden-emu.dev/eden-emu/eden
This commit is contained in:
Shinmegumi 2025-08-02 15:01:01 +02:00 committed by crueter
parent ff0fe6bf94
commit 90cf049de9
49 changed files with 654 additions and 916 deletions

View file

@ -8,7 +8,7 @@
#include <array>
#include <exception>
#include <unordered_map>
#include <map>
#include <catch2/catch_test_macros.hpp>
#include "dynarmic/common/common_types.h"
@ -23,7 +23,7 @@ namespace {
class MyEnvironment final : public A64::UserCallbacks {
public:
u64 ticks_left = 0;
std::unordered_map<u64, u8> memory{};
std::map<u64, u8> memory{};
u8 MemoryRead8(u64 vaddr) override {
return memory[vaddr];