fix static variables used in m68k

This commit is contained in:
mio
2025-04-13 11:49:05 +08:00
parent aa86641e16
commit 334e83efd7
2 changed files with 10 additions and 9 deletions

View File

@@ -147,6 +147,9 @@ typedef struct CPUM68KState {
/* Fields from here on are preserved across CPU reset. */
uint32_t features;
// translate opcode
void* opcode_table[65536];
// Unicorn engine
struct uc_struct *uc;
} CPUM68KState;