diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-04-28 09:00:42 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-04-28 09:00:42 -0700 |
commit | 5889c419383e08aa540acbd8dc28fe2ff43ed48c (patch) | |
tree | 0ff37f91183e6c04d179d9aa052931145e69efb2 /68kinst.h | |
parent | 557a468dcccfc1d1e4ccc067b31f812478236077 (diff) |
Implemented A line and F line traps.
Diffstat (limited to '68kinst.h')
-rw-r--r-- | 68kinst.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -26,12 +26,12 @@ typedef enum { MOVEQ, OR_DIV_SBCD, SUB_SUBX, - RESERVED, + A_LINE, CMP_XOR, AND_MUL_ABCD_EXG, ADD_ADDX, SHIFT_ROTATE, - COPROC + F_LINE } m68k_optypes; typedef enum { @@ -105,6 +105,8 @@ typedef enum { M68K_TST, M68K_UNLK, M68K_INVALID, + M68K_A_LINE_TRAP, + M68K_F_LINE_TRAP, #ifdef M68010 M68K_BKPT, M68K_MOVE_FROM_CCR, |