]> git.sesse.net Git - pistorm/blobdiff - m68k_in.c
introducing CPU state parameter 3
[pistorm] / m68k_in.c
index 7c36327a378b191c967e6d16461c03563703c85b..8cafe9a85029ceb2d187f4fccaf95076acf02c9c 100644 (file)
--- a/m68k_in.c
+++ b/m68k_in.c
@@ -908,13 +908,13 @@ M68KMAKE_OPCODE_HANDLER_BODY
 
 M68KMAKE_OP(1010, 0, ., .)
 {
-       m68ki_exception_1010();
+       m68ki_exception_1010(state);
 }
 
 
 M68KMAKE_OP(1111, 0, ., .)
 {
-       m68ki_exception_1111();
+       m68ki_exception_1111(state);
 }
 
 
@@ -923,10 +923,10 @@ M68KMAKE_OP(040fpu0, 32, ., .)
 //     printf("FPU 040fpu0 HAS_FPU=%d\n",!!HAS_FPU);
        if(HAS_FPU)
        {
-               void m68040_fpu_op0(m68ki_cpu_core *state);
+               m68040_fpu_op0(state);
                return;
        }
-       m68ki_exception_1111();
+       m68ki_exception_1111(state);
 }
 
 
@@ -935,10 +935,10 @@ M68KMAKE_OP(040fpu1, 32, ., .)
 //     printf("FPU 040fpu1 HAS_FPU=%d\n",!!HAS_FPU);
        if(HAS_FPU)
        {
-               void m68040_fpu_op1(m68ki_cpu_core *state);
+               m68040_fpu_op1(state);
                return;
        }
-       m68ki_exception_1111();
+       m68ki_exception_1111(state);
 }
 
 
