[JIT]: Stupid mov bug + start debugging with capstone

This commit is contained in:
SimoneN64
2025-01-28 00:12:01 +01:00
parent d4ad92a67d
commit 009dd1458d
5 changed files with 54 additions and 13 deletions

View File

@@ -4,6 +4,7 @@
#include <vector>
#include <xbyak.h>
#include <jit/helpers.hpp>
#include <capstone/capstone.h>
namespace n64 {
struct Core;
@@ -46,6 +47,7 @@ private:
using BlockFn = int (*)();
std::vector<std::vector<BlockFn>> blockCache;
Xbyak::Label branch_likely_not_taken;
csh disassemblerMips, disassemblerX86;
template <typename T>
Xbyak::Address GPR(const size_t index) const {