mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 04:35:36 +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_UNSIZED 7
|
||||
|
||||
#define MAX_QREGS 32
|
||||
|
||||
#define EXCP_ACCESS 2 /* Access (MMU) error. */
|
||||
#define EXCP_ADDRESS 3 /* Address error. */
|
||||
#define EXCP_ILLEGAL 4 /* Illegal instruction. */
|
||||
|
@ -141,8 +139,6 @@ typedef struct CPUM68KState {
|
|||
int pending_vector;
|
||||
int pending_level;
|
||||
|
||||
uint32_t qregs[MAX_QREGS];
|
||||
|
||||
/* Fields up to this point are cleared by a CPU reset */
|
||||
struct {} end_reset_fields;
|
||||
|
||||
|
|
Loading…
Reference in a new issue