@@ -974,7 +974,7 @@ M68KMAKE_OP(abcd, 8, mm, ax7)
 {
        uint src = OPER_AY_PD_8(state);
        uint ea  = EA_A7_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = LOW_NIBBLE(src) + LOW_NIBBLE(dst) + XFLAG_AS_1();
        uint corf = 0;
 
@@ -993,7 +993,7 @@ M68KMAKE_OP(abcd, 8, mm, ax7)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -1001,7 +1001,7 @@ M68KMAKE_OP(abcd, 8, mm, ay7)
 {
        uint src = OPER_A7_PD_8(state);
        uint ea  = EA_AX_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = LOW_NIBBLE(src) + LOW_NIBBLE(dst) + XFLAG_AS_1();
        uint corf = 0;
 
@@ -1020,7 +1020,7 @@ M68KMAKE_OP(abcd, 8, mm, ay7)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -1028,7 +1028,7 @@ M68KMAKE_OP(abcd, 8, mm, axy7)
 {
        uint src = OPER_A7_PD_8(state);
        uint ea  = EA_A7_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = LOW_NIBBLE(src) + LOW_NIBBLE(dst) + XFLAG_AS_1();
        uint corf = 0;
 
@@ -1047,7 +1047,7 @@ M68KMAKE_OP(abcd, 8, mm, axy7)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -1055,7 +1055,7 @@ M68KMAKE_OP(abcd, 8, mm, .)
 {
        uint src = OPER_AY_PD_8(state);
        uint ea  = EA_AX_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = LOW_NIBBLE(src) + LOW_NIBBLE(dst) + XFLAG_AS_1();
        uint corf = 0;
 
@@ -1074,7 +1074,7 @@ M68KMAKE_OP(abcd, 8, mm, .)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -1210,7 +1210,7 @@ M68KMAKE_OP(add, 8, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
        uint src = MASK_OUT_ABOVE_8(DX);
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = src + dst;
 
        FLAG_N = NFLAG_8(res);
@@ -1218,7 +1218,7 @@ M68KMAKE_OP(add, 8, re, .)
        FLAG_X = FLAG_C = CFLAG_8(res);
        FLAG_Z = MASK_OUT_ABOVE_8(res);
 
-       m68ki_write_8(ea, FLAG_Z);
+       m68ki_write_8(state, ea, FLAG_Z);
 }
 
 
@@ -1226,7 +1226,7 @@ M68KMAKE_OP(add, 16, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
        uint src = MASK_OUT_ABOVE_16(DX);
-       uint dst = m68ki_read_16(ea);
+       uint dst = m68ki_read_16(state, ea);
        uint res = src + dst;
 
        FLAG_N = NFLAG_16(res);
@@ -1234,7 +1234,7 @@ M68KMAKE_OP(add, 16, re, .)
        FLAG_X = FLAG_C = CFLAG_16(res);
        FLAG_Z = MASK_OUT_ABOVE_16(res);
 
-       m68ki_write_16(ea, FLAG_Z);
+       m68ki_write_16(state, ea, FLAG_Z);
 }
 
 
@@ -1242,7 +1242,7 @@ M68KMAKE_OP(add, 32, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_32;
        uint src = DX;
-       uint dst = m68ki_read_32(ea);
+       uint dst = m68ki_read_32(state, ea);
        uint res = src + dst;
 
        FLAG_N = NFLAG_32(res);
@@ -1250,7 +1250,7 @@ M68KMAKE_OP(add, 32, re, .)
        FLAG_X = FLAG_C = CFLAG_ADD_32(src, dst, res);
        FLAG_Z = MASK_OUT_ABOVE_32(res);
 
-       m68ki_write_32(ea, FLAG_Z);
+       m68ki_write_32(state, ea, FLAG_Z);
 }
 
 
@@ -1324,7 +1324,7 @@ M68KMAKE_OP(addi, 8, ., .)
 {
        uint src = OPER_I_8(state);
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = src + dst;
 
        FLAG_N = NFLAG_8(res);
@@ -1332,7 +1332,7 @@ M68KMAKE_OP(addi, 8, ., .)
        FLAG_X = FLAG_C = CFLAG_8(res);
        FLAG_Z = MASK_OUT_ABOVE_8(res);
 
-       m68ki_write_8(ea, FLAG_Z);
+       m68ki_write_8(state, ea, FLAG_Z);
 }
 
 
@@ -1356,7 +1356,7 @@ M68KMAKE_OP(addi, 16, ., .)
 {
        uint src = OPER_I_16(state);
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint dst = m68ki_read_16(ea);
+       uint dst = m68ki_read_16(state, ea);
        uint res = src + dst;
 
        FLAG_N = NFLAG_16(res);
@@ -1364,7 +1364,7 @@ M68KMAKE_OP(addi, 16, ., .)
        FLAG_X = FLAG_C = CFLAG_16(res);
        FLAG_Z = MASK_OUT_ABOVE_16(res);
 
-       m68ki_write_16(ea, FLAG_Z);
+       m68ki_write_16(state, ea, FLAG_Z);
 }
 
 
@@ -1388,7 +1388,7 @@ M68KMAKE_OP(addi, 32, ., .)
 {
        uint src = OPER_I_32(state);
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint dst = m68ki_read_32(ea);
+       uint dst = m68ki_read_32(state, ea);
        uint res = src + dst;
 
        FLAG_N = NFLAG_32(res);
@@ -1396,7 +1396,7 @@ M68KMAKE_OP(addi, 32, ., .)
        FLAG_X = FLAG_C = CFLAG_ADD_32(src, dst, res);
        FLAG_Z = MASK_OUT_ABOVE_32(res);
 
-       m68ki_write_32(ea, FLAG_Z);
+       m68ki_write_32(state, ea, FLAG_Z);
 }
 
 
@@ -1420,7 +1420,7 @@ M68KMAKE_OP(addq, 8, ., .)
 {
        uint src = (((REG_IR >> 9) - 1) & 7) + 1;
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = src + dst;
 
        FLAG_N = NFLAG_8(res);
@@ -1428,7 +1428,7 @@ M68KMAKE_OP(addq, 8, ., .)
        FLAG_X = FLAG_C = CFLAG_8(res);
        FLAG_Z = MASK_OUT_ABOVE_8(res);
 
-       m68ki_write_8(ea, FLAG_Z);
+       m68ki_write_8(state, ea, FLAG_Z);
 }
 
 
@@ -1460,7 +1460,7 @@ M68KMAKE_OP(addq, 16, ., .)
 {
        uint src = (((REG_IR >> 9) - 1) & 7) + 1;
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint dst = m68ki_read_16(ea);
+       uint dst = m68ki_read_16(state, ea);
        uint res = src + dst;
 
        FLAG_N = NFLAG_16(res);
@@ -1468,7 +1468,7 @@ M68KMAKE_OP(addq, 16, ., .)
        FLAG_X = FLAG_C = CFLAG_16(res);
        FLAG_Z = MASK_OUT_ABOVE_16(res);
 
-       m68ki_write_16(ea, FLAG_Z);
+       m68ki_write_16(state, ea, FLAG_Z);
 }
 
 
@@ -1500,7 +1500,7 @@ M68KMAKE_OP(addq, 32, ., .)
 {
        uint src = (((REG_IR >> 9) - 1) & 7) + 1;
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint dst = m68ki_read_32(ea);
+       uint dst = m68ki_read_32(state, ea);
        uint res = src + dst;
 
 
@@ -1509,7 +1509,7 @@ M68KMAKE_OP(addq, 32, ., .)
        FLAG_X = FLAG_C = CFLAG_ADD_32(src, dst, res);
        FLAG_Z = MASK_OUT_ABOVE_32(res);
 
-       m68ki_write_32(ea, FLAG_Z);
+       m68ki_write_32(state, ea, FLAG_Z);
 }
 
 
@@ -1571,7 +1571,7 @@ M68KMAKE_OP(addx, 8, mm, ax7)
 {
        uint src = OPER_AY_PD_8(state);
        uint ea  = EA_A7_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = src + dst + XFLAG_AS_1();
 
        FLAG_N = NFLAG_8(res);
@@ -1581,7 +1581,7 @@ M68KMAKE_OP(addx, 8, mm, ax7)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -1589,7 +1589,7 @@ M68KMAKE_OP(addx, 8, mm, ay7)
 {
        uint src = OPER_A7_PD_8(state);
        uint ea  = EA_AX_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = src + dst + XFLAG_AS_1();
 
        FLAG_N = NFLAG_8(res);
@@ -1599,7 +1599,7 @@ M68KMAKE_OP(addx, 8, mm, ay7)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -1607,7 +1607,7 @@ M68KMAKE_OP(addx, 8, mm, axy7)
 {
        uint src = OPER_A7_PD_8(state);
        uint ea  = EA_A7_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = src + dst + XFLAG_AS_1();
 
        FLAG_N = NFLAG_8(res);
@@ -1617,7 +1617,7 @@ M68KMAKE_OP(addx, 8, mm, axy7)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -1625,7 +1625,7 @@ M68KMAKE_OP(addx, 8, mm, .)
 {
        uint src = OPER_AY_PD_8(state);
        uint ea  = EA_AX_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = src + dst + XFLAG_AS_1();
 
        FLAG_N = NFLAG_8(res);
@@ -1635,7 +1635,7 @@ M68KMAKE_OP(addx, 8, mm, .)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -1643,7 +1643,7 @@ M68KMAKE_OP(addx, 16, mm, .)
 {
        uint src = OPER_AY_PD_16(state);
        uint ea  = EA_AX_PD_16();
-       uint dst = m68ki_read_16(ea);
+       uint dst = m68ki_read_16(state, ea);
        uint res = src + dst + XFLAG_AS_1();
 
        FLAG_N = NFLAG_16(res);
@@ -1653,7 +1653,7 @@ M68KMAKE_OP(addx, 16, mm, .)
        res = MASK_OUT_ABOVE_16(res);
        FLAG_Z |= res;
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 }
 
 
@@ -1661,7 +1661,7 @@ M68KMAKE_OP(addx, 32, mm, .)
 {
        uint src = OPER_AY_PD_32(state);
        uint ea  = EA_AX_PD_32();
-       uint dst = m68ki_read_32(ea);
+       uint dst = m68ki_read_32(state, ea);
        uint res = src + dst + XFLAG_AS_1();
 
        FLAG_N = NFLAG_32(res);
@@ -1671,7 +1671,7 @@ M68KMAKE_OP(addx, 32, mm, .)
        res = MASK_OUT_ABOVE_32(res);
        FLAG_Z |= res;
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 }
 
 
@@ -1738,42 +1738,42 @@ M68KMAKE_OP(and, 32, er, .)
 M68KMAKE_OP(and, 8, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint res = DX & m68ki_read_8(ea);
+       uint res = DX & m68ki_read_8(state, ea);
 
        FLAG_N = NFLAG_8(res);
        FLAG_C = CFLAG_CLEAR;
        FLAG_V = VFLAG_CLEAR;
        FLAG_Z = MASK_OUT_ABOVE_8(res);
 
-       m68ki_write_8(ea, FLAG_Z);
+       m68ki_write_8(state, ea, FLAG_Z);
 }
 
 
 M68KMAKE_OP(and, 16, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint res = DX & m68ki_read_16(ea);
+       uint res = DX & m68ki_read_16(state, ea);
 
        FLAG_N = NFLAG_16(res);
        FLAG_C = CFLAG_CLEAR;
        FLAG_V = VFLAG_CLEAR;
        FLAG_Z = MASK_OUT_ABOVE_16(res);
 
-       m68ki_write_16(ea, FLAG_Z);
+       m68ki_write_16(state, ea, FLAG_Z);
 }
 
 
 M68KMAKE_OP(and, 32, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint res = DX & m68ki_read_32(ea);
+       uint res = DX & m68ki_read_32(state, ea);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
        FLAG_C = CFLAG_CLEAR;
        FLAG_V = VFLAG_CLEAR;
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 }
 
 
@@ -1791,14 +1791,14 @@ M68KMAKE_OP(andi, 8, ., .)
 {
        uint src = OPER_I_8(state);
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint res = src & m68ki_read_8(ea);
+       uint res = src & m68ki_read_8(state, ea);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
        FLAG_C = CFLAG_CLEAR;
        FLAG_V = VFLAG_CLEAR;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -1816,14 +1816,14 @@ M68KMAKE_OP(andi, 16, ., .)
 {
        uint src = OPER_I_16(state);
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint res = src & m68ki_read_16(ea);
+       uint res = src & m68ki_read_16(state, ea);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
        FLAG_C = CFLAG_CLEAR;
        FLAG_V = VFLAG_CLEAR;
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 }
 
 
@@ -1841,14 +1841,14 @@ M68KMAKE_OP(andi, 32, ., .)
 {
        uint src = OPER_I_32(state);
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint res = src & m68ki_read_32(ea);
+       uint res = src & m68ki_read_32(state, ea);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
        FLAG_C = CFLAG_CLEAR;
        FLAG_V = VFLAG_CLEAR;
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 }
 
 
@@ -1867,7 +1867,7 @@ M68KMAKE_OP(andi, 16, tos, .)
                m68ki_set_sr(state, m68ki_get_sr() & src);
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -2096,13 +2096,13 @@ M68KMAKE_OP(asr, 32, r, .)
 M68KMAKE_OP(asr, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint src = m68ki_read_16(ea);
+       uint src = m68ki_read_16(state, ea);
        uint res = src >> 1;
 
        if(GET_MSB_16(src))
                res |= 0x8000;
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -2285,10 +2285,10 @@ M68KMAKE_OP(asl, 32, r, .)
 M68KMAKE_OP(asl, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint src = m68ki_read_16(ea);
+       uint src = m68ki_read_16(state, ea);
        uint res = MASK_OUT_ABOVE_16(src << 1);
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -2366,11 +2366,11 @@ M68KMAKE_OP(bchg, 32, r, d)
 M68KMAKE_OP(bchg, 8, r, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint src = m68ki_read_8(ea);
+       uint src = m68ki_read_8(state, ea);
        uint mask = 1 << (DX & 7);
 
        FLAG_Z = src & mask;
-       m68ki_write_8(ea, src ^ mask);
+       m68ki_write_8(state, ea, src ^ mask);
 }
 
 
@@ -2388,10 +2388,10 @@ M68KMAKE_OP(bchg, 8, s, .)
 {
        uint mask = 1 << (OPER_I_8(state) & 7);
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint src = m68ki_read_8(ea);
+       uint src = m68ki_read_8(state, ea);
 
        FLAG_Z = src & mask;
-       m68ki_write_8(ea, src ^ mask);
+       m68ki_write_8(state, ea, src ^ mask);
 }
 
 
@@ -2408,11 +2408,11 @@ M68KMAKE_OP(bclr, 32, r, d)
 M68KMAKE_OP(bclr, 8, r, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint src = m68ki_read_8(ea);
+       uint src = m68ki_read_8(state, ea);
        uint mask = 1 << (DX & 7);
 
        FLAG_Z = src & mask;
-       m68ki_write_8(ea, src & ~mask);
+       m68ki_write_8(state, ea, src & ~mask);
 }
 
 
@@ -2430,10 +2430,10 @@ M68KMAKE_OP(bclr, 8, s, .)
 {
        uint mask = 1 << (OPER_I_8(state) & 7);
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint src = m68ki_read_8(ea);
+       uint src = m68ki_read_8(state, ea);
 
        FLAG_Z = src & mask;
-       m68ki_write_8(ea, src & ~mask);
+       m68ki_write_8(state, ea, src & ~mask);
 }
 
 
@@ -2468,7 +2468,7 @@ M68KMAKE_OP(bfchg, 32, ., d)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2505,24 +2505,24 @@ M68KMAKE_OP(bfchg, 32, ., .)
                mask_base = MASK_OUT_ABOVE_32(0xffffffff << (32 - width));
                mask_long = mask_base >> offset;
 
-               data_long = m68ki_read_32(ea);
+               data_long = m68ki_read_32(state, ea);
                FLAG_N = NFLAG_32(data_long << offset);
                FLAG_Z = data_long & mask_long;
                FLAG_V = VFLAG_CLEAR;
                FLAG_C = CFLAG_CLEAR;
 
-               m68ki_write_32(ea, data_long ^ mask_long);
+               m68ki_write_32(state, ea, data_long ^ mask_long);
 
                if((width + offset) > 32)
                {
                        mask_byte = MASK_OUT_ABOVE_8(mask_base) << (8-offset);
-                       data_byte = m68ki_read_8(ea+4);
+                       data_byte = m68ki_read_8(state, ea+4);
                        FLAG_Z |= (data_byte & mask_byte);
-                       m68ki_write_8(ea+4, data_byte ^ mask_byte);
+                       m68ki_write_8(state, ea+4, data_byte ^ mask_byte);
                }
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2559,7 +2559,7 @@ M68KMAKE_OP(bfclr, 32, ., d)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2596,24 +2596,24 @@ M68KMAKE_OP(bfclr, 32, ., .)
                mask_base = MASK_OUT_ABOVE_32(0xffffffff << (32 - width));
                mask_long = mask_base >> offset;
 
-               data_long = m68ki_read_32(ea);
+               data_long = m68ki_read_32(state, ea);
                FLAG_N = NFLAG_32(data_long << offset);
                FLAG_Z = data_long & mask_long;
                FLAG_V = VFLAG_CLEAR;
                FLAG_C = CFLAG_CLEAR;
 
-               m68ki_write_32(ea, data_long & ~mask_long);
+               m68ki_write_32(state, ea, data_long & ~mask_long);
 
                if((width + offset) > 32)
                {
                        mask_byte = MASK_OUT_ABOVE_8(mask_base) << (8-offset);
-                       data_byte = m68ki_read_8(ea+4);
+                       data_byte = m68ki_read_8(state, ea+4);
                        FLAG_Z |= (data_byte & mask_byte);
-                       m68ki_write_8(ea+4, data_byte & ~mask_byte);
+                       m68ki_write_8(state, ea+4, data_byte & ~mask_byte);
                }
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2647,7 +2647,7 @@ M68KMAKE_OP(bfexts, 32, ., d)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2679,13 +2679,13 @@ M68KMAKE_OP(bfexts, 32, ., .)
                }
                width = ((width-1) & 31) + 1;
 
-               data = (offset+width) < 8 ? (m68ki_read_8(ea) << 24) :
-                       (offset+width) < 16 ? (m68ki_read_16(ea) << 16) : m68ki_read_32(ea);
+               data = (offset+width) < 8 ? (m68ki_read_8(state, ea) << 24) :
+                       (offset+width) < 16 ? (m68ki_read_16(state, ea) << 16) : m68ki_read_32(state, ea);
 
                data = MASK_OUT_ABOVE_32(data<<offset);
 
                if((offset+width) > 32)
-                       data |= (m68ki_read_8(ea+4) << offset) >> 8;
+                       data |= (m68ki_read_8(state, ea+4) << offset) >> 8;
 
                FLAG_N = NFLAG_32(data);
                data  = MAKE_INT_32(data) >> (32 - width);
@@ -2698,7 +2698,7 @@ M68KMAKE_OP(bfexts, 32, ., .)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2732,7 +2732,7 @@ M68KMAKE_OP(bfextu, 32, ., d)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2764,12 +2764,12 @@ M68KMAKE_OP(bfextu, 32, ., .)
                }
                width = ((width-1) & 31) + 1;
 
-       data = (offset+width) < 8 ? (m68ki_read_8(ea) << 24) :
-                       (offset+width) < 16 ? (m68ki_read_16(ea) << 16) : m68ki_read_32(ea);
+       data = (offset+width) < 8 ? (m68ki_read_8(state, ea) << 24) :
+                       (offset+width) < 16 ? (m68ki_read_16(state, ea) << 16) : m68ki_read_32(state, ea);
                data = MASK_OUT_ABOVE_32(data<<offset);
 
                if((offset+width) > 32)
-                       data |= (m68ki_read_8(ea+4) << offset) >> 8;
+                       data |= (m68ki_read_8(state, ea+4) << offset) >> 8;
 
                FLAG_N = NFLAG_32(data);
                data  >>= (32 - width);
@@ -2782,7 +2782,7 @@ M68KMAKE_OP(bfextu, 32, ., .)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2820,7 +2820,7 @@ M68KMAKE_OP(bfffo, 32, ., d)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2852,11 +2852,11 @@ M68KMAKE_OP(bfffo, 32, ., .)
                }
                width = ((width-1) & 31) + 1;
 
-               data = (offset+width) < 16 ? (m68ki_read_16(ea) << 16) : m68ki_read_32(ea);
+               data = (offset+width) < 16 ? (m68ki_read_16(state, ea) << 16) : m68ki_read_32(state, ea);
                data = MASK_OUT_ABOVE_32(data<<local_offset);
 
                if((local_offset+width) > 32)
-                       data |= (m68ki_read_8(ea+4) << local_offset) >> 8;
+                       data |= (m68ki_read_8(state, ea+4) << local_offset) >> 8;
 
                FLAG_N = NFLAG_32(data);
                data  >>= (32 - width);
@@ -2872,7 +2872,7 @@ M68KMAKE_OP(bfffo, 32, ., .)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2914,7 +2914,7 @@ M68KMAKE_OP(bfins, 32, ., d)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -2961,30 +2961,30 @@ M68KMAKE_OP(bfins, 32, ., .)
                FLAG_Z = insert_base;
                insert_long = insert_base >> offset;
 
-               data_long = (offset+width) < 8 ? (m68ki_read_8(ea) << 24) :
-                               (offset+width) < 16 ? (m68ki_read_16(ea) << 16) : m68ki_read_32(ea);
+               data_long = (offset+width) < 8 ? (m68ki_read_8(state, ea) << 24) :
+                               (offset+width) < 16 ? (m68ki_read_16(state, ea) << 16) : m68ki_read_32(state, ea);
                FLAG_V = VFLAG_CLEAR;
                FLAG_C = CFLAG_CLEAR;
 
                if((width + offset) < 8) {
-                       m68ki_write_8(ea, ((data_long & ~mask_long) | insert_long) >> 24);
+                       m68ki_write_8(state, ea, ((data_long & ~mask_long) | insert_long) >> 24);
                } else if((width + offset) < 16) {
-                       m68ki_write_16(ea, ((data_long & ~mask_long) | insert_long) >> 16);
+                       m68ki_write_16(state, ea, ((data_long & ~mask_long) | insert_long) >> 16);
                } else {
-                       m68ki_write_32(ea, (data_long & ~mask_long) | insert_long);
+                       m68ki_write_32(state, ea, (data_long & ~mask_long) | insert_long);
                }
 
                if((width + offset) > 32)
                {
                        mask_byte = MASK_OUT_ABOVE_8(mask_base);
                        insert_byte = MASK_OUT_ABOVE_8(insert_base);
-                       data_byte = m68ki_read_8(ea+4);
+                       data_byte = m68ki_read_8(state, ea+4);
                        FLAG_Z |= (data_byte & mask_byte);
-                       m68ki_write_8(ea+4, (data_byte & ~mask_byte) | insert_byte);
+                       m68ki_write_8(state, ea+4, (data_byte & ~mask_byte) | insert_byte);
                }
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3021,7 +3021,7 @@ M68KMAKE_OP(bfset, 32, ., d)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3059,24 +3059,24 @@ M68KMAKE_OP(bfset, 32, ., .)
                mask_base = MASK_OUT_ABOVE_32(0xffffffff << (32 - width));
                mask_long = mask_base >> offset;
 
-               data_long = m68ki_read_32(ea);
+               data_long = m68ki_read_32(state, ea);
                FLAG_N = NFLAG_32(data_long << offset);
                FLAG_Z = data_long & mask_long;
                FLAG_V = VFLAG_CLEAR;
                FLAG_C = CFLAG_CLEAR;
 
-               m68ki_write_32(ea, data_long | mask_long);
+               m68ki_write_32(state, ea, data_long | mask_long);
 
                if((width + offset) > 32)
                {
                        mask_byte = MASK_OUT_ABOVE_8(mask_base);
-                       data_byte = m68ki_read_8(ea+4);
+                       data_byte = m68ki_read_8(state, ea+4);
                        FLAG_Z |= (data_byte & mask_byte);
-                       m68ki_write_8(ea+4, data_byte | mask_byte);
+                       m68ki_write_8(state, ea+4, data_byte | mask_byte);
                }
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3111,7 +3111,7 @@ M68KMAKE_OP(bftst, 32, ., d)
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3148,7 +3148,7 @@ M68KMAKE_OP(bftst, 32, ., .)
                mask_base = MASK_OUT_ABOVE_32(0xffffffff << (32 - width));
                mask_long = mask_base >> offset;
 
-               data_long = m68ki_read_32(ea);
+               data_long = m68ki_read_32(state, ea);
                FLAG_N = ((data_long & (0x80000000 >> offset))<<offset)>>24;
                FLAG_Z = data_long & mask_long;
                FLAG_V = VFLAG_CLEAR;
@@ -3157,12 +3157,12 @@ M68KMAKE_OP(bftst, 32, ., .)
                if((width + offset) > 32)
                {
                        mask_byte = MASK_OUT_ABOVE_8(mask_base);
-                       data_byte = m68ki_read_8(ea+4);
+                       data_byte = m68ki_read_8(state, ea+4);
                        FLAG_Z |= (data_byte & mask_byte);
                }
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3173,7 +3173,7 @@ M68KMAKE_OP(bkpt, 0, ., .)
        {
                m68ki_bkpt_ack(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE) ? REG_IR & 7 : 0);      /* auto-disable (see m68kcpu.h) */
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3215,7 +3215,7 @@ M68KMAKE_OP(bra, 32, ., .)
        else
        {
 // TODO: review this...
-               m68ki_exception_illegal();
+               m68ki_exception_illegal(state);
 //             m68ki_trace_t0();                                  /* auto-disable (see m68kcpu.h) */
 //             m68ki_branch_8(MASK_OUT_ABOVE_8(REG_IR));
 //             if(REG_PC == REG_PPC)
@@ -3237,11 +3237,11 @@ M68KMAKE_OP(bset, 32, r, d)
 M68KMAKE_OP(bset, 8, r, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint src = m68ki_read_8(ea);
+       uint src = m68ki_read_8(state, ea);
        uint mask = 1 << (DX & 7);
 
        FLAG_Z = src & mask;
-       m68ki_write_8(ea, src | mask);
+       m68ki_write_8(state, ea, src | mask);
 }
 
 
@@ -3259,17 +3259,17 @@ M68KMAKE_OP(bset, 8, s, .)
 {
        uint mask = 1 << (OPER_I_8(state) & 7);
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint src = m68ki_read_8(ea);
+       uint src = m68ki_read_8(state, ea);
 
        FLAG_Z = src & mask;
-       m68ki_write_8(ea, src | mask);
+       m68ki_write_8(state, ea, src | mask);
 }
 
 
 M68KMAKE_OP(bsr, 8, ., .)
 {
        m68ki_trace_t0();                                  /* auto-disable (see m68kcpu.h) */
-       m68ki_push_32(REG_PC);
+       m68ki_push_32(state, REG_PC);
        m68ki_branch_8(MASK_OUT_ABOVE_8(REG_IR));
 }
 
@@ -3278,7 +3278,7 @@ M68KMAKE_OP(bsr, 16, ., .)
 {
        uint offset = OPER_I_16(state);
        m68ki_trace_t0();                          /* auto-disable (see m68kcpu.h) */
-       m68ki_push_32(REG_PC);
+       m68ki_push_32(state, REG_PC);
        REG_PC -= 2;
        m68ki_branch_16(offset);
 }
@@ -3290,7 +3290,7 @@ M68KMAKE_OP(bsr, 32, ., .)
        {
                uint offset = OPER_I_32(state);
                m68ki_trace_t0();                          /* auto-disable (see m68kcpu.h) */
-               m68ki_push_32(REG_PC);
+               m68ki_push_32(state, REG_PC);
                REG_PC -= 4;
                m68ki_branch_32(offset);
                return;
@@ -3298,9 +3298,9 @@ M68KMAKE_OP(bsr, 32, ., .)
        else
        {
 // TODO: review this...
-               m68ki_exception_illegal();
+               m68ki_exception_illegal(state);
 //             m68ki_trace_t0();                                  /* auto-disable (see m68kcpu.h) */
-//             m68ki_push_32(REG_PC);
+//             m68ki_push_32(state, REG_PC);
 //             m68ki_branch_8(MASK_OUT_ABOVE_8(REG_IR));
        }
 }
@@ -3347,7 +3347,7 @@ M68KMAKE_OP(callm, 32, ., .)
                                         m68ki_disassemble_quick(ADDRESS_68K(REG_PC - 2),CPU_TYPE)));
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3357,7 +3357,7 @@ M68KMAKE_OP(cas, 8, ., .)
        {
                uint word2 = OPER_I_16(state);
                uint ea = M68KMAKE_GET_EA_AY_8;
-               uint dest = m68ki_read_8(ea);
+               uint dest = m68ki_read_8(state, ea);
                uint* compare = &REG_D[word2 & 7];
                uint res = dest - MASK_OUT_ABOVE_8(*compare);
 
@@ -3372,11 +3372,11 @@ M68KMAKE_OP(cas, 8, ., .)
                else
                {
                        USE_CYCLES(3);
-                       m68ki_write_8(ea, MASK_OUT_ABOVE_8(REG_D[(word2 >> 6) & 7]));
+                       m68ki_write_8(state, ea, MASK_OUT_ABOVE_8(REG_D[(word2 >> 6) & 7]));
                }
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3386,7 +3386,7 @@ M68KMAKE_OP(cas, 16, ., .)
        {
                uint word2 = OPER_I_16(state);
                uint ea = M68KMAKE_GET_EA_AY_16;
-               uint dest = m68ki_read_16(ea);
+               uint dest = m68ki_read_16(state, ea);
                uint* compare = &REG_D[word2 & 7];
                uint res = dest - MASK_OUT_ABOVE_16(*compare);
 
@@ -3401,11 +3401,11 @@ M68KMAKE_OP(cas, 16, ., .)
                else
                {
                        USE_CYCLES(3);
-                       m68ki_write_16(ea, MASK_OUT_ABOVE_16(REG_D[(word2 >> 6) & 7]));
+                       m68ki_write_16(state, ea, MASK_OUT_ABOVE_16(REG_D[(word2 >> 6) & 7]));
                }
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3415,7 +3415,7 @@ M68KMAKE_OP(cas, 32, ., .)
        {
                uint word2 = OPER_I_16(state);
                uint ea = M68KMAKE_GET_EA_AY_32;
-               uint dest = m68ki_read_32(ea);
+               uint dest = m68ki_read_32(state, ea);
                uint* compare = &REG_D[word2 & 7];
                uint res = dest - *compare;
 
@@ -3430,11 +3430,11 @@ M68KMAKE_OP(cas, 32, ., .)
                else
                {
                        USE_CYCLES(3);
-                       m68ki_write_32(ea, REG_D[(word2 >> 6) & 7]);
+                       m68ki_write_32(state, ea, REG_D[(word2 >> 6) & 7]);
                }
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3445,11 +3445,11 @@ M68KMAKE_OP(cas2, 16, ., .)
                uint word2 = OPER_I_32(state);
                uint* compare1 = &REG_D[(word2 >> 16) & 7];
                uint ea1 = REG_DA[(word2 >> 28) & 15];
-               uint dest1 = m68ki_read_16(ea1);
+               uint dest1 = m68ki_read_16(state, ea1);
                uint res1 = dest1 - MASK_OUT_ABOVE_16(*compare1);
                uint* compare2 = &REG_D[word2 & 7];
                uint ea2 = REG_DA[(word2 >> 12) & 15];
-               uint dest2 = m68ki_read_16(ea2);
+               uint dest2 = m68ki_read_16(state, ea2);
                uint res2;
 
                m68ki_trace_t0();                          /* auto-disable (see m68kcpu.h) */
@@ -3470,8 +3470,8 @@ M68KMAKE_OP(cas2, 16, ., .)
                        if(COND_EQ())
                        {
                                USE_CYCLES(3);
-                               m68ki_write_16(ea1, REG_D[(word2 >> 22) & 7]);
-                               m68ki_write_16(ea2, REG_D[(word2 >> 6) & 7]);
+                               m68ki_write_16(state, ea1, REG_D[(word2 >> 22) & 7]);
+                               m68ki_write_16(state, ea2, REG_D[(word2 >> 6) & 7]);
                                return;
                        }
                }
@@ -3479,7 +3479,7 @@ M68KMAKE_OP(cas2, 16, ., .)
                *compare2 = BIT_F(word2) ? (uint)MAKE_INT_16(dest2) : MASK_OUT_BELOW_16(*compare2) | dest2;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3490,11 +3490,11 @@ M68KMAKE_OP(cas2, 32, ., .)
                uint word2 = OPER_I_32(state);
                uint* compare1 = &REG_D[(word2 >> 16) & 7];
                uint ea1 = REG_DA[(word2 >> 28) & 15];
-               uint dest1 = m68ki_read_32(ea1);
+               uint dest1 = m68ki_read_32(state, ea1);
                uint res1 = dest1 - *compare1;
                uint* compare2 = &REG_D[word2 & 7];
                uint ea2 = REG_DA[(word2 >> 12) & 15];
-               uint dest2 = m68ki_read_32(ea2);
+               uint dest2 = m68ki_read_32(state, ea2);
                uint res2;
 
                m68ki_trace_t0();                          /* auto-disable (see m68kcpu.h) */
@@ -3515,8 +3515,8 @@ M68KMAKE_OP(cas2, 32, ., .)
                        if(COND_EQ())
                        {
                                USE_CYCLES(3);
-                               m68ki_write_32(ea1, REG_D[(word2 >> 22) & 7]);
-                               m68ki_write_32(ea2, REG_D[(word2 >> 6) & 7]);
+                               m68ki_write_32(state, ea1, REG_D[(word2 >> 22) & 7]);
+                               m68ki_write_32(state, ea2, REG_D[(word2 >> 6) & 7]);
                                return;
                        }
                }
@@ -3524,7 +3524,7 @@ M68KMAKE_OP(cas2, 32, ., .)
                *compare2 = dest2;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3542,7 +3542,7 @@ M68KMAKE_OP(chk, 16, ., d)
                return;
        }
        FLAG_N = (src < 0)<<7;
-       m68ki_exception_trap(EXCEPTION_CHK);
+       m68ki_exception_trap(state, EXCEPTION_CHK);
 }
 
 
@@ -3560,7 +3560,7 @@ M68KMAKE_OP(chk, 16, ., .)
                return;
        }
        FLAG_N = (src < 0)<<7;
-       m68ki_exception_trap(EXCEPTION_CHK);
+       m68ki_exception_trap(state, EXCEPTION_CHK);
 }
 
 
@@ -3580,10 +3580,10 @@ M68KMAKE_OP(chk, 32, ., d)
                        return;
                }
                FLAG_N = (src < 0)<<7;
-               m68ki_exception_trap(EXCEPTION_CHK);
+               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3603,10 +3603,10 @@ M68KMAKE_OP(chk, 32, ., .)
                        return;
                }
                FLAG_N = (src < 0)<<7;
-               m68ki_exception_trap(EXCEPTION_CHK);
+               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3620,8 +3620,8 @@ M68KMAKE_OP(chk2cmp2, 8, ., pcdi)
                        compare &= 0xff;
 
                uint ea = EA_PCDI_8();
-               sint lower_bound = m68ki_read_pcrel_8(ea);
-               sint upper_bound = m68ki_read_pcrel_8(ea + 1);
+               sint lower_bound = m68ki_read_pcrel_8(state, ea);
+               sint upper_bound = m68ki_read_pcrel_8(state, ea + 1);
 
                // for signed compare, the arithmetically smaller value is the lower bound
                if (lower_bound & 0x80) {
@@ -3636,12 +3636,12 @@ M68KMAKE_OP(chk2cmp2, 8, ., pcdi)
                FLAG_Z = ((upper_bound == compare) || (lower_bound == compare)) ? 0 : 1;
 
                if(COND_CS() && BIT_B(word2))
-                               m68ki_exception_trap(EXCEPTION_CHK);
+                               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
        }
 
 
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3655,8 +3655,8 @@ M68KMAKE_OP(chk2cmp2, 8, ., pcix)
                        compare &= 0xff;
 
                uint ea = EA_PCIX_8();
-               sint lower_bound = m68ki_read_pcrel_8(ea);
-               sint upper_bound = m68ki_read_pcrel_8(ea + 1);
+               sint lower_bound = m68ki_read_pcrel_8(state, ea);
+               sint upper_bound = m68ki_read_pcrel_8(state, ea + 1);
 
                if (lower_bound & 0x80) {
                        lower_bound = (int32)(int8)lower_bound;
@@ -3670,11 +3670,11 @@ M68KMAKE_OP(chk2cmp2, 8, ., pcix)
                FLAG_Z = ((upper_bound == compare) || (lower_bound == compare)) ? 0 : 1;
 
                if(COND_CS() && BIT_B(word2))
-                               m68ki_exception_trap(EXCEPTION_CHK);
+                               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
 
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3688,8 +3688,8 @@ M68KMAKE_OP(chk2cmp2, 8, ., .)
                        compare &= 0xff;
 
                uint ea = M68KMAKE_GET_EA_AY_8;
-               sint lower_bound = (int8)m68ki_read_8(ea);
-               sint upper_bound = (int8)m68ki_read_8(ea + 1);
+               sint lower_bound = (int8)m68ki_read_8(state, ea);
+               sint upper_bound = (int8)m68ki_read_8(state, ea + 1);
 
                // for signed compare, the arithmetically smaller value is the lower bound
                if (lower_bound & 0x80) {
@@ -3704,10 +3704,10 @@ M68KMAKE_OP(chk2cmp2, 8, ., .)
                FLAG_Z = ((upper_bound == compare) || (lower_bound == compare)) ? 0 : 1;
 
                if(COND_CS() && BIT_B(word2))
-                               m68ki_exception_trap(EXCEPTION_CHK);
+                               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3721,8 +3721,8 @@ M68KMAKE_OP(chk2cmp2, 16, ., pcdi)
                        compare &= 0xffff;
 
                uint ea = EA_PCDI_16();
-               sint lower_bound = (int16)m68ki_read_pcrel_16(ea);
-               sint upper_bound = (int16)m68ki_read_pcrel_16(ea + 2);
+               sint lower_bound = (int16)m68ki_read_pcrel_16(state, ea);
+               sint upper_bound = (int16)m68ki_read_pcrel_16(state, ea + 2);
 
                // for signed compare, the arithmetically smaller value is the lower bound
                if (lower_bound & 0x8000) {
@@ -3737,10 +3737,10 @@ M68KMAKE_OP(chk2cmp2, 16, ., pcdi)
                FLAG_Z = ((upper_bound == compare) || (lower_bound == compare)) ? 0 : 1;
 
                if(COND_CS() && BIT_B(word2))
-                               m68ki_exception_trap(EXCEPTION_CHK);
+                               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3754,8 +3754,8 @@ M68KMAKE_OP(chk2cmp2, 16, ., pcix)
                        compare &= 0xffff;
 
                uint ea = EA_PCIX_16();
-               sint lower_bound = (int16)m68ki_read_pcrel_16(ea);
-               sint upper_bound = (int16)m68ki_read_pcrel_16(ea + 2);
+               sint lower_bound = (int16)m68ki_read_pcrel_16(state, ea);
+               sint upper_bound = (int16)m68ki_read_pcrel_16(state, ea + 2);
 
                // for signed compare, the arithmetically smaller value is the lower bound
                if (lower_bound & 0x8000) {
@@ -3770,10 +3770,10 @@ M68KMAKE_OP(chk2cmp2, 16, ., pcix)
                FLAG_Z = ((upper_bound == compare) || (lower_bound == compare)) ? 0 : 1;
 
                if(COND_CS() && BIT_B(word2))
-                               m68ki_exception_trap(EXCEPTION_CHK);
+                               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3787,8 +3787,8 @@ M68KMAKE_OP(chk2cmp2, 16, ., .)
                        compare &= 0xffff;
 
                uint ea = M68KMAKE_GET_EA_AY_16;
-               sint lower_bound = (int16)m68ki_read_16(ea);
-               sint upper_bound = (int16)m68ki_read_16(ea + 2);
+               sint lower_bound = (int16)m68ki_read_16(state, ea);
+               sint upper_bound = (int16)m68ki_read_16(state, ea + 2);
 
                // for signed compare, the arithmetically smaller value is the lower bound
                if (lower_bound & 0x8000) {
@@ -3803,10 +3803,10 @@ M68KMAKE_OP(chk2cmp2, 16, ., .)
                FLAG_Z = ((upper_bound == compare) || (lower_bound == compare)) ? 0 : 1;
 
                if(COND_CS() && BIT_B(word2))
-                               m68ki_exception_trap(EXCEPTION_CHK);
+                               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3817,8 +3817,8 @@ M68KMAKE_OP(chk2cmp2, 32, ., pcdi)
                uint32 word2 = OPER_I_16(state);
                sint64 compare = REG_DA[(word2 >> 12) & 15];
                uint32 ea = EA_PCDI_32();
-               sint64 lower_bound = m68ki_read_pcrel_32(ea);
-               sint64 upper_bound = m68ki_read_pcrel_32(ea + 4);
+               sint64 lower_bound = m68ki_read_pcrel_32(state, ea);
+               sint64 upper_bound = m68ki_read_pcrel_32(state, ea + 4);
 
                // for signed compare, the arithmetically smaller value is the lower bound
                if (lower_bound & 0x80000000) {
@@ -3831,10 +3831,10 @@ M68KMAKE_OP(chk2cmp2, 32, ., pcdi)
                FLAG_Z = ((upper_bound == compare) || (lower_bound == compare)) ? 0 : 1;
 
                if(COND_CS() && BIT_B(word2))
-                               m68ki_exception_trap(EXCEPTION_CHK);
+                               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3845,8 +3845,8 @@ M68KMAKE_OP(chk2cmp2, 32, ., pcix)
                uint32 word2 = OPER_I_16(state);
                sint64 compare = REG_DA[(word2 >> 12) & 15];
                uint32 ea = EA_PCIX_32();
-               sint64 lower_bound = m68ki_read_32(ea);
-               sint64 upper_bound = m68ki_read_32(ea + 4);
+               sint64 lower_bound = m68ki_read_32(state, ea);
+               sint64 upper_bound = m68ki_read_32(state, ea + 4);
 
                // for signed compare, the arithmetically smaller value is the lower bound
                if (lower_bound & 0x80000000) {
@@ -3859,10 +3859,10 @@ M68KMAKE_OP(chk2cmp2, 32, ., pcix)
                FLAG_Z = ((upper_bound == compare) || (lower_bound == compare)) ? 0 : 1;
 
                if(COND_CS() && BIT_B(word2))
-                               m68ki_exception_trap(EXCEPTION_CHK);
+                               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3873,8 +3873,8 @@ M68KMAKE_OP(chk2cmp2, 32, ., .)
                uint32 word2 = OPER_I_16(state);
                sint64 compare = REG_DA[(word2 >> 12) & 15];
                uint32 ea = M68KMAKE_GET_EA_AY_32;
-               sint64 lower_bound = m68ki_read_32(ea);
-               sint64 upper_bound = m68ki_read_32(ea + 4);
+               sint64 lower_bound = m68ki_read_32(state, ea);
+               sint64 upper_bound = m68ki_read_32(state, ea + 4);
 
                // for signed compare, the arithmetically smaller value is the lower bound
                if (lower_bound & 0x80000000) {
@@ -3887,10 +3887,10 @@ M68KMAKE_OP(chk2cmp2, 32, ., .)
                FLAG_Z = ((upper_bound == compare) || (lower_bound == compare)) ? 0 : 1;
 
                if(COND_CS() && BIT_B(word2))
-                               m68ki_exception_trap(EXCEPTION_CHK);
+                               m68ki_exception_trap(state, EXCEPTION_CHK);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -3910,8 +3910,8 @@ M68KMAKE_OP(clr, 8, ., .)
        uint32 ea = M68KMAKE_GET_EA_AY_8;
 
        if(CPU_TYPE_IS_000(CPU_TYPE))
-               m68ki_read_8(ea);   /* the 68000 does a dummy read, the value is discarded */
-       m68ki_write_8(ea, 0);
+               m68ki_read_8(state, ea);   /* the 68000 does a dummy read, the value is discarded */
+       m68ki_write_8(state, ea, 0);
 
        FLAG_N = NFLAG_CLEAR;
        FLAG_V = VFLAG_CLEAR;
@@ -3936,8 +3936,8 @@ M68KMAKE_OP(clr, 16, ., .)
        uint32 ea = M68KMAKE_GET_EA_AY_16;
 
        if(CPU_TYPE_IS_000(CPU_TYPE))
-               m68ki_read_16(ea);  /* the 68000 does a dummy read, the value is discarded */
-       m68ki_write_16(ea, 0);
+               m68ki_read_16(state, ea);  /* the 68000 does a dummy read, the value is discarded */
+       m68ki_write_16(state, ea, 0);
 
        FLAG_N = NFLAG_CLEAR;
        FLAG_V = VFLAG_CLEAR;
@@ -3962,8 +3962,8 @@ M68KMAKE_OP(clr, 32, ., .)
        uint32 ea = M68KMAKE_GET_EA_AY_32;
 
        if(CPU_TYPE_IS_000(CPU_TYPE))
-               m68ki_read_32(ea);  /* the 68000 does a dummy read, the value is discarded */
-       m68ki_write_32(ea, 0);
+               m68ki_read_32(state, ea);  /* the 68000 does a dummy read, the value is discarded */
+       m68ki_write_32(state, ea, 0);
 
        FLAG_N = NFLAG_CLEAR;
        FLAG_V = VFLAG_CLEAR;
@@ -4194,7 +4194,7 @@ M68KMAKE_OP(cmpi, 8, ., pcdi)
                FLAG_C = CFLAG_8(res);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -4212,7 +4212,7 @@ M68KMAKE_OP(cmpi, 8, ., pcix)
                FLAG_C = CFLAG_8(res);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -4256,7 +4256,7 @@ M68KMAKE_OP(cmpi, 16, ., pcdi)
                FLAG_C = CFLAG_16(res);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -4274,7 +4274,7 @@ M68KMAKE_OP(cmpi, 16, ., pcix)
                FLAG_C = CFLAG_16(res);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -4319,7 +4319,7 @@ M68KMAKE_OP(cmpi, 32, ., pcdi)
                FLAG_C = CFLAG_SUB_32(src, dst, res);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -4337,7 +4337,7 @@ M68KMAKE_OP(cmpi, 32, ., pcix)
                FLAG_C = CFLAG_SUB_32(src, dst, res);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -4428,7 +4428,7 @@ M68KMAKE_OP(cpbcc, 32, ., .)
                                         m68ki_disassemble_quick(ADDRESS_68K(REG_PC - 2),CPU_TYPE)));
                return;
        }
-       m68ki_exception_1111();
+       m68ki_exception_1111(state);
 }
 
 
@@ -4441,7 +4441,7 @@ M68KMAKE_OP(cpdbcc, 32, ., .)
                                         m68ki_disassemble_quick(ADDRESS_68K(REG_PC - 2),CPU_TYPE)));
                return;
        }
-       m68ki_exception_1111();
+       m68ki_exception_1111(state);
 }
 
 
@@ -4456,7 +4456,7 @@ M68KMAKE_OP(cpgen, 32, ., .)
                                         m68ki_disassemble_quick(ADDRESS_68K(REG_PC - 2),CPU_TYPE)));
                return;
        }
