mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-23 18:24:57 +00:00
@@ -184,8 +184,8 @@ template<>
|
|||||||
}
|
}
|
||||||
// check for sign bit, apply sign extension as needed
|
// check for sign bit, apply sign extension as needed
|
||||||
if (ctx.conf.page_table_sign_extension) {
|
if (ctx.conf.page_table_sign_extension) {
|
||||||
code.shl(page, 63 - int(*ctx.conf.page_table_sign_extension));
|
code.shl(page, 63 - *ctx.conf.page_table_sign_extension);
|
||||||
code.sar(page, 63 - int(*ctx.conf.page_table_sign_extension));
|
code.sar(page, 63 - *ctx.conf.page_table_sign_extension);
|
||||||
}
|
}
|
||||||
|
|
||||||
code.jz(abort, code.T_NEAR);
|
code.jz(abort, code.T_NEAR);
|
||||||
|
|||||||
Reference in New Issue
Block a user