mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 23:58:04 -04:00
famec: make reentrant
This commit is contained in:
parent
ae214f1c37
commit
95049eea1c
2 changed files with 27 additions and 15 deletions
|
@ -122,6 +122,20 @@ typedef struct
|
|||
unsigned short execinfo;
|
||||
// PD extension
|
||||
int io_cycle_counter; // cycles left
|
||||
|
||||
unsigned int Opcode;
|
||||
signed int cycles_needed;
|
||||
unsigned short *PC;
|
||||
unsigned long BasePC;
|
||||
unsigned int flag_C;
|
||||
unsigned int flag_V;
|
||||
unsigned int flag_NotZ;
|
||||
unsigned int flag_N;
|
||||
unsigned int flag_X;
|
||||
unsigned int flag_T;
|
||||
unsigned int flag_S;
|
||||
unsigned int flag_I;
|
||||
|
||||
unsigned long Fetch[M68K_FETCHBANK1];
|
||||
} M68K_CONTEXT;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue