2026-09-16 17:03:39

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie
2026-09-16 17:03:39 +00:00
parent 886e7b0da7
commit 9a2a1ba285
@@ -184,8 +184,8 @@ template<>
}
// check for sign bit, apply sign extension as needed
if (ctx.conf.page_table_sign_extension) {
code.shl(page, 63 - *ctx.conf.page_table_sign_extension);
code.sar(page, 63 - *ctx.conf.page_table_sign_extension);
code.shl(page, *ctx.conf.page_table_sign_extension);
code.sar(page, *ctx.conf.page_table_sign_extension);
}
code.jz(abort, code.T_NEAR);