-       m68ki_exception_1111();
+       m68ki_exception_1111(state);
 }
 
 
@@ -4469,7 +4469,7 @@ M68KMAKE_OP(cpscc, 32, ., .)
                                         m68ki_disassemble_quick(ADDRESS_68K(REG_PC - 2),CPU_TYPE)));
                return;
        }
-       m68ki_exception_1111();
+       m68ki_exception_1111(state);
 }
 
 
@@ -4484,7 +4484,7 @@ M68KMAKE_OP(cptrapcc, 32, ., .)
         REG_PC += 4;
                return;
        }
-       m68ki_exception_1111();
+       m68ki_exception_1111(state);
 }
 
 M68KMAKE_OP(ftrapcc,32, ., .)
@@ -4493,7 +4493,7 @@ M68KMAKE_OP(ftrapcc,32, ., .)
        {
                m68881_ftrap(state);
        } else {
-               m68ki_exception_1111();
+               m68ki_exception_1111(state);
        }
 }
 
@@ -4581,7 +4581,7 @@ M68KMAKE_OP(divs, 16, ., d)
                FLAG_V = VFLAG_SET;
                return;
        }
-       m68ki_exception_trap(EXCEPTION_ZERO_DIVIDE);
+       m68ki_exception_trap(state, EXCEPTION_ZERO_DIVIDE);
 }
 
 
@@ -4618,7 +4618,7 @@ M68KMAKE_OP(divs, 16, ., .)
                FLAG_V = VFLAG_SET;
                return;
        }
-       m68ki_exception_trap(EXCEPTION_ZERO_DIVIDE);
+       m68ki_exception_trap(state, EXCEPTION_ZERO_DIVIDE);
 }
 
 
@@ -4644,7 +4644,7 @@ M68KMAKE_OP(divu, 16, ., d)
                FLAG_V = VFLAG_SET;
                return;
        }
-       m68ki_exception_trap(EXCEPTION_ZERO_DIVIDE);
+       m68ki_exception_trap(state, EXCEPTION_ZERO_DIVIDE);
 }
 
 
@@ -4670,7 +4670,7 @@ M68KMAKE_OP(divu, 16, ., .)
                FLAG_V = VFLAG_SET;
                return;
        }
-       m68ki_exception_trap(EXCEPTION_ZERO_DIVIDE);
+       m68ki_exception_trap(state, EXCEPTION_ZERO_DIVIDE);
 }
 
 
@@ -4739,10 +4739,10 @@ M68KMAKE_OP(divl, 32, ., d)
                        FLAG_C = CFLAG_CLEAR;
                        return;
                }
-               m68ki_exception_trap(EXCEPTION_ZERO_DIVIDE);
+               m68ki_exception_trap(state, EXCEPTION_ZERO_DIVIDE);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 
 #else
 
@@ -4876,10 +4876,10 @@ M68KMAKE_OP(divl, 32, ., d)
                        FLAG_C = CFLAG_CLEAR;
                        return;
                }
-               m68ki_exception_trap(EXCEPTION_ZERO_DIVIDE);
+               m68ki_exception_trap(state, EXCEPTION_ZERO_DIVIDE);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 
 #endif
 }
@@ -4950,10 +4950,10 @@ M68KMAKE_OP(divl, 32, ., .)
                        FLAG_C = CFLAG_CLEAR;
                        return;
                }
