diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-11-05 00:23:11 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-11-05 00:23:11 -0700 |
commit | dd260c76cde35ba8ad5508f03163216f359d00e1 (patch) | |
tree | f3d3d57224ec08a2d08d53175f3722c74eadd697 /m68k_core.h | |
parent | e895e82ba2f3cb0d47212e05740d51be5e8324b5 (diff) |
Get Jaguar video interrupt working
Diffstat (limited to 'm68k_core.h')
-rw-r--r-- | m68k_core.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/m68k_core.h b/m68k_core.h index e79c5ee..0c07668 100644 --- a/m68k_core.h +++ b/m68k_core.h @@ -18,7 +18,8 @@ struct m68kinst; #define M68K_OPT_BROKEN_READ_MODIFY 1 -#define INT_PENDING_SR_CHANGE 8 +#define INT_PENDING_SR_CHANGE 254 +#define INT_PENDING_NONE 255 typedef void (*start_fun)(uint8_t * addr, void * context); |