Second take on fixing ARM64 MMX opcodes

This commit is contained in:
Cacodemon345
2025-11-04 17:05:16 +06:00
parent c00a82c58c
commit 93d478691f
3 changed files with 25 additions and 8 deletions

View File

@@ -242,6 +242,20 @@ static uint64_t tsc_old = 0;
int32_t acycs = 0;
# endif
int
codegen_mmx_enter(void)
{
MMX_ENTER();
return 0;
}
int
codegen_fp_enter(void)
{
FP_ENTER();
return 0;
}
void
update_tsc(void)
{