mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-01 20:24:36 +01:00
constant_pool: Allow for 128-bit constants
This commit is contained in:
parent
69de50a878
commit
1423584f9f
4 changed files with 9 additions and 7 deletions
|
|
@ -189,8 +189,8 @@ void BlockOfCode::SwitchMxcsrOnExit() {
|
|||
ldmxcsr(dword[r15 + jsi.offsetof_save_host_MXCSR]);
|
||||
}
|
||||
|
||||
Xbyak::Address BlockOfCode::MConst(u64 constant) {
|
||||
return constant_pool.GetConstant(constant);
|
||||
Xbyak::Address BlockOfCode::MConst(u64 lower, u64 upper) {
|
||||
return constant_pool.GetConstant(lower, upper);
|
||||
}
|
||||
|
||||
void BlockOfCode::SwitchToFarCode() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue