mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-04-30 08:26:35 +00:00
target/m68k: remove useless qregs array
They are unused since the target has been converted to TCG. Backports 4160d5e6bd347e5d27804912b61d02df0a90ba8e
This commit is contained in:
parent
c59e391194
commit
bf2c52bc83
|
@ -35,8 +35,6 @@
|
||||||
#define OS_PACKED 6
|
#define OS_PACKED 6
|
||||||
#define OS_UNSIZED 7
|
#define OS_UNSIZED 7
|
||||||
|
|
||||||
#define MAX_QREGS 32
|
|
||||||
|
|
||||||
#define EXCP_ACCESS 2 /* Access (MMU) error. */
|
#define EXCP_ACCESS 2 /* Access (MMU) error. */
|
||||||
#define EXCP_ADDRESS 3 /* Address error. */
|
#define EXCP_ADDRESS 3 /* Address error. */
|
||||||
#define EXCP_ILLEGAL 4 /* Illegal instruction. */
|
#define EXCP_ILLEGAL 4 /* Illegal instruction. */
|
||||||
|
@ -141,8 +139,6 @@ typedef struct CPUM68KState {
|
||||||
int pending_vector;
|
int pending_vector;
|
||||||
int pending_level;
|
int pending_level;
|
||||||
|
|
||||||
uint32_t qregs[MAX_QREGS];
|
|
||||||
|
|
||||||
/* Fields up to this point are cleared by a CPU reset */
|
/* Fields up to this point are cleared by a CPU reset */
|
||||||
struct {} end_reset_fields;
|
struct {} end_reset_fields;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue