Refactor: Seperate executor cases to categories.

This commit is contained in:
0x221E
2026-02-05 00:42:25 +01:00
parent fe1370359e
commit ac6bf8cb46
15 changed files with 127 additions and 69 deletions

7
src/Misc.h Normal file
View File

@@ -0,0 +1,7 @@
#pragma once
struct CPUContext;
namespace executor_cases {
void Nop(CPUContext& cc);
}