-               m68ki_exception_trap(EXCEPTION_ZERO_DIVIDE);
+               m68ki_exception_trap(state, EXCEPTION_ZERO_DIVIDE);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 
 #else
 
@@ -5087,10 +5087,10 @@ M68KMAKE_OP(divl, 32, ., .)
                        FLAG_C = CFLAG_CLEAR;
                        return;
                }
-               m68ki_exception_trap(EXCEPTION_ZERO_DIVIDE);
+               m68ki_exception_trap(state, EXCEPTION_ZERO_DIVIDE);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 
 #endif
 }
@@ -5110,9 +5110,9 @@ M68KMAKE_OP(eor, 8, ., d)
 M68KMAKE_OP(eor, 8, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint res = MASK_OUT_ABOVE_8(DX ^ m68ki_read_8(ea));
+       uint res = MASK_OUT_ABOVE_8(DX ^ m68ki_read_8(state, ea));
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5135,9 +5135,9 @@ M68KMAKE_OP(eor, 16, ., d)
 M68KMAKE_OP(eor, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint res = MASK_OUT_ABOVE_16(DX ^ m68ki_read_16(ea));
+       uint res = MASK_OUT_ABOVE_16(DX ^ m68ki_read_16(state, ea));
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -5160,9 +5160,9 @@ M68KMAKE_OP(eor, 32, ., d)
 M68KMAKE_OP(eor, 32, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint res = DX ^ m68ki_read_32(ea);
+       uint res = DX ^ m68ki_read_32(state, ea);
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -5186,9 +5186,9 @@ M68KMAKE_OP(eori, 8, ., .)
 {
        uint src = OPER_I_8(state);
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint res = src ^ m68ki_read_8(ea);
+       uint res = src ^ m68ki_read_8(state, ea);
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5212,9 +5212,9 @@ M68KMAKE_OP(eori, 16, ., .)
 {
        uint src = OPER_I_16(state);
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint res = src ^ m68ki_read_16(ea);
+       uint res = src ^ m68ki_read_16(state, ea);
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -5238,9 +5238,9 @@ M68KMAKE_OP(eori, 32, ., .)
 {
        uint src = OPER_I_32(state);
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint res = src ^ m68ki_read_32(ea);
+       uint res = src ^ m68ki_read_32(state, ea);
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -5264,7 +5264,7 @@ M68KMAKE_OP(eori, 16, tos, .)
                m68ki_set_sr(state, m68ki_get_sr() ^ src);
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -5338,13 +5338,13 @@ M68KMAKE_OP(extb, 32, ., .)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
 M68KMAKE_OP(illegal, 0, ., .)
 {
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 M68KMAKE_OP(jmp, 32, ., .)
@@ -5358,7 +5358,7 @@ M68KMAKE_OP(jsr, 32, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_32;
        m68ki_trace_t0();                                  /* auto-disable (see m68kcpu.h) */
-       m68ki_push_32(REG_PC);
+       m68ki_push_32(state, REG_PC);
        m68ki_jump(ea);
 }
 
@@ -5372,7 +5372,7 @@ M68KMAKE_OP(lea, 32, ., .)
 M68KMAKE_OP(link, 16, ., a7)
 {
        REG_A[7] -= 4;
-       m68ki_write_32(REG_A[7], REG_A[7]);
+       m68ki_write_32(state, REG_A[7], REG_A[7]);
        REG_A[7] = MASK_OUT_ABOVE_32(REG_A[7] + MAKE_INT_16(OPER_I_16(state)));
 }
 
@@ -5381,7 +5381,7 @@ M68KMAKE_OP(link, 16, ., .)
 {
        uint* r_dst = &AY;
 
-       m68ki_push_32(*r_dst);
+       m68ki_push_32(state, *r_dst);
        *r_dst = REG_A[7];
        REG_A[7] = MASK_OUT_ABOVE_32(REG_A[7] + MAKE_INT_16(OPER_I_16(state)));
 }
@@ -5392,11 +5392,11 @@ M68KMAKE_OP(link, 32, ., a7)
        if(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
        {
                REG_A[7] -= 4;
-               m68ki_write_32(REG_A[7], REG_A[7]);
+               m68ki_write_32(state, REG_A[7], REG_A[7]);
                REG_A[7] = MASK_OUT_ABOVE_32(REG_A[7] + OPER_I_32(state));
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -5406,12 +5406,12 @@ M68KMAKE_OP(link, 32, ., .)
        {
                uint* r_dst = &AY;
 
-               m68ki_push_32(*r_dst);
+               m68ki_push_32(state, *r_dst);
                *r_dst = REG_A[7];
                REG_A[7] = MASK_OUT_ABOVE_32(REG_A[7] + OPER_I_32(state));
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -5585,10 +5585,10 @@ M68KMAKE_OP(lsr, 32, r, .)
 M68KMAKE_OP(lsr, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint src = m68ki_read_16(ea);
+       uint src = m68ki_read_16(state, ea);
        uint res = src >> 1;
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_CLEAR;
        FLAG_Z = res;
@@ -5767,10 +5767,10 @@ M68KMAKE_OP(lsl, 32, r, .)
 M68KMAKE_OP(lsl, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint src = m68ki_read_16(ea);
+       uint src = m68ki_read_16(state, ea);
        uint res = MASK_OUT_ABOVE_16(src << 1);
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -5812,7 +5812,7 @@ M68KMAKE_OP(move, 8, ai, d)
        uint res = MASK_OUT_ABOVE_8(DY);
        uint ea = EA_AX_AI_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5826,7 +5826,7 @@ M68KMAKE_OP(move, 8, ai, .)
        uint res = M68KMAKE_GET_OPER_AY_8;
        uint ea = EA_AX_AI_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5840,7 +5840,7 @@ M68KMAKE_OP(move, 8, pi7, d)
        uint res = MASK_OUT_ABOVE_8(DY);
        uint ea = EA_A7_PI_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5854,7 +5854,7 @@ M68KMAKE_OP(move, 8, pi, d)
        uint res = MASK_OUT_ABOVE_8(DY);
        uint ea = EA_AX_PI_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5868,7 +5868,7 @@ M68KMAKE_OP(move, 8, pi7, .)
        uint res = M68KMAKE_GET_OPER_AY_8;
        uint ea = EA_A7_PI_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5882,7 +5882,7 @@ M68KMAKE_OP(move, 8, pi, .)
        uint res = M68KMAKE_GET_OPER_AY_8;
        uint ea = EA_AX_PI_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5896,7 +5896,7 @@ M68KMAKE_OP(move, 8, pd7, d)
        uint res = MASK_OUT_ABOVE_8(DY);
        uint ea = EA_A7_PD_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5910,7 +5910,7 @@ M68KMAKE_OP(move, 8, pd, d)
        uint res = MASK_OUT_ABOVE_8(DY);
        uint ea = EA_AX_PD_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5924,7 +5924,7 @@ M68KMAKE_OP(move, 8, pd7, .)
        uint res = M68KMAKE_GET_OPER_AY_8;
        uint ea = EA_A7_PD_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5938,7 +5938,7 @@ M68KMAKE_OP(move, 8, pd, .)
        uint res = M68KMAKE_GET_OPER_AY_8;
        uint ea = EA_AX_PD_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5952,7 +5952,7 @@ M68KMAKE_OP(move, 8, di, d)
        uint res = MASK_OUT_ABOVE_8(DY);
        uint ea = EA_AX_DI_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5966,7 +5966,7 @@ M68KMAKE_OP(move, 8, di, .)
        uint res = M68KMAKE_GET_OPER_AY_8;
        uint ea = EA_AX_DI_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5980,7 +5980,7 @@ M68KMAKE_OP(move, 8, ix, d)
        uint res = MASK_OUT_ABOVE_8(DY);
        uint ea = EA_AX_IX_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -5994,7 +5994,7 @@ M68KMAKE_OP(move, 8, ix, .)
        uint res = M68KMAKE_GET_OPER_AY_8;
        uint ea = EA_AX_IX_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -6008,7 +6008,7 @@ M68KMAKE_OP(move, 8, aw, d)
        uint res = MASK_OUT_ABOVE_8(DY);
        uint ea = EA_AW_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -6022,7 +6022,7 @@ M68KMAKE_OP(move, 8, aw, .)
        uint res = M68KMAKE_GET_OPER_AY_8;
        uint ea = EA_AW_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -6036,7 +6036,7 @@ M68KMAKE_OP(move, 8, al, d)
        uint res = MASK_OUT_ABOVE_8(DY);
        uint ea = EA_AL_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -6050,7 +6050,7 @@ M68KMAKE_OP(move, 8, al, .)
        uint res = M68KMAKE_GET_OPER_AY_8;
        uint ea = EA_AL_8();
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -6106,7 +6106,7 @@ M68KMAKE_OP(move, 16, ai, d)
        uint res = MASK_OUT_ABOVE_16(DY);
        uint ea = EA_AX_AI_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6120,7 +6120,7 @@ M68KMAKE_OP(move, 16, ai, a)
        uint res = MASK_OUT_ABOVE_16(AY);
        uint ea = EA_AX_AI_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6134,7 +6134,7 @@ M68KMAKE_OP(move, 16, ai, .)
        uint res = M68KMAKE_GET_OPER_AY_16;
        uint ea = EA_AX_AI_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6148,7 +6148,7 @@ M68KMAKE_OP(move, 16, pi, d)
        uint res = MASK_OUT_ABOVE_16(DY);
        uint ea = EA_AX_PI_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6162,7 +6162,7 @@ M68KMAKE_OP(move, 16, pi, a)
        uint res = MASK_OUT_ABOVE_16(AY);
        uint ea = EA_AX_PI_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6176,7 +6176,7 @@ M68KMAKE_OP(move, 16, pi, .)
        uint res = M68KMAKE_GET_OPER_AY_16;
        uint ea = EA_AX_PI_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6190,7 +6190,7 @@ M68KMAKE_OP(move, 16, pd, d)
        uint res = MASK_OUT_ABOVE_16(DY);
        uint ea = EA_AX_PD_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6204,7 +6204,7 @@ M68KMAKE_OP(move, 16, pd, a)
        uint res = MASK_OUT_ABOVE_16(AY);
        uint ea = EA_AX_PD_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6218,7 +6218,7 @@ M68KMAKE_OP(move, 16, pd, .)
        uint res = M68KMAKE_GET_OPER_AY_16;
        uint ea = EA_AX_PD_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6232,7 +6232,7 @@ M68KMAKE_OP(move, 16, di, d)
        uint res = MASK_OUT_ABOVE_16(DY);
        uint ea = EA_AX_DI_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6246,7 +6246,7 @@ M68KMAKE_OP(move, 16, di, a)
        uint res = MASK_OUT_ABOVE_16(AY);
        uint ea = EA_AX_DI_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6260,7 +6260,7 @@ M68KMAKE_OP(move, 16, di, .)
        uint res = M68KMAKE_GET_OPER_AY_16;
        uint ea = EA_AX_DI_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6274,7 +6274,7 @@ M68KMAKE_OP(move, 16, ix, d)
        uint res = MASK_OUT_ABOVE_16(DY);
        uint ea = EA_AX_IX_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6288,7 +6288,7 @@ M68KMAKE_OP(move, 16, ix, a)
        uint res = MASK_OUT_ABOVE_16(AY);
        uint ea = EA_AX_IX_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6302,7 +6302,7 @@ M68KMAKE_OP(move, 16, ix, .)
        uint res = M68KMAKE_GET_OPER_AY_16;
        uint ea = EA_AX_IX_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6316,7 +6316,7 @@ M68KMAKE_OP(move, 16, aw, d)
        uint res = MASK_OUT_ABOVE_16(DY);
        uint ea = EA_AW_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6330,7 +6330,7 @@ M68KMAKE_OP(move, 16, aw, a)
        uint res = MASK_OUT_ABOVE_16(AY);
        uint ea = EA_AW_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6344,7 +6344,7 @@ M68KMAKE_OP(move, 16, aw, .)
        uint res = M68KMAKE_GET_OPER_AY_16;
        uint ea = EA_AW_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6358,7 +6358,7 @@ M68KMAKE_OP(move, 16, al, d)
        uint res = MASK_OUT_ABOVE_16(DY);
        uint ea = EA_AL_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6372,7 +6372,7 @@ M68KMAKE_OP(move, 16, al, a)
        uint res = MASK_OUT_ABOVE_16(AY);
        uint ea = EA_AL_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6386,7 +6386,7 @@ M68KMAKE_OP(move, 16, al, .)
        uint res = M68KMAKE_GET_OPER_AY_16;
        uint ea = EA_AL_16();
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -6442,7 +6442,7 @@ M68KMAKE_OP(move, 32, ai, d)
        uint res = DY;
        uint ea = EA_AX_AI_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6456,7 +6456,7 @@ M68KMAKE_OP(move, 32, ai, a)
        uint res = AY;
        uint ea = EA_AX_AI_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6470,7 +6470,7 @@ M68KMAKE_OP(move, 32, ai, .)
        uint res = M68KMAKE_GET_OPER_AY_32;
        uint ea = EA_AX_AI_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6484,7 +6484,7 @@ M68KMAKE_OP(move, 32, pi, d)
        uint res = DY;
        uint ea = EA_AX_PI_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6498,7 +6498,7 @@ M68KMAKE_OP(move, 32, pi, a)
        uint res = AY;
        uint ea = EA_AX_PI_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6512,7 +6512,7 @@ M68KMAKE_OP(move, 32, pi, .)
        uint res = M68KMAKE_GET_OPER_AY_32;
        uint ea = EA_AX_PI_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6526,8 +6526,8 @@ M68KMAKE_OP(move, 32, pd, d)
        uint res = DY;
        uint ea = EA_AX_PD_32();
 
-       m68ki_write_16(ea+2, res & 0xFFFF );
-       m68ki_write_16(ea, (res >> 16) & 0xFFFF );
+       m68ki_write_16(state, ea+2, res & 0xFFFF );
+       m68ki_write_16(state, ea, (res >> 16) & 0xFFFF );
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6541,8 +6541,8 @@ M68KMAKE_OP(move, 32, pd, a)
        uint res = AY;
        uint ea = EA_AX_PD_32();
 
-       m68ki_write_16(ea+2, res & 0xFFFF );
-       m68ki_write_16(ea, (res >> 16) & 0xFFFF );
+       m68ki_write_16(state, ea+2, res & 0xFFFF );
+       m68ki_write_16(state, ea, (res >> 16) & 0xFFFF );
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6556,8 +6556,8 @@ M68KMAKE_OP(move, 32, pd, .)
        uint res = M68KMAKE_GET_OPER_AY_32;
        uint ea = EA_AX_PD_32();
 
-       m68ki_write_16(ea+2, res & 0xFFFF );
-       m68ki_write_16(ea, (res >> 16) & 0xFFFF );
+       m68ki_write_16(state, ea+2, res & 0xFFFF );
+       m68ki_write_16(state, ea, (res >> 16) & 0xFFFF );
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6571,7 +6571,7 @@ M68KMAKE_OP(move, 32, di, d)
        uint res = DY;
        uint ea = EA_AX_DI_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6585,7 +6585,7 @@ M68KMAKE_OP(move, 32, di, a)
        uint res = AY;
        uint ea = EA_AX_DI_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6599,7 +6599,7 @@ M68KMAKE_OP(move, 32, di, .)
        uint res = M68KMAKE_GET_OPER_AY_32;
        uint ea = EA_AX_DI_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6613,7 +6613,7 @@ M68KMAKE_OP(move, 32, ix, d)
        uint res = DY;
        uint ea = EA_AX_IX_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6627,7 +6627,7 @@ M68KMAKE_OP(move, 32, ix, a)
        uint res = AY;
        uint ea = EA_AX_IX_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6641,7 +6641,7 @@ M68KMAKE_OP(move, 32, ix, .)
        uint res = M68KMAKE_GET_OPER_AY_32;
        uint ea = EA_AX_IX_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6655,7 +6655,7 @@ M68KMAKE_OP(move, 32, aw, d)
        uint res = DY;
        uint ea = EA_AW_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6669,7 +6669,7 @@ M68KMAKE_OP(move, 32, aw, a)
        uint res = AY;
        uint ea = EA_AW_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6683,7 +6683,7 @@ M68KMAKE_OP(move, 32, aw, .)
        uint res = M68KMAKE_GET_OPER_AY_32;
        uint ea = EA_AW_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6697,7 +6697,7 @@ M68KMAKE_OP(move, 32, al, d)
        uint res = DY;
        uint ea = EA_AL_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6711,7 +6711,7 @@ M68KMAKE_OP(move, 32, al, a)
        uint res = AY;
        uint ea = EA_AL_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6725,7 +6725,7 @@ M68KMAKE_OP(move, 32, al, .)
        uint res = M68KMAKE_GET_OPER_AY_32;
        uint ea = EA_AL_32();
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -6777,7 +6777,7 @@ M68KMAKE_OP(move, 16, frc, d)
                DY = MASK_OUT_BELOW_16(DY) | m68ki_get_ccr();
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -6785,10 +6785,10 @@ M68KMAKE_OP(move, 16, frc, .)
 {
        if(CPU_TYPE_IS_010_PLUS(CPU_TYPE))
        {
-               m68ki_write_16(M68KMAKE_GET_EA_AY_16, m68ki_get_ccr());
+               m68ki_write_16(state, M68KMAKE_GET_EA_AY_16, m68ki_get_ccr());
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -6811,7 +6811,7 @@ M68KMAKE_OP(move, 16, frs, d)
                DY = MASK_OUT_BELOW_16(DY) | m68ki_get_sr();
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -6820,10 +6820,10 @@ M68KMAKE_OP(move, 16, frs, .)
        if(CPU_TYPE_IS_000(CPU_TYPE) || FLAG_S) /* NS990408 */
        {
                uint ea = M68KMAKE_GET_EA_AY_16;
-               m68ki_write_16(ea, m68ki_get_sr());
+               m68ki_write_16(state, ea, m68ki_get_sr());
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -6834,7 +6834,7 @@ M68KMAKE_OP(move, 16, tos, d)
                m68ki_set_sr(state, DY);
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -6847,7 +6847,7 @@ M68KMAKE_OP(move, 16, tos, .)
                m68ki_set_sr(state, new_sr);
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -6858,7 +6858,7 @@ M68KMAKE_OP(move, 32, fru, .)
                AY = REG_USP;
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -6870,7 +6870,7 @@ M68KMAKE_OP(move, 32, tou, .)
                REG_USP = AY;
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -6910,7 +6910,7 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = REG_CAAR;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                break;
                        case 0x803:                        /* MSP */
                                if(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
@@ -6918,7 +6918,7 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = FLAG_M ? REG_SP : REG_MSP;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x804:                        /* ISP */
                                if(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
@@ -6926,7 +6926,7 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = FLAG_M ? REG_ISP : REG_SP;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x003:                             /* TC */
                                if(CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -6934,7 +6934,7 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = m68ki_cpu.mmu_tc;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x004:                             /* ITT0 */
                                if(CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -6942,7 +6942,7 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = m68ki_cpu.mmu_itt0;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x005:                             /* ITT1 */
                                if(CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -6950,7 +6950,7 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = m68ki_cpu.mmu_itt1;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x006:                             /* DTT0 */
                                if(CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -6958,7 +6958,7 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = m68ki_cpu.mmu_dtt0;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x007:                             /* DTT1 */
                                if(CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -6966,7 +6966,7 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = m68ki_cpu.mmu_dtt1;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x805:                             /* MMUSR */
                                if(CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -6974,7 +6974,7 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = m68ki_cpu.mmu_sr_040;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x806:                             /* URP */
                                if(CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -6982,7 +6982,7 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = m68ki_cpu.mmu_urp_aptr;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x807:                             /* SRP */
                                if(CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -6990,17 +6990,17 @@ M68KMAKE_OP(movec, 32, cr, .)
                                        REG_DA[(word2 >> 12) & 15] = m68ki_cpu.mmu_srp_aptr;
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        default:
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        }
                }
-               m68ki_exception_privilege_violation();
+               m68ki_exception_privilege_violation(state);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -7044,7 +7044,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        }
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x800:                        /* USP */
                                REG_USP = REG_DA[(word2 >> 12) & 15];
@@ -7058,7 +7058,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        REG_CAAR = REG_DA[(word2 >> 12) & 15];
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x803:                        /* MSP */
                                if(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
@@ -7072,7 +7072,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        REG_SP = REG_DA[(word2 >> 12) & 15];
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x804:                        /* ISP */
                                if(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
@@ -7085,7 +7085,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        REG_ISP = REG_DA[(word2 >> 12) & 15];
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x003:                     /* TC */
                                if (CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -7102,7 +7102,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        }
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x004:                     /* ITT0 */
                                if (CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -7110,7 +7110,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        m68ki_cpu.mmu_itt0 = REG_DA[(word2 >> 12) & 15];
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x005:                     /* ITT1 */
                                if (CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -7118,7 +7118,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        m68ki_cpu.mmu_itt1 = REG_DA[(word2 >> 12) & 15];
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x006:                     /* DTT0 */
                                if (CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -7126,7 +7126,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        m68ki_cpu.mmu_dtt0 = REG_DA[(word2 >> 12) & 15];
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x007:                     /* DTT1 */
                                if (CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -7134,7 +7134,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        m68ki_cpu.mmu_dtt1 = REG_DA[(word2 >> 12) & 15];
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x805:                     /* MMUSR */
                                if (CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -7142,7 +7142,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        m68ki_cpu.mmu_sr_040 = REG_DA[(word2 >> 12) & 15];
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x806:                     /* URP */
                                if (CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -7150,7 +7150,7 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        m68ki_cpu.mmu_urp_aptr = REG_DA[(word2 >> 12) & 15];
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        case 0x807:                     /* SRP */
                                if (CPU_TYPE_IS_040_PLUS(CPU_TYPE))
@@ -7158,17 +7158,17 @@ M68KMAKE_OP(movec, 32, rc, .)
                                        m68ki_cpu.mmu_srp_aptr = REG_DA[(word2 >> 12) & 15];
                                        return;
                                }
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        default:
-                               m68ki_exception_illegal();
+                               m68ki_exception_illegal(state);
                                return;
                        }
                }
-               m68ki_exception_privilege_violation();
+               m68ki_exception_privilege_violation(state);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -7183,7 +7183,7 @@ M68KMAKE_OP(movem, 16, re, pd)
                if(register_list & (1 << i))
                {
                        ea -= 2;
-                       m68ki_write_16(ea, MASK_OUT_ABOVE_16(REG_DA[15-i]));
+                       m68ki_write_16(state, ea, MASK_OUT_ABOVE_16(REG_DA[15-i]));
                        count++;
                }
        AY = ea;
@@ -7202,7 +7202,7 @@ M68KMAKE_OP(movem, 16, re, .)
        for(; i < 16; i++)
                if(register_list & (1 << i))
                {
-                       m68ki_write_16(ea, MASK_OUT_ABOVE_16(REG_DA[i]));
+                       m68ki_write_16(state, ea, MASK_OUT_ABOVE_16(REG_DA[i]));
                        ea += 2;
                        count++;
                }
@@ -7222,8 +7222,8 @@ M68KMAKE_OP(movem, 32, re, pd)
                if(register_list & (1 << i))
                {
                        ea -= 4;
-                       m68ki_write_16(ea+2, REG_DA[15-i] & 0xFFFF );
-                       m68ki_write_16(ea, (REG_DA[15-i] >> 16) & 0xFFFF );
+                       m68ki_write_16(state, ea+2, REG_DA[15-i] & 0xFFFF );
+                       m68ki_write_16(state, ea, (REG_DA[15-i] >> 16) & 0xFFFF );
                        count++;
                }
        AY = ea;
@@ -7242,7 +7242,7 @@ M68KMAKE_OP(movem, 32, re, .)
        for(; i < 16; i++)
                if(register_list & (1 << i))
                {
-                       m68ki_write_32(ea, REG_DA[i]);
+                       m68ki_write_32(state, ea, REG_DA[i]);
                        ea += 4;
                        count++;
                }
@@ -7261,7 +7261,7 @@ M68KMAKE_OP(movem, 16, er, pi)
        for(; i < 16; i++)
                if(register_list & (1 << i))
                {
-                       REG_DA[i] = MAKE_INT_16(MASK_OUT_ABOVE_16(m68ki_read_16(ea)));
+                       REG_DA[i] = MAKE_INT_16(MASK_OUT_ABOVE_16(m68ki_read_16(state, ea)));
                        ea += 2;
                        count++;
                }
@@ -7281,7 +7281,7 @@ M68KMAKE_OP(movem, 16, er, pcdi)
        for(; i < 16; i++)
                if(register_list & (1 << i))
                {
-                       REG_DA[i] = MAKE_INT_16(MASK_OUT_ABOVE_16(m68ki_read_pcrel_16(ea)));
+                       REG_DA[i] = MAKE_INT_16(MASK_OUT_ABOVE_16(m68ki_read_pcrel_16(state, ea)));
                        ea += 2;
                        count++;
                }
@@ -7300,7 +7300,7 @@ M68KMAKE_OP(movem, 16, er, pcix)
        for(; i < 16; i++)
                if(register_list & (1 << i))
                {
-                       REG_DA[i] = MAKE_INT_16(MASK_OUT_ABOVE_16(m68ki_read_pcrel_16(ea)));
+                       REG_DA[i] = MAKE_INT_16(MASK_OUT_ABOVE_16(m68ki_read_pcrel_16(state, ea)));
                        ea += 2;
                        count++;
                }
@@ -7319,7 +7319,7 @@ M68KMAKE_OP(movem, 16, er, .)
        for(; i < 16; i++)
                if(register_list & (1 << i))
                {
-                       REG_DA[i] = MAKE_INT_16(MASK_OUT_ABOVE_16(m68ki_read_16(ea)));
+                       REG_DA[i] = MAKE_INT_16(MASK_OUT_ABOVE_16(m68ki_read_16(state, ea)));
                        ea += 2;
                        count++;
                }
@@ -7338,7 +7338,7 @@ M68KMAKE_OP(movem, 32, er, pi)
        for(; i < 16; i++)
                if(register_list & (1 << i))
                {
-                       REG_DA[i] = m68ki_read_32(ea);
+                       REG_DA[i] = m68ki_read_32(state, ea);
                        ea += 4;
                        count++;
                }
@@ -7358,7 +7358,7 @@ M68KMAKE_OP(movem, 32, er, pcdi)
        for(; i < 16; i++)
                if(register_list & (1 << i))
                {
-                       REG_DA[i] = m68ki_read_pcrel_32(ea);
+                       REG_DA[i] = m68ki_read_pcrel_32(state, ea);
                        ea += 4;
                        count++;
                }
@@ -7377,7 +7377,7 @@ M68KMAKE_OP(movem, 32, er, pcix)
        for(; i < 16; i++)
                if(register_list & (1 << i))
                {
-                       REG_DA[i] = m68ki_read_pcrel_32(ea);
+                       REG_DA[i] = m68ki_read_pcrel_32(state, ea);
                        ea += 4;
                        count++;
                }
@@ -7396,7 +7396,7 @@ M68KMAKE_OP(movem, 32, er, .)
        for(; i < 16; i++)
                if(register_list & (1 << i))
                {
-                       REG_DA[i] = m68ki_read_32(ea);
+                       REG_DA[i] = m68ki_read_32(state, ea);
                        ea += 4;
                        count++;
                }
@@ -7410,8 +7410,8 @@ M68KMAKE_OP(movep, 16, re, .)
        uint ea = EA_AY_DI_16();
        uint src = DX;
 
-       m68ki_write_8(ea, MASK_OUT_ABOVE_8(src >> 8));
-       m68ki_write_8(ea += 2, MASK_OUT_ABOVE_8(src));
+       m68ki_write_8(state, ea, MASK_OUT_ABOVE_8(src >> 8));
+       m68ki_write_8(state, ea += 2, MASK_OUT_ABOVE_8(src));
 }
 
 
@@ -7420,10 +7420,10 @@ M68KMAKE_OP(movep, 32, re, .)
        uint ea = EA_AY_DI_32();
        uint src = DX;
 
-       m68ki_write_8(ea, MASK_OUT_ABOVE_8(src >> 24));
-       m68ki_write_8(ea += 2, MASK_OUT_ABOVE_8(src >> 16));
-       m68ki_write_8(ea += 2, MASK_OUT_ABOVE_8(src >> 8));
-       m68ki_write_8(ea += 2, MASK_OUT_ABOVE_8(src));
+       m68ki_write_8(state, ea, MASK_OUT_ABOVE_8(src >> 24));
+       m68ki_write_8(state, ea += 2, MASK_OUT_ABOVE_8(src >> 16));
+       m68ki_write_8(state, ea += 2, MASK_OUT_ABOVE_8(src >> 8));
+       m68ki_write_8(state, ea += 2, MASK_OUT_ABOVE_8(src));
 }
 
 
@@ -7432,7 +7432,7 @@ M68KMAKE_OP(movep, 16, er, .)
        uint ea = EA_AY_DI_16();
        uint* r_dst = &DX;
 
-       *r_dst = MASK_OUT_BELOW_16(*r_dst) | ((m68ki_read_8(ea) << 8) + m68ki_read_8(ea + 2));
+       *r_dst = MASK_OUT_BELOW_16(*r_dst) | ((m68ki_read_8(state, ea) << 8) + m68ki_read_8(state, ea + 2));
 }
 
 
@@ -7440,8 +7440,8 @@ M68KMAKE_OP(movep, 32, er, .)
 {
        uint ea = EA_AY_DI_32();
 
-       DX = (m68ki_read_8(ea) << 24) + (m68ki_read_8(ea + 2) << 16)
-               + (m68ki_read_8(ea + 4) << 8) + m68ki_read_8(ea + 6);
+       DX = (m68ki_read_8(state, ea) << 24) + (m68ki_read_8(state, ea + 2) << 16)
+               + (m68ki_read_8(state, ea + 4) << 8) + m68ki_read_8(state, ea + 6);
 }
 
 
@@ -7457,26 +7457,26 @@ M68KMAKE_OP(moves, 8, ., .)
                        m68ki_trace_t0();                          /* auto-disable (see m68kcpu.h) */
                        if(BIT_B(word2))                   /* Register to memory */
                        {
-                               m68ki_write_8_fc(ea, REG_DFC, MASK_OUT_ABOVE_8(REG_DA[(word2 >> 12) & 15]));
+                               m68ki_write_8_fc(state, ea, REG_DFC, MASK_OUT_ABOVE_8(REG_DA[(word2 >> 12) & 15]));
                                return;
                        }
                        if(BIT_F(word2))                   /* Memory to address register */
                        {
-                               REG_A[(word2 >> 12) & 7] = MAKE_INT_8(m68ki_read_8_fc(ea, REG_SFC));
+                               REG_A[(word2 >> 12) & 7] = MAKE_INT_8(m68ki_read_8_fc(state, ea, REG_SFC));
                                if(CPU_TYPE_IS_020_VARIANT(CPU_TYPE))
                                        USE_CYCLES(2);
                                return;
                        }
                        /* Memory to data register */
-                       REG_D[(word2 >> 12) & 7] = MASK_OUT_BELOW_8(REG_D[(word2 >> 12) & 7]) | m68ki_read_8_fc(ea, REG_SFC);
+                       REG_D[(word2 >> 12) & 7] = MASK_OUT_BELOW_8(REG_D[(word2 >> 12) & 7]) | m68ki_read_8_fc(state, ea, REG_SFC);
                        if(CPU_TYPE_IS_020_VARIANT(CPU_TYPE))
                                USE_CYCLES(2);
                        return;
                }
-               m68ki_exception_privilege_violation();
+               m68ki_exception_privilege_violation(state);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -7492,26 +7492,26 @@ M68KMAKE_OP(moves, 16, ., .)
                        m68ki_trace_t0();                          /* auto-disable (see m68kcpu.h) */
                        if(BIT_B(word2))                   /* Register to memory */
                        {
-                               m68ki_write_16_fc(ea, REG_DFC, MASK_OUT_ABOVE_16(REG_DA[(word2 >> 12) & 15]));
+                               m68ki_write_16_fc(state, ea, REG_DFC, MASK_OUT_ABOVE_16(REG_DA[(word2 >> 12) & 15]));
                                return;
                        }
                        if(BIT_F(word2))                   /* Memory to address register */
                        {
-                               REG_A[(word2 >> 12) & 7] = MAKE_INT_16(m68ki_read_16_fc(ea, REG_SFC));
+                               REG_A[(word2 >> 12) & 7] = MAKE_INT_16(m68ki_read_16_fc(state, ea, REG_SFC));
                                if(CPU_TYPE_IS_020_VARIANT(CPU_TYPE))
                                        USE_CYCLES(2);
                                return;
                        }
                        /* Memory to data register */
-                       REG_D[(word2 >> 12) & 7] = MASK_OUT_BELOW_16(REG_D[(word2 >> 12) & 7]) | m68ki_read_16_fc(ea, REG_SFC);
+                       REG_D[(word2 >> 12) & 7] = MASK_OUT_BELOW_16(REG_D[(word2 >> 12) & 7]) | m68ki_read_16_fc(state, ea, REG_SFC);
                        if(CPU_TYPE_IS_020_VARIANT(CPU_TYPE))
                                USE_CYCLES(2);
                        return;
                }
-               m68ki_exception_privilege_violation();
+               m68ki_exception_privilege_violation(state);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -7527,21 +7527,21 @@ M68KMAKE_OP(moves, 32, ., .)
                        m68ki_trace_t0();                          /* auto-disable (see m68kcpu.h) */
                        if(BIT_B(word2))                   /* Register to memory */
                        {
-                               m68ki_write_32_fc(ea, REG_DFC, REG_DA[(word2 >> 12) & 15]);
+                               m68ki_write_32_fc(state, ea, REG_DFC, REG_DA[(word2 >> 12) & 15]);
                                if(CPU_TYPE_IS_020_VARIANT(CPU_TYPE))
                                        USE_CYCLES(2);
                                return;
                        }
                        /* Memory to register */
-                       REG_DA[(word2 >> 12) & 15] = m68ki_read_32_fc(ea, REG_SFC);
+                       REG_DA[(word2 >> 12) & 15] = m68ki_read_32_fc(state, ea, REG_SFC);
                        if(CPU_TYPE_IS_020_VARIANT(CPU_TYPE))
                                USE_CYCLES(2);
                        return;
                }
-               m68ki_exception_privilege_violation();
+               m68ki_exception_privilege_violation(state);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -7562,10 +7562,10 @@ M68KMAKE_OP(move16, 32, ., .)
        int ax = REG_IR & 7;
        int ay = (w2 >> 12) & 7;
 
-       m68ki_write_32(REG_A[ay],    m68ki_read_32(REG_A[ax]));
-       m68ki_write_32(REG_A[ay]+4,  m68ki_read_32(REG_A[ax]+4));
-       m68ki_write_32(REG_A[ay]+8,  m68ki_read_32(REG_A[ax]+8));
-       m68ki_write_32(REG_A[ay]+12, m68ki_read_32(REG_A[ax]+12));
+       m68ki_write_32(state, REG_A[ay],    m68ki_read_32(state, REG_A[ax]));
+       m68ki_write_32(state, REG_A[ay]+4,  m68ki_read_32(state, REG_A[ax]+4));
+       m68ki_write_32(state, REG_A[ay]+8,  m68ki_read_32(state, REG_A[ax]+8));
+       m68ki_write_32(state, REG_A[ay]+12, m68ki_read_32(state, REG_A[ax]+12));
 
        REG_A[ax] += 16;
        REG_A[ay] += 16;
@@ -7676,7 +7676,7 @@ M68KMAKE_OP(mull, 32, ., d)
                REG_D[(word2 >> 12) & 7] = MASK_OUT_ABOVE_32(res);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 
 #else
 
@@ -7746,7 +7746,7 @@ M68KMAKE_OP(mull, 32, ., d)
                        FLAG_V = (hi != 0) << 7;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 
 #endif
 }
@@ -7800,7 +7800,7 @@ M68KMAKE_OP(mull, 32, ., .)
                REG_D[(word2 >> 12) & 7] = MASK_OUT_ABOVE_32(res);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 
 #else
 
@@ -7870,7 +7870,7 @@ M68KMAKE_OP(mull, 32, ., .)
                        FLAG_V = (hi != 0) << 7;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 
 #endif
 }
@@ -7912,7 +7912,7 @@ M68KMAKE_OP(nbcd, 8, ., d)
 M68KMAKE_OP(nbcd, 8, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = - dst - XFLAG_AS_1();
 
        if(res != 0)
@@ -7926,7 +7926,7 @@ M68KMAKE_OP(nbcd, 8, ., .)
 
                FLAG_V &= ~res; /* Undefined V behavior part II */
 
-               m68ki_write_8(ea, MASK_OUT_ABOVE_8(res));
+               m68ki_write_8(state, ea, MASK_OUT_ABOVE_8(res));
 
                FLAG_Z |= res;
                FLAG_C = CFLAG_SET;
@@ -7959,7 +7959,7 @@ M68KMAKE_OP(neg, 8, ., d)
 M68KMAKE_OP(neg, 8, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint src = m68ki_read_8(ea);
+       uint src = m68ki_read_8(state, ea);
        uint res = 0 - src;
 
        FLAG_N = NFLAG_8(res);
@@ -7967,7 +7967,7 @@ M68KMAKE_OP(neg, 8, ., .)
        FLAG_V = src & res;
        FLAG_Z = MASK_OUT_ABOVE_8(res);
 
-       m68ki_write_8(ea, FLAG_Z);
+       m68ki_write_8(state, ea, FLAG_Z);
 }
 
 
@@ -7988,7 +7988,7 @@ M68KMAKE_OP(neg, 16, ., d)
 M68KMAKE_OP(neg, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint src = m68ki_read_16(ea);
+       uint src = m68ki_read_16(state, ea);
        uint res = 0 - src;
 
        FLAG_N = NFLAG_16(res);
@@ -7996,7 +7996,7 @@ M68KMAKE_OP(neg, 16, ., .)
        FLAG_V = (src & res)>>8;
        FLAG_Z = MASK_OUT_ABOVE_16(res);
 
-       m68ki_write_16(ea, FLAG_Z);
+       m68ki_write_16(state, ea, FLAG_Z);
 }
 
 
@@ -8017,7 +8017,7 @@ M68KMAKE_OP(neg, 32, ., d)
 M68KMAKE_OP(neg, 32, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint src = m68ki_read_32(ea);
+       uint src = m68ki_read_32(state, ea);
        uint res = 0 - src;
 
        FLAG_N = NFLAG_32(res);
@@ -8025,7 +8025,7 @@ M68KMAKE_OP(neg, 32, ., .)
        FLAG_V = (src & res)>>24;
        FLAG_Z = MASK_OUT_ABOVE_32(res);
 
-       m68ki_write_32(ea, FLAG_Z);
+       m68ki_write_32(state, ea, FLAG_Z);
 }
 
 
@@ -8048,7 +8048,7 @@ M68KMAKE_OP(negx, 8, ., d)
 M68KMAKE_OP(negx, 8, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint src = m68ki_read_8(ea);
+       uint src = m68ki_read_8(state, ea);
        uint res = 0 - src - XFLAG_AS_1();
 
        FLAG_N = NFLAG_8(res);
@@ -8058,7 +8058,7 @@ M68KMAKE_OP(negx, 8, ., .)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -8081,7 +8081,7 @@ M68KMAKE_OP(negx, 16, ., d)
 M68KMAKE_OP(negx, 16, ., .)
 {
        uint ea  = M68KMAKE_GET_EA_AY_16;
-       uint src = m68ki_read_16(ea);
+       uint src = m68ki_read_16(state, ea);
        uint res = 0 - MASK_OUT_ABOVE_16(src) - XFLAG_AS_1();
 
        FLAG_N = NFLAG_16(res);
@@ -8091,7 +8091,7 @@ M68KMAKE_OP(negx, 16, ., .)
        res = MASK_OUT_ABOVE_16(res);
        FLAG_Z |= res;
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 }
 
 
@@ -8114,7 +8114,7 @@ M68KMAKE_OP(negx, 32, ., d)
 M68KMAKE_OP(negx, 32, ., .)
 {
        uint ea  = M68KMAKE_GET_EA_AY_32;
-       uint src = m68ki_read_32(ea);
+       uint src = m68ki_read_32(state, ea);
        uint res = 0 - MASK_OUT_ABOVE_32(src) - XFLAG_AS_1();
 
        FLAG_N = NFLAG_32(res);
@@ -8124,7 +8124,7 @@ M68KMAKE_OP(negx, 32, ., .)
        res = MASK_OUT_ABOVE_32(res);
        FLAG_Z |= res;
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 }
 
 
@@ -8151,9 +8151,9 @@ M68KMAKE_OP(not, 8, ., d)
 M68KMAKE_OP(not, 8, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint res = MASK_OUT_ABOVE_8(~m68ki_read_8(ea));
+       uint res = MASK_OUT_ABOVE_8(~m68ki_read_8(state, ea));
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -8179,9 +8179,9 @@ M68KMAKE_OP(not, 16, ., d)
 M68KMAKE_OP(not, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint res = MASK_OUT_ABOVE_16(~m68ki_read_16(ea));
+       uint res = MASK_OUT_ABOVE_16(~m68ki_read_16(state, ea));
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -8205,9 +8205,9 @@ M68KMAKE_OP(not, 32, ., d)
 M68KMAKE_OP(not, 32, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint res = MASK_OUT_ABOVE_32(~m68ki_read_32(ea));
+       uint res = MASK_OUT_ABOVE_32(~m68ki_read_32(state, ea));
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -8285,9 +8285,9 @@ M68KMAKE_OP(or, 32, er, .)
 M68KMAKE_OP(or, 8, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint res = MASK_OUT_ABOVE_8(DX | m68ki_read_8(ea));
+       uint res = MASK_OUT_ABOVE_8(DX | m68ki_read_8(state, ea));
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -8299,9 +8299,9 @@ M68KMAKE_OP(or, 8, re, .)
 M68KMAKE_OP(or, 16, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint res = MASK_OUT_ABOVE_16(DX | m68ki_read_16(ea));
+       uint res = MASK_OUT_ABOVE_16(DX | m68ki_read_16(state, ea));
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -8313,9 +8313,9 @@ M68KMAKE_OP(or, 16, re, .)
 M68KMAKE_OP(or, 32, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint res = DX | m68ki_read_32(ea);
+       uint res = DX | m68ki_read_32(state, ea);
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -8339,9 +8339,9 @@ M68KMAKE_OP(ori, 8, ., .)
 {
        uint src = OPER_I_8(state);
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint res = MASK_OUT_ABOVE_8(src | m68ki_read_8(ea));
+       uint res = MASK_OUT_ABOVE_8(src | m68ki_read_8(state, ea));
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 
        FLAG_N = NFLAG_8(res);
        FLAG_Z = res;
@@ -8365,9 +8365,9 @@ M68KMAKE_OP(ori, 16, ., .)
 {
        uint src = OPER_I_16(state);
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint res = MASK_OUT_ABOVE_16(src | m68ki_read_16(ea));
+       uint res = MASK_OUT_ABOVE_16(src | m68ki_read_16(state, ea));
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -8391,9 +8391,9 @@ M68KMAKE_OP(ori, 32, ., .)
 {
        uint src = OPER_I_32(state);
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint res = src | m68ki_read_32(ea);
+       uint res = src | m68ki_read_32(state, ea);
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 
        FLAG_N = NFLAG_32(res);
        FLAG_Z = res;
@@ -8417,7 +8417,7 @@ M68KMAKE_OP(ori, 16, tos, .)
                m68ki_set_sr(state, m68ki_get_sr() | src);
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -8432,7 +8432,7 @@ M68KMAKE_OP(pack, 16, rr, .)
                *r_dst = MASK_OUT_BELOW_8(*r_dst) | ((src >> 4) & 0x00f0) | (src & 0x000f);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -8442,14 +8442,14 @@ M68KMAKE_OP(pack, 16, mm, ax7)
        {
                /* Note: AX and AY are reversed in Motorola's docs */
                uint ea_src = EA_AY_PD_8();
-               uint src = m68ki_read_8(ea_src);
+               uint src = m68ki_read_8(state, ea_src);
                ea_src = EA_AY_PD_8();
-               src = ((src << 8) | m68ki_read_8(ea_src)) + OPER_I_16(state);
+               src = ((src << 8) | m68ki_read_8(state, ea_src)) + OPER_I_16(state);
 
-               m68ki_write_8(EA_A7_PD_8(), ((src >> 8) & 0x000f) | ((src<<4) & 0x00f0));
+               m68ki_write_8(state, EA_A7_PD_8(), ((src >> 8) & 0x000f) | ((src<<4) & 0x00f0));
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -8459,14 +8459,14 @@ M68KMAKE_OP(pack, 16, mm, ay7)
        {
                /* Note: AX and AY are reversed in Motorola's docs */
                uint ea_src = EA_A7_PD_8();
-               uint src = m68ki_read_8(ea_src);
+               uint src = m68ki_read_8(state, ea_src);
                ea_src = EA_A7_PD_8();
-               src = (src | (m68ki_read_8(ea_src) << 8)) + OPER_I_16(state);
+               src = (src | (m68ki_read_8(state, ea_src) << 8)) + OPER_I_16(state);
 
-               m68ki_write_8(EA_AX_PD_8(), ((src >> 4) & 0x00f0) | (src & 0x000f));
+               m68ki_write_8(state, EA_AX_PD_8(), ((src >> 4) & 0x00f0) | (src & 0x000f));
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -8475,14 +8475,14 @@ M68KMAKE_OP(pack, 16, mm, axy7)
        if(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
        {
                uint ea_src = EA_A7_PD_8();
-               uint src = m68ki_read_8(ea_src);
+               uint src = m68ki_read_8(state, ea_src);
                ea_src = EA_A7_PD_8();
-               src = (src | (m68ki_read_8(ea_src) << 8)) + OPER_I_16(state);
+               src = (src | (m68ki_read_8(state, ea_src) << 8)) + OPER_I_16(state);
 
-               m68ki_write_8(EA_A7_PD_8(), ((src >> 4) & 0x00f0) | (src & 0x000f));
+               m68ki_write_8(state, EA_A7_PD_8(), ((src >> 4) & 0x00f0) | (src & 0x000f));
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -8492,14 +8492,14 @@ M68KMAKE_OP(pack, 16, mm, .)
        {
                /* Note: AX and AY are reversed in Motorola's docs */
                uint ea_src = EA_AY_PD_8();
-               uint src = m68ki_read_8(ea_src);
+               uint src = m68ki_read_8(state, ea_src);
                ea_src = EA_AY_PD_8();
-               src = (src | (m68ki_read_8(ea_src) << 8)) + OPER_I_16(state);
+               src = (src | (m68ki_read_8(state, ea_src) << 8)) + OPER_I_16(state);
 
-               m68ki_write_8(EA_AX_PD_8(), ((src >> 4) & 0x00f0) | (src & 0x000f));
+               m68ki_write_8(state, EA_AX_PD_8(), ((src >> 4) & 0x00f0) | (src & 0x000f));
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -8507,7 +8507,7 @@ M68KMAKE_OP(pea, 32, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_32;
 
-       m68ki_push_32(ea);
+       m68ki_push_32(state, ea);
 }
 
 M68KMAKE_OP(pflusha, 32, ., .)
@@ -8517,7 +8517,7 @@ M68KMAKE_OP(pflusha, 32, ., .)
                fprintf(stderr,"68040: unhandled PFLUSHA (ir=%04x)\n", REG_IR);
                return;
        }
-       m68ki_exception_1111();
+       m68ki_exception_1111(state);
 }
 
 M68KMAKE_OP(pflushan, 32, ., .)
@@ -8527,18 +8527,18 @@ M68KMAKE_OP(pflushan, 32, ., .)
                fprintf(stderr,"68040: unhandled PFLUSHAN (ir=%04x)\n", REG_IR);
                return;
        }
-       m68ki_exception_1111();
+       m68ki_exception_1111(state);
 }
 
 M68KMAKE_OP(pmmu, 32, ., .)
 {
        if ((CPU_TYPE_IS_EC020_PLUS(CPU_TYPE)) && (HAS_PMMU))
        {
-               void m68851_mmu_ops(m68ki_cpu_core *state);
+               m68851_mmu_ops(state);
        }
        else
        {
-               m68ki_exception_1111();
+               m68ki_exception_1111(state);
        }
 }
 
@@ -8550,7 +8550,7 @@ M68KMAKE_OP(reset, 0, ., .)
                USE_CYCLES(CYC_RESET);
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -8696,10 +8696,10 @@ M68KMAKE_OP(ror, 32, r, .)
 M68KMAKE_OP(ror, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint src = m68ki_read_16(ea);
+       uint src = m68ki_read_16(state, ea);
        uint res = ROR_16(src, 1);
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -8867,10 +8867,10 @@ M68KMAKE_OP(rol, 32, r, .)
 M68KMAKE_OP(rol, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint src = m68ki_read_16(ea);
+       uint src = m68ki_read_16(state, ea);
        uint res = MASK_OUT_ABOVE_16(ROL_16(src, 1));
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -9089,13 +9089,13 @@ M68KMAKE_OP(roxr, 32, r, .)
 M68KMAKE_OP(roxr, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint src = m68ki_read_16(ea);
+       uint src = m68ki_read_16(state, ea);
        uint res = ROR_17(src | (XFLAG_AS_1() << 16), 1);
 
        FLAG_C = FLAG_X = res >> 8;
        res = MASK_OUT_ABOVE_16(res);
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -9314,13 +9314,13 @@ M68KMAKE_OP(roxl, 32, r, .)
 M68KMAKE_OP(roxl, 16, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint src = m68ki_read_16(ea);
+       uint src = m68ki_read_16(state, ea);
        uint res = ROL_17(src | (XFLAG_AS_1() << 16), 1);
 
        FLAG_C = FLAG_X = res >> 8;
        res = MASK_OUT_ABOVE_16(res);
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 
        FLAG_N = NFLAG_16(res);
        FLAG_Z = res;
@@ -9332,14 +9332,14 @@ M68KMAKE_OP(rtd, 32, ., .)
 {
        if(CPU_TYPE_IS_010_PLUS(CPU_TYPE))
        {
-               uint new_pc = m68ki_pull_32();
+               uint new_pc = m68ki_pull_32(state);
 
                m68ki_trace_t0();                          /* auto-disable (see m68kcpu.h) */
                REG_A[7] = MASK_OUT_ABOVE_32(REG_A[7] + MAKE_INT_16(OPER_I_16(state)));
                m68ki_jump(new_pc);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -9356,8 +9356,8 @@ M68KMAKE_OP(rte, 32, ., .)
 
                if(CPU_TYPE_IS_000(CPU_TYPE))
                {
-                       new_sr = m68ki_pull_16();
-                       new_pc = m68ki_pull_32();
+                       new_sr = m68ki_pull_16(state);
+                       new_pc = m68ki_pull_32(state);
                        m68ki_jump(new_pc);
                        m68ki_set_sr(state, new_sr);
 
@@ -9369,12 +9369,12 @@ M68KMAKE_OP(rte, 32, ., .)
 
                if(CPU_TYPE_IS_010(CPU_TYPE))
                {
-                       format_word = m68ki_read_16(REG_A[7]+6) >> 12;
+                       format_word = m68ki_read_16(state, REG_A[7]+6) >> 12;
                        if(format_word == 0)
                        {
-                               new_sr = m68ki_pull_16();
-                               new_pc = m68ki_pull_32();
-                               m68ki_fake_pull_16();   /* format word */
+                               new_sr = m68ki_pull_16(state);
+                               new_pc = m68ki_pull_32(state);
+                               m68ki_fake_pull_16(state);      /* format word */
                                m68ki_jump(new_pc);
                                m68ki_set_sr(state, new_sr);
                                CPU_INSTR_MODE = INSTRUCTION_YES;
@@ -9382,84 +9382,84 @@ M68KMAKE_OP(rte, 32, ., .)
                                return;
                        } else if (format_word == 8) {
                                /* Format 8 stack frame -- 68010 only. 29 word bus/address error */
-                               new_sr = m68ki_pull_16();
-                               new_pc = m68ki_pull_32();
-                               m68ki_fake_pull_16();   /* format word */
+                               new_sr = m68ki_pull_16(state);
+                               new_pc = m68ki_pull_32(state);
+                               m68ki_fake_pull_16(state);      /* format word */
                                m68ki_jump(new_pc);
                                m68ki_set_sr(state, new_sr);
                                CPU_INSTR_MODE = INSTRUCTION_YES;
                                CPU_RUN_MODE = RUN_MODE_NORMAL;
-                               m68ki_fake_pull_16();  /* special status */
-                               m68ki_fake_pull_32();   /* fault address */
-                               m68ki_fake_pull_32();  /* reserved and data output buffer */
-                               m68ki_fake_pull_32();  /* reserved and data input buffer */
-                               m68ki_fake_pull_32();  /* reserved and instruction input buffer */
-                               m68ki_fake_pull_32();  /* 8 dwords of CPU specific undocumented data */
-                               m68ki_fake_pull_32();
-                               m68ki_fake_pull_32();
-                               m68ki_fake_pull_32();
-                               m68ki_fake_pull_32();
-                               m68ki_fake_pull_32();
-                               m68ki_fake_pull_32();
-                               m68ki_fake_pull_32();
+                               m68ki_fake_pull_16(state);  /* special status */
+                               m68ki_fake_pull_32(state);      /* fault address */
+                               m68ki_fake_pull_32(state);  /* reserved and data output buffer */
+                               m68ki_fake_pull_32(state);  /* reserved and data input buffer */
+                               m68ki_fake_pull_32(state);  /* reserved and instruction input buffer */
+                               m68ki_fake_pull_32(state);  /* 8 dwords of CPU specific undocumented data */
+                               m68ki_fake_pull_32(state);
+                               m68ki_fake_pull_32(state);
+                               m68ki_fake_pull_32(state);
+                               m68ki_fake_pull_32(state);
+                               m68ki_fake_pull_32(state);
+                               m68ki_fake_pull_32(state);
+                               m68ki_fake_pull_32(state);
                                return;
                        }
                        CPU_INSTR_MODE = INSTRUCTION_YES;
                        CPU_RUN_MODE = RUN_MODE_NORMAL;
                        /* Not handling other exception types (9) */
-                       m68ki_exception_format_error();
+                       m68ki_exception_format_error(state);
                        return;
                }
 
                /* Otherwise it's 020 */
 rte_loop:
-               format_word = m68ki_read_16(REG_A[7]+6) >> 12;
+               format_word = m68ki_read_16(state, REG_A[7]+6) >> 12;
                switch(format_word)
                {
                        case 0: /* Normal */
-                               new_sr = m68ki_pull_16();
-                               new_pc = m68ki_pull_32();
-                               m68ki_fake_pull_16();   /* format word */
+                               new_sr = m68ki_pull_16(state);
+                               new_pc = m68ki_pull_32(state);
+                               m68ki_fake_pull_16(state);      /* format word */
                                m68ki_jump(new_pc);
                                m68ki_set_sr(state, new_sr);
                                CPU_INSTR_MODE = INSTRUCTION_YES;
                                CPU_RUN_MODE = RUN_MODE_NORMAL;
                                return;
                        case 1: /* Throwaway */
-                               new_sr = m68ki_pull_16();
-                               m68ki_fake_pull_32();   /* program counter */
-                               m68ki_fake_pull_16();   /* format word */
+                               new_sr = m68ki_pull_16(state);
+                               m68ki_fake_pull_32(state);      /* program counter */
+                               m68ki_fake_pull_16(state);      /* format word */
                                m68ki_set_sr_noint(state, new_sr);
                                goto rte_loop;
                        case 2: /* Trap */
-                               new_sr = m68ki_pull_16();
-                               new_pc = m68ki_pull_32();
-                               m68ki_fake_pull_16();   /* format word */
-                               m68ki_fake_pull_32();   /* address */
+                               new_sr = m68ki_pull_16(state);
+                               new_pc = m68ki_pull_32(state);
+                               m68ki_fake_pull_16(state);      /* format word */
+                               m68ki_fake_pull_32(state);      /* address */
                                m68ki_jump(new_pc);
                                m68ki_set_sr(state, new_sr);
                                CPU_INSTR_MODE = INSTRUCTION_YES;
                                CPU_RUN_MODE = RUN_MODE_NORMAL;
                                return;
                        case 7: /* 68040 access error */
-                               new_sr = m68ki_pull_16();
-                               new_pc = m68ki_pull_32();
-                               m68ki_fake_pull_16();   /* $06: format word */
-                               m68ki_fake_pull_32();   /* $08: effective address */
-                               m68ki_fake_pull_16();   /* $0c: special status word */
-                               m68ki_fake_pull_16();   /* $0e: wb3s */
-                               m68ki_fake_pull_16();   /* $10: wb2s */
-                               m68ki_fake_pull_16();   /* $12: wb1s */
-                               m68ki_fake_pull_32();   /* $14: data fault address */
-                               m68ki_fake_pull_32();   /* $18: wb3a */
-                               m68ki_fake_pull_32();   /* $1c: wb3d */
-                               m68ki_fake_pull_32();   /* $20: wb2a */
-                               m68ki_fake_pull_32();   /* $24: wb2d */
-                               m68ki_fake_pull_32();   /* $28: wb1a */
-                               m68ki_fake_pull_32();   /* $2c: wb1d/pd0 */
-                               m68ki_fake_pull_32();   /* $30: pd1 */
-                               m68ki_fake_pull_32();   /* $34: pd2 */
-                               m68ki_fake_pull_32();   /* $38: pd3 */
+                               new_sr = m68ki_pull_16(state);
+                               new_pc = m68ki_pull_32(state);
+                               m68ki_fake_pull_16(state);   /* $06: format word */
+                               m68ki_fake_pull_32(state);   /* $08: effective address */
+                               m68ki_fake_pull_16(state);   /* $0c: special status word */
+                               m68ki_fake_pull_16(state);   /* $0e: wb3s */
+                               m68ki_fake_pull_16(state);   /* $10: wb2s */
+                               m68ki_fake_pull_16(state);   /* $12: wb1s */
+                               m68ki_fake_pull_32(state);   /* $14: data fault address */
+                               m68ki_fake_pull_32(state);   /* $18: wb3a */
+                               m68ki_fake_pull_32(state);   /* $1c: wb3d */
+                               m68ki_fake_pull_32(state);   /* $20: wb2a */
+                               m68ki_fake_pull_32(state);   /* $24: wb2d */
+                               m68ki_fake_pull_32(state);   /* $28: wb1a */
+                               m68ki_fake_pull_32(state);   /* $2c: wb1d/pd0 */
+                               m68ki_fake_pull_32(state);   /* $30: pd1 */
+                               m68ki_fake_pull_32(state);   /* $34: pd2 */
+                               m68ki_fake_pull_32(state);   /* $38: pd3 */
                                m68ki_jump(new_pc);
                                m68ki_set_sr(state, new_sr);
                                CPU_INSTR_MODE = INSTRUCTION_YES;
@@ -9467,17 +9467,17 @@ rte_loop:
                                return;
 
                        case 0x0a: /* Bus Error at instruction boundary */
-                               new_sr = m68ki_pull_16();
-                               new_pc = m68ki_pull_32();
-                               m68ki_fake_pull_16();   /* $06: format word */
-                               m68ki_fake_pull_16();   /* $08: internal register */
-                               m68ki_fake_pull_16();   /* $0a: special status word */
-                               m68ki_fake_pull_16();   /* $0c: instruction pipe stage c */
-                               m68ki_fake_pull_16();   /* $0e: instruction pipe stage b */
-                               m68ki_fake_pull_32();   /* $10: data fault address */
-                               m68ki_fake_pull_32();   /* $14: internal registers */
-                               m68ki_fake_pull_32();   /* $18: data output buffer */
-                               m68ki_fake_pull_32();   /* $1c: internal registers */
+                               new_sr = m68ki_pull_16(state);
+                               new_pc = m68ki_pull_32(state);
+                               m68ki_fake_pull_16(state);   /* $06: format word */
+                               m68ki_fake_pull_16(state);   /* $08: internal register */
+                               m68ki_fake_pull_16(state);   /* $0a: special status word */
+                               m68ki_fake_pull_16(state);   /* $0c: instruction pipe stage c */
+                               m68ki_fake_pull_16(state);   /* $0e: instruction pipe stage b */
+                               m68ki_fake_pull_32(state);   /* $10: data fault address */
+                               m68ki_fake_pull_32(state);   /* $14: internal registers */
+                               m68ki_fake_pull_32(state);   /* $18: data output buffer */
+                               m68ki_fake_pull_32(state);   /* $1c: internal registers */
 
                                m68ki_jump(new_pc);
                                m68ki_set_sr(state, new_sr);
@@ -9486,33 +9486,33 @@ rte_loop:
                                return;
 
                        case 0x0b: /* Bus Error - Instruction Execution in Progress */
-                               new_sr = m68ki_pull_16();
-                               new_pc = m68ki_pull_32();
-                               m68ki_fake_pull_16();   /* $06: format word */
-                               m68ki_fake_pull_16();   /* $08: internal register */
-                               m68ki_fake_pull_16();   /* $0a: special status word */
-                               m68ki_fake_pull_16();   /* $0c: instruction pipe stage c */
-                               m68ki_fake_pull_16();   /* $0e: instruction pipe stage b */
-                               m68ki_fake_pull_32();   /* $10: data fault address */
-                               m68ki_fake_pull_32();   /* $14: internal registers */
-                               m68ki_fake_pull_32();   /* $18: data output buffer */
-                               m68ki_fake_pull_32();   /* $1c: internal registers */
-                               m68ki_fake_pull_32();   /* $20:  */
-                               m68ki_fake_pull_32();   /* $24: stage B address */
-                               m68ki_fake_pull_32();   /* $28:  */
-                               m68ki_fake_pull_32();   /* $2c: data input buffer */
-                               m68ki_fake_pull_32();   /* $30:  */
-                               m68ki_fake_pull_16();   /* $34:  */
-                               m68ki_fake_pull_16();   /* $36: version #, internal information */
-                               m68ki_fake_pull_32();   /* $38:  */
-                               m68ki_fake_pull_32();   /* $3c:  */
-                               m68ki_fake_pull_32();   /* $40:  */
-                               m68ki_fake_pull_32();   /* $44:  */
-                               m68ki_fake_pull_32();   /* $48:  */
-                               m68ki_fake_pull_32();   /* $4c:  */
-                               m68ki_fake_pull_32();   /* $50:  */
-                               m68ki_fake_pull_32();   /* $54:  */
-                               m68ki_fake_pull_32();   /* $58:  */
+                               new_sr = m68ki_pull_16(state);
+                               new_pc = m68ki_pull_32(state);
+                               m68ki_fake_pull_16(state);   /* $06: format word */
+                               m68ki_fake_pull_16(state);   /* $08: internal register */
+                               m68ki_fake_pull_16(state);   /* $0a: special status word */
+                               m68ki_fake_pull_16(state);   /* $0c: instruction pipe stage c */
+                               m68ki_fake_pull_16(state);   /* $0e: instruction pipe stage b */
+                               m68ki_fake_pull_32(state);   /* $10: data fault address */
+                               m68ki_fake_pull_32(state);   /* $14: internal registers */
+                               m68ki_fake_pull_32(state);   /* $18: data output buffer */
+                               m68ki_fake_pull_32(state);   /* $1c: internal registers */
+                               m68ki_fake_pull_32(state);   /* $20:  */
+                               m68ki_fake_pull_32(state);   /* $24: stage B address */
+                               m68ki_fake_pull_32(state);   /* $28:  */
+                               m68ki_fake_pull_32(state);   /* $2c: data input buffer */
+                               m68ki_fake_pull_32(state);   /* $30:  */
+                               m68ki_fake_pull_16(state);   /* $34:  */
+                               m68ki_fake_pull_16(state);   /* $36: version #, internal information */
+                               m68ki_fake_pull_32(state);   /* $38:  */
+                               m68ki_fake_pull_32(state);   /* $3c:  */
+                               m68ki_fake_pull_32(state);   /* $40:  */
+                               m68ki_fake_pull_32(state);   /* $44:  */
+                               m68ki_fake_pull_32(state);   /* $48:  */
+                               m68ki_fake_pull_32(state);   /* $4c:  */
+                               m68ki_fake_pull_32(state);   /* $50:  */
+                               m68ki_fake_pull_32(state);   /* $54:  */
+                               m68ki_fake_pull_32(state);   /* $58:  */
 
                                m68ki_jump(new_pc);
                                m68ki_set_sr(state, new_sr);
@@ -9523,10 +9523,10 @@ rte_loop:
                /* Not handling long or short bus fault */
                CPU_INSTR_MODE = INSTRUCTION_YES;
                CPU_RUN_MODE = RUN_MODE_NORMAL;
-               m68ki_exception_format_error();
+               m68ki_exception_format_error(state);
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -9540,22 +9540,22 @@ M68KMAKE_OP(rtm, 32, ., .)
                                         m68ki_disassemble_quick(ADDRESS_68K(REG_PC - 2),CPU_TYPE)));
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
 M68KMAKE_OP(rtr, 32, ., .)
 {
        m68ki_trace_t0();                                  /* auto-disable (see m68kcpu.h) */
-       m68ki_set_ccr(m68ki_pull_16());
-       m68ki_jump(m68ki_pull_32());
+       m68ki_set_ccr(m68ki_pull_16(state));
+       m68ki_jump(m68ki_pull_32(state));
 }
 
 
 M68KMAKE_OP(rts, 32, ., .)
 {
        m68ki_trace_t0();                                  /* auto-disable (see m68kcpu.h) */
-       m68ki_jump(m68ki_pull_32());
+       m68ki_jump(m68ki_pull_32(state));
 }
 
 
@@ -9593,7 +9593,7 @@ M68KMAKE_OP(sbcd, 8, mm, ax7)
 {
        uint src = OPER_AY_PD_8(state);
        uint ea  = EA_A7_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = LOW_NIBBLE(dst) - LOW_NIBBLE(src) - XFLAG_AS_1();
        uint corf = 0;
 
@@ -9615,7 +9615,7 @@ M68KMAKE_OP(sbcd, 8, mm, ax7)
        FLAG_N = NFLAG_8(res); /* Undefined N behavior */
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -9623,7 +9623,7 @@ M68KMAKE_OP(sbcd, 8, mm, ay7)
 {
        uint src = OPER_A7_PD_8(state);
        uint ea  = EA_AX_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = LOW_NIBBLE(dst) - LOW_NIBBLE(src) - XFLAG_AS_1();
        uint corf = 0;
 
@@ -9645,7 +9645,7 @@ M68KMAKE_OP(sbcd, 8, mm, ay7)
        FLAG_N = NFLAG_8(res); /* Undefined N behavior */
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -9653,7 +9653,7 @@ M68KMAKE_OP(sbcd, 8, mm, axy7)
 {
        uint src = OPER_A7_PD_8(state);
        uint ea  = EA_A7_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = LOW_NIBBLE(dst) - LOW_NIBBLE(src) - XFLAG_AS_1();
        uint corf = 0;
 
@@ -9675,7 +9675,7 @@ M68KMAKE_OP(sbcd, 8, mm, axy7)
        FLAG_N = NFLAG_8(res); /* Undefined N behavior */
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -9683,7 +9683,7 @@ M68KMAKE_OP(sbcd, 8, mm, .)
 {
        uint src = OPER_AY_PD_8(state);
        uint ea  = EA_AX_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = LOW_NIBBLE(dst) - LOW_NIBBLE(src) - XFLAG_AS_1();
        uint corf = 0;
 
@@ -9705,7 +9705,7 @@ M68KMAKE_OP(sbcd, 8, mm, .)
        FLAG_N = NFLAG_8(res); /* Undefined N behavior */
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -9717,7 +9717,7 @@ M68KMAKE_OP(st, 8, ., d)
 
 M68KMAKE_OP(st, 8, ., .)
 {
-       m68ki_write_8(M68KMAKE_GET_EA_AY_8, 0xff);
+       m68ki_write_8(state, M68KMAKE_GET_EA_AY_8, 0xff);
 }
 
 
@@ -9729,7 +9729,7 @@ M68KMAKE_OP(sf, 8, ., d)
 
 M68KMAKE_OP(sf, 8, ., .)
 {
-       m68ki_write_8(M68KMAKE_GET_EA_AY_8, 0);
+       m68ki_write_8(state, M68KMAKE_GET_EA_AY_8, 0);
 }
 
 
@@ -9747,7 +9747,7 @@ M68KMAKE_OP(scc, 8, ., d)
 
 M68KMAKE_OP(scc, 8, ., .)
 {
-       m68ki_write_8(M68KMAKE_GET_EA_AY_8, M68KMAKE_CC ? 0xff : 0);
+       m68ki_write_8(state, M68KMAKE_GET_EA_AY_8, M68KMAKE_CC ? 0xff : 0);
 }
 
 
@@ -9765,7 +9765,7 @@ M68KMAKE_OP(stop, 0, ., .)
                        USE_ALL_CYCLES();
                return;
        }
-       m68ki_exception_privilege_violation();
+       m68ki_exception_privilege_violation(state);
 }
 
 
@@ -9901,7 +9901,7 @@ M68KMAKE_OP(sub, 8, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
        uint src = MASK_OUT_ABOVE_8(DX);
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = dst - src;
 
        FLAG_N = NFLAG_8(res);
@@ -9909,7 +9909,7 @@ M68KMAKE_OP(sub, 8, re, .)
        FLAG_X = FLAG_C = CFLAG_8(res);
        FLAG_V = VFLAG_SUB_8(src, dst, res);
 
-       m68ki_write_8(ea, FLAG_Z);
+       m68ki_write_8(state, ea, FLAG_Z);
 }
 
 
@@ -9917,7 +9917,7 @@ M68KMAKE_OP(sub, 16, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_16;
        uint src = MASK_OUT_ABOVE_16(DX);
-       uint dst = m68ki_read_16(ea);
+       uint dst = m68ki_read_16(state, ea);
        uint res = dst - src;
 
        FLAG_N = NFLAG_16(res);
@@ -9925,7 +9925,7 @@ M68KMAKE_OP(sub, 16, re, .)
        FLAG_X = FLAG_C = CFLAG_16(res);
        FLAG_V = VFLAG_SUB_16(src, dst, res);
 
-       m68ki_write_16(ea, FLAG_Z);
+       m68ki_write_16(state, ea, FLAG_Z);
 }
 
 
@@ -9933,7 +9933,7 @@ M68KMAKE_OP(sub, 32, re, .)
 {
        uint ea = M68KMAKE_GET_EA_AY_32;
        uint src = DX;
-       uint dst = m68ki_read_32(ea);
+       uint dst = m68ki_read_32(state, ea);
        uint res = dst - src;
 
        FLAG_N = NFLAG_32(res);
@@ -9941,7 +9941,7 @@ M68KMAKE_OP(sub, 32, re, .)
        FLAG_X = FLAG_C = CFLAG_SUB_32(src, dst, res);
        FLAG_V = VFLAG_SUB_32(src, dst, res);
 
-       m68ki_write_32(ea, FLAG_Z);
+       m68ki_write_32(state, ea, FLAG_Z);
 }
 
 
@@ -10015,7 +10015,7 @@ M68KMAKE_OP(subi, 8, ., .)
 {
        uint src = OPER_I_8(state);
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = dst - src;
 
        FLAG_N = NFLAG_8(res);
@@ -10023,7 +10023,7 @@ M68KMAKE_OP(subi, 8, ., .)
        FLAG_X = FLAG_C = CFLAG_8(res);
        FLAG_V = VFLAG_SUB_8(src, dst, res);
 
-       m68ki_write_8(ea, FLAG_Z);
+       m68ki_write_8(state, ea, FLAG_Z);
 }
 
 
@@ -10047,7 +10047,7 @@ M68KMAKE_OP(subi, 16, ., .)
 {
        uint src = OPER_I_16(state);
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint dst = m68ki_read_16(ea);
+       uint dst = m68ki_read_16(state, ea);
        uint res = dst - src;
 
        FLAG_N = NFLAG_16(res);
@@ -10055,7 +10055,7 @@ M68KMAKE_OP(subi, 16, ., .)
        FLAG_X = FLAG_C = CFLAG_16(res);
        FLAG_V = VFLAG_SUB_16(src, dst, res);
 
-       m68ki_write_16(ea, FLAG_Z);
+       m68ki_write_16(state, ea, FLAG_Z);
 }
 
 
@@ -10079,7 +10079,7 @@ M68KMAKE_OP(subi, 32, ., .)
 {
        uint src = OPER_I_32(state);
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint dst = m68ki_read_32(ea);
+       uint dst = m68ki_read_32(state, ea);
        uint res = dst - src;
 
        FLAG_N = NFLAG_32(res);
@@ -10087,7 +10087,7 @@ M68KMAKE_OP(subi, 32, ., .)
        FLAG_X = FLAG_C = CFLAG_SUB_32(src, dst, res);
        FLAG_V = VFLAG_SUB_32(src, dst, res);
 
-       m68ki_write_32(ea, FLAG_Z);
+       m68ki_write_32(state, ea, FLAG_Z);
 }
 
 
@@ -10111,7 +10111,7 @@ M68KMAKE_OP(subq, 8, ., .)
 {
        uint src = (((REG_IR >> 9) - 1) & 7) + 1;
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = dst - src;
 
        FLAG_N = NFLAG_8(res);
@@ -10119,7 +10119,7 @@ M68KMAKE_OP(subq, 8, ., .)
        FLAG_X = FLAG_C = CFLAG_8(res);
        FLAG_V = VFLAG_SUB_8(src, dst, res);
 
-       m68ki_write_8(ea, FLAG_Z);
+       m68ki_write_8(state, ea, FLAG_Z);
 }
 
 
@@ -10151,7 +10151,7 @@ M68KMAKE_OP(subq, 16, ., .)
 {
        uint src = (((REG_IR >> 9) - 1) & 7) + 1;
        uint ea = M68KMAKE_GET_EA_AY_16;
-       uint dst = m68ki_read_16(ea);
+       uint dst = m68ki_read_16(state, ea);
        uint res = dst - src;
 
        FLAG_N = NFLAG_16(res);
@@ -10159,7 +10159,7 @@ M68KMAKE_OP(subq, 16, ., .)
        FLAG_X = FLAG_C = CFLAG_16(res);
        FLAG_V = VFLAG_SUB_16(src, dst, res);
 
-       m68ki_write_16(ea, FLAG_Z);
+       m68ki_write_16(state, ea, FLAG_Z);
 }
 
 
@@ -10191,7 +10191,7 @@ M68KMAKE_OP(subq, 32, ., .)
 {
        uint src = (((REG_IR >> 9) - 1) & 7) + 1;
        uint ea = M68KMAKE_GET_EA_AY_32;
-       uint dst = m68ki_read_32(ea);
+       uint dst = m68ki_read_32(state, ea);
        uint res = dst - src;
 
        FLAG_N = NFLAG_32(res);
@@ -10199,7 +10199,7 @@ M68KMAKE_OP(subq, 32, ., .)
        FLAG_X = FLAG_C = CFLAG_SUB_32(src, dst, res);
        FLAG_V = VFLAG_SUB_32(src, dst, res);
 
-       m68ki_write_32(ea, FLAG_Z);
+       m68ki_write_32(state, ea, FLAG_Z);
 }
 
 
@@ -10261,7 +10261,7 @@ M68KMAKE_OP(subx, 8, mm, ax7)
 {
        uint src = OPER_AY_PD_8(state);
        uint ea  = EA_A7_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = dst - src - XFLAG_AS_1();
 
        FLAG_N = NFLAG_8(res);
@@ -10271,7 +10271,7 @@ M68KMAKE_OP(subx, 8, mm, ax7)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -10279,7 +10279,7 @@ M68KMAKE_OP(subx, 8, mm, ay7)
 {
        uint src = OPER_A7_PD_8(state);
        uint ea  = EA_AX_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = dst - src - XFLAG_AS_1();
 
        FLAG_N = NFLAG_8(res);
@@ -10289,7 +10289,7 @@ M68KMAKE_OP(subx, 8, mm, ay7)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -10297,7 +10297,7 @@ M68KMAKE_OP(subx, 8, mm, axy7)
 {
        uint src = OPER_A7_PD_8(state);
        uint ea  = EA_A7_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = dst - src - XFLAG_AS_1();
 
        FLAG_N = NFLAG_8(res);
@@ -10307,7 +10307,7 @@ M68KMAKE_OP(subx, 8, mm, axy7)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -10315,7 +10315,7 @@ M68KMAKE_OP(subx, 8, mm, .)
 {
        uint src = OPER_AY_PD_8(state);
        uint ea  = EA_AX_PD_8();
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint res = dst - src - XFLAG_AS_1();
 
        FLAG_N = NFLAG_8(res);
@@ -10325,7 +10325,7 @@ M68KMAKE_OP(subx, 8, mm, .)
        res = MASK_OUT_ABOVE_8(res);
        FLAG_Z |= res;
 
-       m68ki_write_8(ea, res);
+       m68ki_write_8(state, ea, res);
 }
 
 
@@ -10333,7 +10333,7 @@ M68KMAKE_OP(subx, 16, mm, .)
 {
        uint src = OPER_AY_PD_16(state);
        uint ea  = EA_AX_PD_16();
-       uint dst = m68ki_read_16(ea);
+       uint dst = m68ki_read_16(state, ea);
        uint res = dst - src - XFLAG_AS_1();
 
        FLAG_N = NFLAG_16(res);
@@ -10343,7 +10343,7 @@ M68KMAKE_OP(subx, 16, mm, .)
        res = MASK_OUT_ABOVE_16(res);
        FLAG_Z |= res;
 
-       m68ki_write_16(ea, res);
+       m68ki_write_16(state, ea, res);
 }
 
 
@@ -10351,7 +10351,7 @@ M68KMAKE_OP(subx, 32, mm, .)
 {
        uint src = OPER_AY_PD_32(state);
        uint ea  = EA_AX_PD_32();
-       uint dst = m68ki_read_32(ea);
+       uint dst = m68ki_read_32(state, ea);
        uint res = dst - src - XFLAG_AS_1();
 
        FLAG_N = NFLAG_32(res);
@@ -10361,7 +10361,7 @@ M68KMAKE_OP(subx, 32, mm, .)
        res = MASK_OUT_ABOVE_32(res);
        FLAG_Z |= res;
 
-       m68ki_write_32(ea, res);
+       m68ki_write_32(state, ea, res);
 }
 
 
@@ -10394,7 +10394,7 @@ M68KMAKE_OP(tas, 8, ., d)
 M68KMAKE_OP(tas, 8, ., .)
 {
        uint ea = M68KMAKE_GET_EA_AY_8;
-       uint dst = m68ki_read_8(ea);
+       uint dst = m68ki_read_8(state, ea);
        uint allow_writeback;
 
        FLAG_Z = dst;
@@ -10408,14 +10408,14 @@ M68KMAKE_OP(tas, 8, ., .)
        will be needed. */
        allow_writeback = m68ki_tas_callback();
 
-       if (allow_writeback==1) m68ki_write_8(ea, dst | 0x80);
+       if (allow_writeback==1) m68ki_write_8(state, ea, dst | 0x80);
 }
 
 
 M68KMAKE_OP(trap, 0, ., .)
 {
        /* Trap#n stacks exception frame type 0 */
-       m68ki_exception_trapN(EXCEPTION_TRAP_BASE + (REG_IR & 0xf));    /* HJB 990403 */
+       m68ki_exception_trapN(state, EXCEPTION_TRAP_BASE + (REG_IR & 0xf));     /* HJB 990403 */
 }
 
 
@@ -10423,10 +10423,10 @@ M68KMAKE_OP(trapt, 0, ., .)
 {
        if(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
        {
-               m68ki_exception_trap(EXCEPTION_TRAPV);  /* HJB 990403 */
+               m68ki_exception_trap(state, EXCEPTION_TRAPV);   /* HJB 990403 */
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10436,10 +10436,10 @@ M68KMAKE_OP(trapt, 16, ., .)
        {
        // TODO: review this... as mame is not using it...
         REG_PC += 2; // JFF else stackframe & return addresses are incorrect
-               m68ki_exception_trap(EXCEPTION_TRAPV);  /* HJB 990403 */
+               m68ki_exception_trap(state, EXCEPTION_TRAPV);   /* HJB 990403 */
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10449,10 +10449,10 @@ M68KMAKE_OP(trapt, 32, ., .)
        {
        // TODO: review this... as mame is not using it...
         REG_PC += 4; // JFF else stackframe & return addresses are incorrect
-               m68ki_exception_trap(EXCEPTION_TRAPV);  /* HJB 990403 */
+               m68ki_exception_trap(state, EXCEPTION_TRAPV);   /* HJB 990403 */
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10462,7 +10462,7 @@ M68KMAKE_OP(trapf, 0, ., .)
        {
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10473,7 +10473,7 @@ M68KMAKE_OP(trapf, 16, ., .)
                REG_PC += 2;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10484,7 +10484,7 @@ M68KMAKE_OP(trapf, 32, ., .)
                REG_PC += 4;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10493,10 +10493,10 @@ M68KMAKE_OP(trapcc, 0, ., .)
        if(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
        {
                if(M68KMAKE_CC)
-                       m68ki_exception_trap(EXCEPTION_TRAPV);  /* HJB 990403 */
+                       m68ki_exception_trap(state, EXCEPTION_TRAPV);   /* HJB 990403 */
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10508,13 +10508,13 @@ M68KMAKE_OP(trapcc, 16, ., .)
        REG_PC += 2;  /* JFF increase before or 1) stackframe is incorrect 2) RTE address is wrong if trap is taken */
                if(M68KMAKE_CC)
                {
-                       m68ki_exception_trap(EXCEPTION_TRAPV);  /* HJB 990403 */
+                       m68ki_exception_trap(state, EXCEPTION_TRAPV);   /* HJB 990403 */
                        return;
                }
 
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10526,12 +10526,12 @@ M68KMAKE_OP(trapcc, 32, ., .)
                REG_PC += 4;  /* JFF increase before or 1) stackframe is incorrect 2) RTE address is wrong if trap is taken */
                if(M68KMAKE_CC)
                {
-                       m68ki_exception_trap(EXCEPTION_TRAPV);  /* HJB 990403 */
+                       m68ki_exception_trap(state, EXCEPTION_TRAPV);   /* HJB 990403 */
                        return;
                }
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10541,7 +10541,7 @@ M68KMAKE_OP(trapv, 0, ., .)
        {
                return;
        }
-       m68ki_exception_trap(EXCEPTION_TRAPV);  /* HJB 990403 */
+       m68ki_exception_trap(state, EXCEPTION_TRAPV);  /* HJB 990403 */
 }
 
 
@@ -10579,7 +10579,7 @@ M68KMAKE_OP(tst, 8, ., pcdi)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10595,7 +10595,7 @@ M68KMAKE_OP(tst, 8, ., pcix)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10611,7 +10611,7 @@ M68KMAKE_OP(tst, 8, ., i)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10638,7 +10638,7 @@ M68KMAKE_OP(tst, 16, ., a)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10665,7 +10665,7 @@ M68KMAKE_OP(tst, 16, ., pcdi)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10681,7 +10681,7 @@ M68KMAKE_OP(tst, 16, ., pcix)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10697,7 +10697,7 @@ M68KMAKE_OP(tst, 16, ., i)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10724,7 +10724,7 @@ M68KMAKE_OP(tst, 32, ., a)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10751,7 +10751,7 @@ M68KMAKE_OP(tst, 32, ., pcdi)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10767,7 +10767,7 @@ M68KMAKE_OP(tst, 32, ., pcix)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10783,13 +10783,13 @@ M68KMAKE_OP(tst, 32, ., i)
                FLAG_C = CFLAG_CLEAR;
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
 M68KMAKE_OP(unlk, 32, ., a7)
 {
-       REG_A[7] = m68ki_read_32(REG_A[7]);
+       REG_A[7] = m68ki_read_32(state, REG_A[7]);
 }
 
 
@@ -10798,7 +10798,7 @@ M68KMAKE_OP(unlk, 32, ., .)
        uint* r_dst = &AY;
 
        REG_A[7] = *r_dst;
-       *r_dst = m68ki_pull_32();
+       *r_dst = m68ki_pull_32(state);
 }
 
 
@@ -10813,7 +10813,7 @@ M68KMAKE_OP(unpk, 16, rr, .)
                *r_dst = MASK_OUT_BELOW_16(*r_dst) | (((((src << 4) & 0x0f00) | (src & 0x000f)) + OPER_I_16(state)) & 0xffff);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10827,12 +10827,12 @@ M68KMAKE_OP(unpk, 16, mm, ax7)
 
                src = (((src << 4) & 0x0f00) | (src & 0x000f)) + OPER_I_16(state);
                ea_dst = EA_A7_PD_8();
-               m68ki_write_8(ea_dst, src & 0xff);
+               m68ki_write_8(state, ea_dst, src & 0xff);
                ea_dst = EA_A7_PD_8();
-               m68ki_write_8(ea_dst, (src >> 8) & 0xff);
+               m68ki_write_8(state, ea_dst, (src >> 8) & 0xff);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10846,12 +10846,12 @@ M68KMAKE_OP(unpk, 16, mm, ay7)
 
                src = (((src << 4) & 0x0f00) | (src & 0x000f)) + OPER_I_16(state);
                ea_dst = EA_AX_PD_8();
-               m68ki_write_8(ea_dst, src & 0xff);
+               m68ki_write_8(state, ea_dst, src & 0xff);
                ea_dst = EA_AX_PD_8();
-               m68ki_write_8(ea_dst, (src >> 8) & 0xff);
+               m68ki_write_8(state, ea_dst, (src >> 8) & 0xff);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10864,12 +10864,12 @@ M68KMAKE_OP(unpk, 16, mm, axy7)
 
                src = (((src << 4) & 0x0f00) | (src & 0x000f)) + OPER_I_16(state);
                ea_dst = EA_A7_PD_8();
-               m68ki_write_8(ea_dst, src & 0xff);
+               m68ki_write_8(state, ea_dst, src & 0xff);
                ea_dst = EA_A7_PD_8();
-               m68ki_write_8(ea_dst, (src >> 8) & 0xff);
+               m68ki_write_8(state, ea_dst, (src >> 8) & 0xff);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }
 
 
@@ -10883,12 +10883,12 @@ M68KMAKE_OP(unpk, 16, mm, .)
 
                src = (((src << 4) & 0x0f00) | (src & 0x000f)) + OPER_I_16(state);
                ea_dst = EA_AX_PD_8();
-               m68ki_write_8(ea_dst, src & 0xff);
+               m68ki_write_8(state, ea_dst, src & 0xff);
                ea_dst = EA_AX_PD_8();
-               m68ki_write_8(ea_dst, (src >> 8) & 0xff);
+               m68ki_write_8(state, ea_dst, (src >> 8) & 0xff);
                return;
        }
-       m68ki_exception_illegal();
+       m68ki_exception_illegal(state);
 }