From cce5070077670b7f02f4e2a24a35860d0f3825ad Mon Sep 17 00:00:00 2001 From: Jaklyy <102590697+Jaklyy@users.noreply.github.com> Date: Fri, 13 Dec 2024 21:32:15 -0500 Subject: [PATCH] probably not any faster --- src/ARM.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ARM.h b/src/ARM.h index 413510f8..21c06813 100644 --- a/src/ARM.h +++ b/src/ARM.h @@ -841,9 +841,9 @@ public: bool (*GetMemRegion)(u32 addr, bool write, MemRegion* region); - alignas(64) void (ARMv5::*FuncQueue[32])(void); - void (ARMv5::*DelayedQueue)(void); // adding more than one new entry to the queue while it's already active does not work. so uh. we use this to work around that. it's less than ideal... + alignas(64) void (ARMv5::*DelayedQueue)(void); // adding more than one new entry to the queue while it's already active does not work. so uh. we use this to work around that. it's less than ideal... void (ARMv5::*StartExec)(void); + void (ARMv5::*FuncQueue[32])(void); u64 ITCMTimestamp; u64 TimestampMemory; u32 PC; @@ -912,9 +912,9 @@ public: template void Execute(); - + + alignas(64) void (ARMv4::*StartExec)(void); void (ARMv4::*FuncQueue[32])(void); - void (ARMv4::*StartExec)(void); bool Nonseq; void CodeRead16(u32 addr);