more instructions

This commit is contained in:
SimoneN64
2023-08-13 11:21:33 +02:00
parent 63a10053f9
commit 6137d37c33
3 changed files with 92 additions and 59 deletions

View File

@@ -3,7 +3,7 @@
namespace n64 {
using namespace Xbyak;
JIT::JIT() : CodeGenerator(0x80000) { }
JIT::JIT() : CodeGenerator(0x80000, AutoGrow) { }
void JIT::Reset() {
reset();
@@ -77,7 +77,6 @@ Fn JIT::Recompile() {
}
_epilogue:
epilogue();
mov(rax, cycles);
ready();
return getCode<Fn>();
}