]> git.sesse.net Git - pistorm/blob - m68kcpu.h
Merge branch 'wip-crap' into 0.x-dev
[pistorm] / m68kcpu.h
1 /* ======================================================================== */
2 /* ========================= LICENSING & COPYRIGHT ======================== */
3 /* ======================================================================== */
4 /*
5  *                                  MUSASHI
6  *                                Version 4.5
7  *
8  * A portable Motorola M680x0 processor emulation engine.
9  * Copyright Karl Stenerud.  All rights reserved.
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining a copy
12  * of this software and associated documentation files (the "Software"), to deal
13  * in the Software without restriction, including without limitation the rights
14  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15  * copies of the Software, and to permit persons to whom the Software is
16  * furnished to do so, subject to the following conditions:
17  *
18  * The above copyright notice and this permission notice shall be included in
19  * all copies or substantial portions of the Software.
20
21  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27  * THE SOFTWARE.
28  */
29
30
31
32
33 #ifndef M68KCPU__HEADER
34 #define M68KCPU__HEADER
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 #include "m68k.h"
41
42 #include <limits.h>
43 #include <endian.h>
44
45 #include <setjmp.h>
46
47 /* ======================================================================== */
48 /* ==================== ARCHITECTURE-DEPENDANT DEFINES ==================== */
49 /* ======================================================================== */
50
51 /* Check for > 32bit sizes */
52 #if UINT_MAX > 0xffffffff
53         #define M68K_INT_GT_32_BIT  1
54 #else
55         #define M68K_INT_GT_32_BIT  0
56 #endif
57
58 /* Data types used in this emulation core */
59 #undef sint8
60 #undef sint16
61 #undef sint32
62 #undef sint64
63 #undef uint8
64 #undef uint16
65 #undef uint32
66 #undef uint64
67 #undef sint
68 #undef uint
69
70 typedef signed   char  sint8;           /* ASG: changed from char to signed char */
71 typedef signed   short sint16;
72 typedef signed   int   sint32;          /* AWJ: changed from long to int */
73 typedef unsigned char  uint8;
74 typedef unsigned short uint16;
75 typedef unsigned int   uint32;                  /* AWJ: changed from long to int */
76
77 /* signed and unsigned int must be at least 32 bits wide */
78 typedef signed   int sint;
79 typedef unsigned int uint;
80
81
82 #if M68K_USE_64_BIT
83 typedef signed   long long sint64;
84 typedef unsigned long long uint64;
85 #else
86 typedef sint32 sint64;
87 typedef uint32 uint64;
88 #endif /* M68K_USE_64_BIT */
89
90 /* U64 and S64 are used to wrap long integer constants. */
91 #ifdef __GNUC__
92 #define U64(val) val##ULL
93 #define S64(val) val##LL
94 #else
95 #define U64(val) val
96 #define S64(val) val
97 #endif
98
99 #include "softfloat/milieu.h"
100 #include "softfloat/softfloat.h"
101
102
103 /* Allow for architectures that don't have 8-bit sizes */
104 #if UCHAR_MAX == 0xff
105         #define MAKE_INT_8(A) (sint8)(A)
106 #else
107         #undef  sint8
108         #define sint8  signed   int
109         #undef  uint8
110         #define uint8  unsigned int
111         static inline sint MAKE_INT_8(uint value)
112         {
113                 return (value & 0x80) ? value | ~0xff : value & 0xff;
114         }
115 #endif /* UCHAR_MAX == 0xff */
116
117
118 /* Allow for architectures that don't have 16-bit sizes */
119 #if USHRT_MAX == 0xffff
120         #define MAKE_INT_16(A) (sint16)(A)
121 #else
122         #undef  sint16
123         #define sint16 signed   int
124         #undef  uint16
125         #define uint16 unsigned int
126         static inline sint MAKE_INT_16(uint value)
127         {
128                 return (value & 0x8000) ? value | ~0xffff : value & 0xffff;
129         }
130 #endif /* USHRT_MAX == 0xffff */
131
132
133 /* Allow for architectures that don't have 32-bit sizes */
134 #if UINT_MAX == 0xffffffff
135         #define MAKE_INT_32(A) (sint32)(A)
136 #else
137         #undef  sint32
138         #define sint32  signed   int
139         #undef  uint32
140         #define uint32  unsigned int
141         static inline sint MAKE_INT_32(uint value)
142         {
143                 return (value & 0x80000000) ? value | ~0xffffffff : value & 0xffffffff;
144         }
145 #endif /* UINT_MAX == 0xffffffff */
146
147
148
149
150 /* ======================================================================== */
151 /* ============================ GENERAL DEFINES =========================== */
152 /* ======================================================================== */
153
154 /* Exception Vectors handled by emulation */
155 #define EXCEPTION_RESET                    0
156 #define EXCEPTION_BUS_ERROR                2 /* This one is not emulated! */
157 #define EXCEPTION_ADDRESS_ERROR            3 /* This one is partially emulated (doesn't stack a proper frame yet) */
158 #define EXCEPTION_ILLEGAL_INSTRUCTION      4
159 #define EXCEPTION_ZERO_DIVIDE              5
160 #define EXCEPTION_CHK                      6
161 #define EXCEPTION_TRAPV                    7
162 #define EXCEPTION_PRIVILEGE_VIOLATION      8
163 #define EXCEPTION_TRACE                    9
164 #define EXCEPTION_1010                    10
165 #define EXCEPTION_1111                    11
166 #define EXCEPTION_FORMAT_ERROR            14
167 #define EXCEPTION_UNINITIALIZED_INTERRUPT 15
168 #define EXCEPTION_SPURIOUS_INTERRUPT      24
169 #define EXCEPTION_INTERRUPT_AUTOVECTOR    24
170 #define EXCEPTION_TRAP_BASE               32
171
172 /* Function codes set by CPU during data/address bus activity */
173 #define FUNCTION_CODE_USER_DATA          1
174 #define FUNCTION_CODE_USER_PROGRAM       2
175 #define FUNCTION_CODE_SUPERVISOR_DATA    5
176 #define FUNCTION_CODE_SUPERVISOR_PROGRAM 6
177 #define FUNCTION_CODE_CPU_SPACE          7
178
179 /* CPU types for deciding what to emulate */
180 #define CPU_TYPE_000    (0x00000001)
181 #define CPU_TYPE_008    (0x00000002)
182 #define CPU_TYPE_010    (0x00000004)
183 #define CPU_TYPE_EC020  (0x00000008)
184 #define CPU_TYPE_020    (0x00000010)
185 #define CPU_TYPE_EC030  (0x00000020)
186 #define CPU_TYPE_030    (0x00000040)
187 #define CPU_TYPE_EC040  (0x00000080)
188 #define CPU_TYPE_LC040  (0x00000100)
189 #define CPU_TYPE_040    (0x00000200)
190 #define CPU_TYPE_SCC070 (0x00000400)
191
192 /* Different ways to stop the CPU */
193 #define STOP_LEVEL_STOP 1
194 #define STOP_LEVEL_HALT 2
195
196 /* Used for 68000 address error processing */
197 #define INSTRUCTION_YES 0
198 #define INSTRUCTION_NO  0x08
199 #define MODE_READ       0x10
200 #define MODE_WRITE      0
201
202 #define RUN_MODE_NORMAL          0
203 #define RUN_MODE_BERR_AERR_RESET 1
204
205 #ifndef NULL
206 #define NULL ((void*)0)
207 #endif
208
209 /* ======================================================================== */
210 /* ================================ MACROS ================================ */
211 /* ======================================================================== */
212
213
214 /* ---------------------------- General Macros ---------------------------- */
215
216 /* Bit Isolation Macros */
217 #define BIT_0(A)  ((A) & 0x00000001)
218 #define BIT_1(A)  ((A) & 0x00000002)
219 #define BIT_2(A)  ((A) & 0x00000004)
220 #define BIT_3(A)  ((A) & 0x00000008)
221 #define BIT_4(A)  ((A) & 0x00000010)
222 #define BIT_5(A)  ((A) & 0x00000020)
223 #define BIT_6(A)  ((A) & 0x00000040)
224 #define BIT_7(A)  ((A) & 0x00000080)
225 #define BIT_8(A)  ((A) & 0x00000100)
226 #define BIT_9(A)  ((A) & 0x00000200)
227 #define BIT_A(A)  ((A) & 0x00000400)
228 #define BIT_B(A)  ((A) & 0x00000800)
229 #define BIT_C(A)  ((A) & 0x00001000)
230 #define BIT_D(A)  ((A) & 0x00002000)
231 #define BIT_E(A)  ((A) & 0x00004000)
232 #define BIT_F(A)  ((A) & 0x00008000)
233 #define BIT_10(A) ((A) & 0x00010000)
234 #define BIT_11(A) ((A) & 0x00020000)
235 #define BIT_12(A) ((A) & 0x00040000)
236 #define BIT_13(A) ((A) & 0x00080000)
237 #define BIT_14(A) ((A) & 0x00100000)
238 #define BIT_15(A) ((A) & 0x00200000)
239 #define BIT_16(A) ((A) & 0x00400000)
240 #define BIT_17(A) ((A) & 0x00800000)
241 #define BIT_18(A) ((A) & 0x01000000)
242 #define BIT_19(A) ((A) & 0x02000000)
243 #define BIT_1A(A) ((A) & 0x04000000)
244 #define BIT_1B(A) ((A) & 0x08000000)
245 #define BIT_1C(A) ((A) & 0x10000000)
246 #define BIT_1D(A) ((A) & 0x20000000)
247 #define BIT_1E(A) ((A) & 0x40000000)
248 #define BIT_1F(A) ((A) & 0x80000000)
249
250 /* Get the most significant bit for specific sizes */
251 #define GET_MSB_8(A)  ((A) & 0x80)
252 #define GET_MSB_9(A)  ((A) & 0x100)
253 #define GET_MSB_16(A) ((A) & 0x8000)
254 #define GET_MSB_17(A) ((A) & 0x10000)
255 #define GET_MSB_32(A) ((A) & 0x80000000)
256 #if M68K_USE_64_BIT
257 #define GET_MSB_33(A) ((A) & 0x100000000)
258 #endif /* M68K_USE_64_BIT */
259
260 /* Isolate nibbles */
261 #define LOW_NIBBLE(A)  ((A) & 0x0f)
262 #define HIGH_NIBBLE(A) ((A) & 0xf0)
263
264 /* These are used to isolate 8, 16, and 32 bit sizes */
265 #define MASK_OUT_ABOVE_2(A)  ((A) & 3)
266 #define MASK_OUT_ABOVE_8(A)  ((A) & 0xff)
267 #define MASK_OUT_ABOVE_16(A) ((A) & 0xffff)
268 #define MASK_OUT_BELOW_2(A)  ((A) & ~3)
269 #define MASK_OUT_BELOW_8(A)  ((A) & ~0xff)
270 #define MASK_OUT_BELOW_16(A) ((A) & ~0xffff)
271
272 /* No need to mask if we are 32 bit */
273 #if M68K_INT_GT_32_BIT || M68K_USE_64_BIT
274         #define MASK_OUT_ABOVE_32(A) ((A) & 0xffffffff)
275         #define MASK_OUT_BELOW_32(A) ((A) & ~0xffffffff)
276 #else
277         #define MASK_OUT_ABOVE_32(A) (A)
278         #define MASK_OUT_BELOW_32(A) 0
279 #endif /* M68K_INT_GT_32_BIT || M68K_USE_64_BIT */
280
281 /* Simulate address lines of 68k family */
282 #define ADDRESS_68K(A) ((A)&CPU_ADDRESS_MASK)
283
284
285 /* Shift & Rotate Macros. */
286 #define LSL(A, C) ((A) << (C))
287 #define LSR(A, C) ((A) >> (C))
288
289 /* Some > 32-bit optimizations */
290 #if M68K_INT_GT_32_BIT
291         /* Shift left and right */
292         #define LSR_32(A, C) ((A) >> (C))
293         #define LSL_32(A, C) ((A) << (C))
294 #else
295         /* We have to do this because the morons at ANSI decided that shifts
296          * by >= data size are undefined.
297          */
298         #define LSR_32(A, C) ((C) < 32 ? (A) >> (C) : 0)
299         #define LSL_32(A, C) ((C) < 32 ? (A) << (C) : 0)
300 #endif /* M68K_INT_GT_32_BIT */
301
302 #if M68K_USE_64_BIT
303         #define LSL_32_64(A, C) ((A) << (C))
304         #define LSR_32_64(A, C) ((A) >> (C))
305         #define ROL_33_64(A, C) (LSL_32_64(A, C) | LSR_32_64(A, 33-(C)))
306         #define ROR_33_64(A, C) (LSR_32_64(A, C) | LSL_32_64(A, 33-(C)))
307 #endif /* M68K_USE_64_BIT */
308
309 #define ROL_8(A, C)      MASK_OUT_ABOVE_8(LSL(A, C) | LSR(A, 8-(C)))
310 #define ROL_9(A, C)                      (LSL(A, C) | LSR(A, 9-(C)))
311 #define ROL_16(A, C)    MASK_OUT_ABOVE_16(LSL(A, C) | LSR(A, 16-(C)))
312 #define ROL_17(A, C)                     (LSL(A, C) | LSR(A, 17-(C)))
313 #define ROL_32(A, C)    MASK_OUT_ABOVE_32(LSL_32(A, C) | LSR_32(A, 32-(C)))
314 #define ROL_33(A, C)                     (LSL_32(A, C) | LSR_32(A, 33-(C)))
315
316 #define ROR_8(A, C)      MASK_OUT_ABOVE_8(LSR(A, C) | LSL(A, 8-(C)))
317 #define ROR_9(A, C)                      (LSR(A, C) | LSL(A, 9-(C)))
318 #define ROR_16(A, C)    MASK_OUT_ABOVE_16(LSR(A, C) | LSL(A, 16-(C)))
319 #define ROR_17(A, C)                     (LSR(A, C) | LSL(A, 17-(C)))
320 #define ROR_32(A, C)    MASK_OUT_ABOVE_32(LSR_32(A, C) | LSL_32(A, 32-(C)))
321 #define ROR_33(A, C)                     (LSR_32(A, C) | LSL_32(A, 33-(C)))
322
323
324
325 /* ------------------------------ CPU Access ------------------------------ */
326
327 /* Access the CPU registers */
328 #define CPU_TYPE         m68ki_cpu.cpu_type
329
330 #define REG_DA           m68ki_cpu.dar /* easy access to data and address regs */
331 #define REG_DA_SAVE           m68ki_cpu.dar_save
332 #define REG_D            m68ki_cpu.dar
333 #define REG_A            (m68ki_cpu.dar+8)
334 #define REG_PPC                  m68ki_cpu.ppc
335 #define REG_PC           m68ki_cpu.pc
336 #define REG_SP_BASE      m68ki_cpu.sp
337 #define REG_USP          m68ki_cpu.sp[0]
338 #define REG_ISP          m68ki_cpu.sp[4]
339 #define REG_MSP          m68ki_cpu.sp[6]
340 #define REG_SP           m68ki_cpu.dar[15]
341 #define REG_VBR          m68ki_cpu.vbr
342 #define REG_SFC          m68ki_cpu.sfc
343 #define REG_DFC          m68ki_cpu.dfc
344 #define REG_CACR         m68ki_cpu.cacr
345 #define REG_CAAR         m68ki_cpu.caar
346 #define REG_IR           m68ki_cpu.ir
347
348 #define REG_FP           m68ki_cpu.fpr
349 #define REG_FPCR         m68ki_cpu.fpcr
350 #define REG_FPSR         m68ki_cpu.fpsr
351 #define REG_FPIAR        m68ki_cpu.fpiar
352
353 #define FLAG_T1          m68ki_cpu.t1_flag
354 #define FLAG_T0          m68ki_cpu.t0_flag
355 #define FLAG_S           m68ki_cpu.s_flag
356 #define FLAG_M           m68ki_cpu.m_flag
357 #define FLAG_X           m68ki_cpu.x_flag
358 #define FLAG_N           m68ki_cpu.n_flag
359 #define FLAG_Z           m68ki_cpu.not_z_flag
360 #define FLAG_V           m68ki_cpu.v_flag
361 #define FLAG_C           m68ki_cpu.c_flag
362 #define FLAG_INT_MASK    m68ki_cpu.int_mask
363
364 #define CPU_INT_LEVEL    m68ki_cpu.int_level /* ASG: changed from CPU_INTS_PENDING */
365 #define CPU_STOPPED      m68ki_cpu.stopped
366 #define CPU_PREF_ADDR    m68ki_cpu.pref_addr
367 #define CPU_PREF_DATA    m68ki_cpu.pref_data
368 #define CPU_ADDRESS_MASK m68ki_cpu.address_mask
369 #define CPU_SR_MASK      m68ki_cpu.sr_mask
370 #define CPU_INSTR_MODE   m68ki_cpu.instr_mode
371 #define CPU_RUN_MODE     m68ki_cpu.run_mode
372
373 #define CYC_INSTRUCTION  m68ki_cpu.cyc_instruction
374 #define CYC_EXCEPTION    m68ki_cpu.cyc_exception
375 #define CYC_BCC_NOTAKE_B m68ki_cpu.cyc_bcc_notake_b
376 #define CYC_BCC_NOTAKE_W m68ki_cpu.cyc_bcc_notake_w
377 #define CYC_DBCC_F_NOEXP m68ki_cpu.cyc_dbcc_f_noexp
378 #define CYC_DBCC_F_EXP   m68ki_cpu.cyc_dbcc_f_exp
379 #define CYC_SCC_R_TRUE   m68ki_cpu.cyc_scc_r_true
380 #define CYC_MOVEM_W      m68ki_cpu.cyc_movem_w
381 #define CYC_MOVEM_L      m68ki_cpu.cyc_movem_l
382 #define CYC_SHIFT        m68ki_cpu.cyc_shift
383 #define CYC_RESET        m68ki_cpu.cyc_reset
384 #define HAS_PMMU         m68ki_cpu.has_pmmu
385 #define PMMU_ENABLED     m68ki_cpu.pmmu_enabled
386 #define RESET_CYCLES     m68ki_cpu.reset_cycles
387
388
389 #define CALLBACK_INT_ACK     m68ki_cpu.int_ack_callback
390 #define CALLBACK_BKPT_ACK    m68ki_cpu.bkpt_ack_callback
391 #define CALLBACK_RESET_INSTR m68ki_cpu.reset_instr_callback
392 #define CALLBACK_CMPILD_INSTR m68ki_cpu.cmpild_instr_callback
393 #define CALLBACK_RTE_INSTR    m68ki_cpu.rte_instr_callback
394 #define CALLBACK_TAS_INSTR    m68ki_cpu.tas_instr_callback
395 #define CALLBACK_ILLG_INSTR    m68ki_cpu.illg_instr_callback
396 #define CALLBACK_PC_CHANGED  m68ki_cpu.pc_changed_callback
397 #define CALLBACK_SET_FC      m68ki_cpu.set_fc_callback
398 #define CALLBACK_INSTR_HOOK  m68ki_cpu.instr_hook_callback
399
400
401
402 /* ----------------------------- Configuration ---------------------------- */
403
404 /* These defines are dependant on the configuration defines in m68kconf.h */
405
406 /* Disable certain comparisons if we're not using all CPU types */
407 #if M68K_EMULATE_040
408 #define CPU_TYPE_IS_040_PLUS(A)    ((A) & (CPU_TYPE_040 | CPU_TYPE_EC040))
409         #define CPU_TYPE_IS_040_LESS(A)    1
410 #else
411         #define CPU_TYPE_IS_040_PLUS(A)    0
412         #define CPU_TYPE_IS_040_LESS(A)    1
413 #endif
414
415 #if M68K_EMULATE_030
416 #define CPU_TYPE_IS_030_PLUS(A)    ((A) & (CPU_TYPE_030 | CPU_TYPE_EC030 | CPU_TYPE_040 | CPU_TYPE_EC040))
417 #define CPU_TYPE_IS_030_LESS(A)    1
418 #else
419 #define CPU_TYPE_IS_030_PLUS(A) 0
420 #define CPU_TYPE_IS_030_LESS(A)    1
421 #endif
422
423 #if M68K_EMULATE_020
424 #define CPU_TYPE_IS_020_PLUS(A)    ((A) & (CPU_TYPE_020 | CPU_TYPE_030 | CPU_TYPE_EC030 | CPU_TYPE_040 | CPU_TYPE_EC040))
425         #define CPU_TYPE_IS_020_LESS(A)    1
426 #else
427         #define CPU_TYPE_IS_020_PLUS(A)    0
428         #define CPU_TYPE_IS_020_LESS(A)    1
429 #endif
430
431 #if M68K_EMULATE_EC020
432 #define CPU_TYPE_IS_EC020_PLUS(A)  ((A) & (CPU_TYPE_EC020 | CPU_TYPE_020 | CPU_TYPE_030 | CPU_TYPE_EC030 | CPU_TYPE_040 | CPU_TYPE_EC040))
433         #define CPU_TYPE_IS_EC020_LESS(A)  ((A) & (CPU_TYPE_000 | CPU_TYPE_010 | CPU_TYPE_EC020))
434 #else
435         #define CPU_TYPE_IS_EC020_PLUS(A)  CPU_TYPE_IS_020_PLUS(A)
436         #define CPU_TYPE_IS_EC020_LESS(A)  CPU_TYPE_IS_020_LESS(A)
437 #endif
438
439 #if M68K_EMULATE_010
440         #define CPU_TYPE_IS_010(A)         ((A) == CPU_TYPE_010)
441 #define CPU_TYPE_IS_010_PLUS(A)    ((A) & (CPU_TYPE_010 | CPU_TYPE_EC020 | CPU_TYPE_020 | CPU_TYPE_EC030 | CPU_TYPE_030 | CPU_TYPE_040 | CPU_TYPE_EC040))
442 #define CPU_TYPE_IS_010_LESS(A)    ((A) & (CPU_TYPE_000 | CPU_TYPE_008 | CPU_TYPE_010))
443 #else
444         #define CPU_TYPE_IS_010(A)         0
445         #define CPU_TYPE_IS_010_PLUS(A)    CPU_TYPE_IS_EC020_PLUS(A)
446         #define CPU_TYPE_IS_010_LESS(A)    CPU_TYPE_IS_EC020_LESS(A)
447 #endif
448
449 #if M68K_EMULATE_020 || M68K_EMULATE_EC020
450         #define CPU_TYPE_IS_020_VARIANT(A) ((A) & (CPU_TYPE_EC020 | CPU_TYPE_020))
451 #else
452         #define CPU_TYPE_IS_020_VARIANT(A) 0
453 #endif
454
455 #if M68K_EMULATE_040 || M68K_EMULATE_020 || M68K_EMULATE_EC020 || M68K_EMULATE_010
456         #define CPU_TYPE_IS_000(A)         ((A) == CPU_TYPE_000)
457 #else
458         #define CPU_TYPE_IS_000(A)         1
459 #endif
460
461
462 #if !M68K_SEPARATE_READS
463 #define m68k_read_immediate_16(A) m68ki_read_program_16(A)
464 #define m68k_read_immediate_32(A) m68ki_read_program_32(A)
465
466 #define m68k_read_pcrelative_8(A) m68ki_read_program_8(A)
467 #define m68k_read_pcrelative_16(A) m68ki_read_program_16(A)
468 #define m68k_read_pcrelative_32(A) m68ki_read_program_32(A)
469 #endif /* M68K_SEPARATE_READS */
470
471
472 /* Enable or disable callback functions */
473 #if M68K_EMULATE_INT_ACK
474         #if M68K_EMULATE_INT_ACK == OPT_SPECIFY_HANDLER
475                 #define m68ki_int_ack(A) M68K_INT_ACK_CALLBACK(A)
476         #else
477                 #define m68ki_int_ack(A) CALLBACK_INT_ACK(A)
478         #endif
479 #else
480         /* Default action is to used autovector mode, which is most common */
481         #define m68ki_int_ack(A) M68K_INT_ACK_AUTOVECTOR
482 #endif /* M68K_EMULATE_INT_ACK */
483
484 #if M68K_EMULATE_BKPT_ACK
485         #if M68K_EMULATE_BKPT_ACK == OPT_SPECIFY_HANDLER
486                 #define m68ki_bkpt_ack(A) M68K_BKPT_ACK_CALLBACK(A)
487         #else
488                 #define m68ki_bkpt_ack(A) CALLBACK_BKPT_ACK(A)
489         #endif
490 #else
491         #define m68ki_bkpt_ack(A)
492 #endif /* M68K_EMULATE_BKPT_ACK */
493
494 #if M68K_EMULATE_RESET
495         #if M68K_EMULATE_RESET == OPT_SPECIFY_HANDLER
496                 #define m68ki_output_reset() M68K_RESET_CALLBACK()
497         #else
498                 #define m68ki_output_reset() CALLBACK_RESET_INSTR()
499         #endif
500 #else
501         #define m68ki_output_reset()
502 #endif /* M68K_EMULATE_RESET */
503
504 #if M68K_CMPILD_HAS_CALLBACK
505         #if M68K_CMPILD_HAS_CALLBACK == OPT_SPECIFY_HANDLER
506                 #define m68ki_cmpild_callback(v,r) M68K_CMPILD_CALLBACK(v,r)
507         #else
508                 #define m68ki_cmpild_callback(v,r) CALLBACK_CMPILD_INSTR(v,r)
509         #endif
510 #else
511         #define m68ki_cmpild_callback(v,r)
512 #endif /* M68K_CMPILD_HAS_CALLBACK */
513
514 #if M68K_RTE_HAS_CALLBACK
515         #if M68K_RTE_HAS_CALLBACK == OPT_SPECIFY_HANDLER
516                 #define m68ki_rte_callback() M68K_RTE_CALLBACK()
517         #else
518                 #define m68ki_rte_callback() CALLBACK_RTE_INSTR()
519         #endif
520 #else
521         #define m68ki_rte_callback()
522 #endif /* M68K_RTE_HAS_CALLBACK */
523
524 #if M68K_TAS_HAS_CALLBACK
525         #if M68K_TAS_HAS_CALLBACK == OPT_SPECIFY_HANDLER
526                 #define m68ki_tas_callback() M68K_TAS_CALLBACK()
527         #else
528                 #define m68ki_tas_callback() CALLBACK_TAS_INSTR()
529         #endif
530 #else
531         #define m68ki_tas_callback() 1
532 #endif /* M68K_TAS_HAS_CALLBACK */
533
534 #if M68K_ILLG_HAS_CALLBACK
535         #if M68K_ILLG_HAS_CALLBACK == OPT_SPECIFY_HANDLER
536                 #define m68ki_illg_callback(opcode) M68K_ILLG_CALLBACK(opcode)
537         #else
538                 #define m68ki_illg_callback(opcode) CALLBACK_ILLG_INSTR(opcode)
539         #endif
540 #else
541         #define m68ki_illg_callback(opcode) 0 // Default is 0 = not handled, exception will occur
542 #endif /* M68K_ILLG_HAS_CALLBACK */
543
544 #if M68K_INSTRUCTION_HOOK
545         #if M68K_INSTRUCTION_HOOK == OPT_SPECIFY_HANDLER
546                 #define m68ki_instr_hook(pc) M68K_INSTRUCTION_CALLBACK(pc)
547         #else
548                 #define m68ki_instr_hook(pc) CALLBACK_INSTR_HOOK(pc)
549         #endif
550 #else
551         #define m68ki_instr_hook(pc)
552 #endif /* M68K_INSTRUCTION_HOOK */
553
554 #if M68K_MONITOR_PC
555         #if M68K_MONITOR_PC == OPT_SPECIFY_HANDLER
556                 #define m68ki_pc_changed(A) M68K_SET_PC_CALLBACK(ADDRESS_68K(A))
557         #else
558                 #define m68ki_pc_changed(A) CALLBACK_PC_CHANGED(ADDRESS_68K(A))
559         #endif
560 #else
561         #define m68ki_pc_changed(A)
562 #endif /* M68K_MONITOR_PC */
563
564
565 /* Enable or disable function code emulation */
566 #if M68K_EMULATE_FC
567         #if M68K_EMULATE_FC == OPT_SPECIFY_HANDLER
568                 #define m68ki_set_fc(A) M68K_SET_FC_CALLBACK(A)
569         #else
570                 #define m68ki_set_fc(A) CALLBACK_SET_FC(A)
571         #endif
572         #define m68ki_use_data_space() m68ki_address_space = FUNCTION_CODE_USER_DATA
573         #define m68ki_use_program_space() m68ki_address_space = FUNCTION_CODE_USER_PROGRAM
574         #define m68ki_get_address_space() m68ki_address_space
575 #else
576         #define m68ki_set_fc(A)
577         #define m68ki_use_data_space()
578         #define m68ki_use_program_space()
579         #define m68ki_get_address_space() FUNCTION_CODE_USER_DATA
580 #endif /* M68K_EMULATE_FC */
581
582
583 /* Enable or disable trace emulation */
584 #if M68K_EMULATE_TRACE
585         /* Initiates trace checking before each instruction (t1) */
586         #define m68ki_trace_t1() m68ki_tracing = FLAG_T1
587         /* adds t0 to trace checking if we encounter change of flow */
588         #define m68ki_trace_t0() m68ki_tracing |= FLAG_T0
589         /* Clear all tracing */
590         #define m68ki_clear_trace() m68ki_tracing = 0
591         /* Cause a trace exception if we are tracing */
592         #define m68ki_exception_if_trace() if(m68ki_tracing) m68ki_exception_trace()
593 #else
594         #define m68ki_trace_t1()
595         #define m68ki_trace_t0()
596         #define m68ki_clear_trace()
597         #define m68ki_exception_if_trace()
598 #endif /* M68K_EMULATE_TRACE */
599
600
601
602 /* Address error */
603 #if M68K_EMULATE_ADDRESS_ERROR
604         #include <setjmp.h>
605
606 /* sigjmp() on Mac OS X and *BSD in general saves signal contexts and is super-slow, use sigsetjmp() to tell it not to */
607 #ifdef _BSD_SETJMP_H
608 extern sigjmp_buf m68ki_aerr_trap;
609 #define m68ki_set_address_error_trap(m68k) \
610         if(sigsetjmp(m68ki_aerr_trap, 0) != 0) \
611         { \
612                 m68ki_exception_address_error(m68k); \
613                 if(CPU_STOPPED) \
614                 { \
615                         if (m68ki_remaining_cycles > 0) \
616                                 m68ki_remaining_cycles = 0; \
617                         return m68ki_initial_cycles; \
618                 } \
619         }
620
621 #define m68ki_check_address_error(ADDR, WRITE_MODE, FC) \
622         if((ADDR)&1) \
623         { \
624                 m68ki_aerr_address = ADDR; \
625                 m68ki_aerr_write_mode = WRITE_MODE; \
626                 m68ki_aerr_fc = FC; \
627                 siglongjmp(m68ki_aerr_trap, 1); \
628         }
629 #else
630 extern jmp_buf m68ki_aerr_trap;
631         #define m68ki_set_address_error_trap() \
632                 if(setjmp(m68ki_aerr_trap) != 0) \
633                 { \
634                         m68ki_exception_address_error(); \
635                         if(CPU_STOPPED) \
636                         { \
637                                 SET_CYCLES(0); \
638                                 return m68ki_initial_cycles; \
639                         } \
640                         /* ensure we don't re-enter execution loop after an
641                            address error if there's no more cycles remaining */ \
642                         if(GET_CYCLES() <= 0) \
643                         { \
644                                 /* return how many clocks we used */ \
645                                 return m68ki_initial_cycles - GET_CYCLES(); \
646                         } \
647                 }
648
649         #define m68ki_check_address_error(ADDR, WRITE_MODE, FC) \
650                 if((ADDR)&1) \
651                 { \
652                         m68ki_aerr_address = ADDR; \
653                         m68ki_aerr_write_mode = WRITE_MODE; \
654                         m68ki_aerr_fc = FC; \
655                         longjmp(m68ki_aerr_trap, 1); \
656                 }
657 #endif
658
659         #define m68ki_check_address_error_010_less(ADDR, WRITE_MODE, FC) \
660                 if (CPU_TYPE_IS_010_LESS(CPU_TYPE)) \
661                 { \
662                         m68ki_check_address_error(ADDR, WRITE_MODE, FC) \
663                 }
664 #else
665         #define m68ki_set_address_error_trap()
666         #define m68ki_check_address_error(ADDR, WRITE_MODE, FC)
667         #define m68ki_check_address_error_010_less(ADDR, WRITE_MODE, FC)
668 #endif /* M68K_ADDRESS_ERROR */
669
670 /* Logging */
671 #if M68K_LOG_ENABLE
672         #include <stdio.h>
673         extern FILE* M68K_LOG_FILEHANDLE
674         extern const char *const m68ki_cpu_names[];
675
676         #define M68K_DO_LOG(A) if(M68K_LOG_FILEHANDLE) fprintf A
677         #if M68K_LOG_1010_1111
678                 #define M68K_DO_LOG_EMU(A) if(M68K_LOG_FILEHANDLE) fprintf A
679         #else
680                 #define M68K_DO_LOG_EMU(A)
681         #endif
682 #else
683         #define M68K_DO_LOG(A)
684         #define M68K_DO_LOG_EMU(A)
685 #endif
686
687
688
689 /* -------------------------- EA / Operand Access ------------------------- */
690
691 /*
692  * The general instruction format follows this pattern:
693  * .... XXX. .... .YYY
694  * where XXX is register X and YYY is register Y
695  */
696 /* Data Register Isolation */
697 #define DX (REG_D[(REG_IR >> 9) & 7])
698 #define DY (REG_D[REG_IR & 7])
699 /* Address Register Isolation */
700 #define AX (REG_A[(REG_IR >> 9) & 7])
701 #define AY (REG_A[REG_IR & 7])
702
703
704 /* Effective Address Calculations */
705 #define EA_AY_AI_8()   AY                                    /* address register indirect */
706 #define EA_AY_AI_16()  EA_AY_AI_8()
707 #define EA_AY_AI_32()  EA_AY_AI_8()
708 #define EA_AY_PI_8()   (AY++)                                /* postincrement (size = byte) */
709 #define EA_AY_PI_16()  ((AY+=2)-2)                           /* postincrement (size = word) */
710 #define EA_AY_PI_32()  ((AY+=4)-4)                           /* postincrement (size = long) */
711 #define EA_AY_PD_8()   (--AY)                                /* predecrement (size = byte) */
712 #define EA_AY_PD_16()  (AY-=2)                               /* predecrement (size = word) */
713 #define EA_AY_PD_32()  (AY-=4)                               /* predecrement (size = long) */
714 #define EA_AY_DI_8()   (AY+MAKE_INT_16(m68ki_read_imm_16())) /* displacement */
715 #define EA_AY_DI_16()  EA_AY_DI_8()
716 #define EA_AY_DI_32()  EA_AY_DI_8()
717 #define EA_AY_IX_8()   m68ki_get_ea_ix(AY)                   /* indirect + index */
718 #define EA_AY_IX_16()  EA_AY_IX_8()
719 #define EA_AY_IX_32()  EA_AY_IX_8()
720
721 #define EA_AX_AI_8()   AX
722 #define EA_AX_AI_16()  EA_AX_AI_8()
723 #define EA_AX_AI_32()  EA_AX_AI_8()
724 #define EA_AX_PI_8()   (AX++)
725 #define EA_AX_PI_16()  ((AX+=2)-2)
726 #define EA_AX_PI_32()  ((AX+=4)-4)
727 #define EA_AX_PD_8()   (--AX)
728 #define EA_AX_PD_16()  (AX-=2)
729 #define EA_AX_PD_32()  (AX-=4)
730 #define EA_AX_DI_8()   (AX+MAKE_INT_16(m68ki_read_imm_16()))
731 #define EA_AX_DI_16()  EA_AX_DI_8()
732 #define EA_AX_DI_32()  EA_AX_DI_8()
733 #define EA_AX_IX_8()   m68ki_get_ea_ix(AX)
734 #define EA_AX_IX_16()  EA_AX_IX_8()
735 #define EA_AX_IX_32()  EA_AX_IX_8()
736
737 #define EA_A7_PI_8()   ((REG_A[7]+=2)-2)
738 #define EA_A7_PD_8()   (REG_A[7]-=2)
739
740 #define EA_AW_8()      MAKE_INT_16(m68ki_read_imm_16())      /* absolute word */
741 #define EA_AW_16()     EA_AW_8()
742 #define EA_AW_32()     EA_AW_8()
743 #define EA_AL_8()      m68ki_read_imm_32()                   /* absolute long */
744 #define EA_AL_16()     EA_AL_8()
745 #define EA_AL_32()     EA_AL_8()
746 #define EA_PCDI_8()    m68ki_get_ea_pcdi()                   /* pc indirect + displacement */
747 #define EA_PCDI_16()   EA_PCDI_8()
748 #define EA_PCDI_32()   EA_PCDI_8()
749 #define EA_PCIX_8()    m68ki_get_ea_pcix()                   /* pc indirect + index */
750 #define EA_PCIX_16()   EA_PCIX_8()
751 #define EA_PCIX_32()   EA_PCIX_8()
752
753
754 #define OPER_I_8()     m68ki_read_imm_8()
755 #define OPER_I_16()    m68ki_read_imm_16()
756 #define OPER_I_32()    m68ki_read_imm_32()
757
758
759
760 /* --------------------------- Status Register ---------------------------- */
761
762 /* Flag Calculation Macros */
763 #define CFLAG_8(A) (A)
764 #define CFLAG_16(A) ((A)>>8)
765
766 #if M68K_INT_GT_32_BIT
767         #define CFLAG_ADD_32(S, D, R) ((R)>>24)
768         #define CFLAG_SUB_32(S, D, R) ((R)>>24)
769 #else
770         #define CFLAG_ADD_32(S, D, R) (((S & D) | (~R & (S | D)))>>23)
771         #define CFLAG_SUB_32(S, D, R) (((S & R) | (~D & (S | R)))>>23)
772 #endif /* M68K_INT_GT_32_BIT */
773
774 #define VFLAG_ADD_8(S, D, R) ((S^R) & (D^R))
775 #define VFLAG_ADD_16(S, D, R) (((S^R) & (D^R))>>8)
776 #define VFLAG_ADD_32(S, D, R) (((S^R) & (D^R))>>24)
777
778 #define VFLAG_SUB_8(S, D, R) ((S^D) & (R^D))
779 #define VFLAG_SUB_16(S, D, R) (((S^D) & (R^D))>>8)
780 #define VFLAG_SUB_32(S, D, R) (((S^D) & (R^D))>>24)
781
782 #define NFLAG_8(A) (A)
783 #define NFLAG_16(A) ((A)>>8)
784 #define NFLAG_32(A) ((A)>>24)
785 #define NFLAG_64(A) ((A)>>56)
786
787 #define ZFLAG_8(A) MASK_OUT_ABOVE_8(A)
788 #define ZFLAG_16(A) MASK_OUT_ABOVE_16(A)
789 #define ZFLAG_32(A) MASK_OUT_ABOVE_32(A)
790
791
792 /* Flag values */
793 #define NFLAG_SET   0x80
794 #define NFLAG_CLEAR 0
795 #define CFLAG_SET   0x100
796 #define CFLAG_CLEAR 0
797 #define XFLAG_SET   0x100
798 #define XFLAG_CLEAR 0
799 #define VFLAG_SET   0x80
800 #define VFLAG_CLEAR 0
801 #define ZFLAG_SET   0
802 #define ZFLAG_CLEAR 0xffffffff
803
804 #define SFLAG_SET   4
805 #define SFLAG_CLEAR 0
806 #define MFLAG_SET   2
807 #define MFLAG_CLEAR 0
808
809 /* Turn flag values into 1 or 0 */
810 #define XFLAG_AS_1() ((FLAG_X>>8)&1)
811 #define NFLAG_AS_1() ((FLAG_N>>7)&1)
812 #define VFLAG_AS_1() ((FLAG_V>>7)&1)
813 #define ZFLAG_AS_1() (!FLAG_Z)
814 #define CFLAG_AS_1() ((FLAG_C>>8)&1)
815
816
817 /* Conditions */
818 #define COND_CS() (FLAG_C&0x100)
819 #define COND_CC() (!COND_CS())
820 #define COND_VS() (FLAG_V&0x80)
821 #define COND_VC() (!COND_VS())
822 #define COND_NE() FLAG_Z
823 #define COND_EQ() (!COND_NE())
824 #define COND_MI() (FLAG_N&0x80)
825 #define COND_PL() (!COND_MI())
826 #define COND_LT() ((FLAG_N^FLAG_V)&0x80)
827 #define COND_GE() (!COND_LT())
828 #define COND_HI() (COND_CC() && COND_NE())
829 #define COND_LS() (COND_CS() || COND_EQ())
830 #define COND_GT() (COND_GE() && COND_NE())
831 #define COND_LE() (COND_LT() || COND_EQ())
832
833 /* Reversed conditions */
834 #define COND_NOT_CS() COND_CC()
835 #define COND_NOT_CC() COND_CS()
836 #define COND_NOT_VS() COND_VC()
837 #define COND_NOT_VC() COND_VS()
838 #define COND_NOT_NE() COND_EQ()
839 #define COND_NOT_EQ() COND_NE()
840 #define COND_NOT_MI() COND_PL()
841 #define COND_NOT_PL() COND_MI()
842 #define COND_NOT_LT() COND_GE()
843 #define COND_NOT_GE() COND_LT()
844 #define COND_NOT_HI() COND_LS()
845 #define COND_NOT_LS() COND_HI()
846 #define COND_NOT_GT() COND_LE()
847 #define COND_NOT_LE() COND_GT()
848
849 /* Not real conditions, but here for convenience */
850 #define COND_XS() (FLAG_X&0x100)
851 #define COND_XC() (!COND_XS)
852
853
854 /* Get the condition code register */
855 #define m68ki_get_ccr() ((COND_XS() >> 4) | \
856                                                  (COND_MI() >> 4) | \
857                                                  (COND_EQ() << 2) | \
858                                                  (COND_VS() >> 6) | \
859                                                  (COND_CS() >> 8))
860
861 /* Get the status register */
862 #define m68ki_get_sr() ( FLAG_T1              | \
863                                                  FLAG_T0              | \
864                                                 (FLAG_S        << 11) | \
865                                                 (FLAG_M        << 11) | \
866                                                  FLAG_INT_MASK        | \
867                                                  m68ki_get_ccr())
868
869
870
871 /* ---------------------------- Cycle Counting ---------------------------- */
872
873 #define ADD_CYCLES(A)    m68ki_remaining_cycles += (A)
874 #define USE_CYCLES(A)    m68ki_remaining_cycles -= (A)
875 #define SET_CYCLES(A)    m68ki_remaining_cycles = A
876 #define GET_CYCLES()     m68ki_remaining_cycles
877 #define USE_ALL_CYCLES() m68ki_remaining_cycles %= CYC_INSTRUCTION[REG_IR]
878
879
880
881 /* ----------------------------- Read / Write ----------------------------- */
882
883 /* Read from the current address space */
884 #define m68ki_read_8(A)  m68ki_read_8_fc (A, FLAG_S | m68ki_get_address_space())
885 #define m68ki_read_16(A) m68ki_read_16_fc(A, FLAG_S | m68ki_get_address_space())
886 #define m68ki_read_32(A) m68ki_read_32_fc(A, FLAG_S | m68ki_get_address_space())
887
888 /* Write to the current data space */
889 #define m68ki_write_8(A, V)  m68ki_write_8_fc (A, FLAG_S | FUNCTION_CODE_USER_DATA, V)
890 #define m68ki_write_16(A, V) m68ki_write_16_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA, V)
891 #define m68ki_write_32(A, V) m68ki_write_32_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA, V)
892
893 #if M68K_SIMULATE_PD_WRITES
894 #define m68ki_write_32_pd(A, V) m68ki_write_32_pd_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA, V)
895 #else
896 #define m68ki_write_32_pd(A, V) m68ki_write_32_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA, V)
897 #endif
898
899 /* Map PC-relative reads */
900 #define m68ki_read_pcrel_8(A) m68k_read_pcrelative_8(A)
901 #define m68ki_read_pcrel_16(A) m68k_read_pcrelative_16(A)
902 #define m68ki_read_pcrel_32(A) m68k_read_pcrelative_32(A)
903
904 /* Read from the program space */
905 #define m68ki_read_program_8(A)         m68ki_read_8_fc(A, FLAG_S | FUNCTION_CODE_USER_PROGRAM)
906 #define m68ki_read_program_16(A)        m68ki_read_16_fc(A, FLAG_S | FUNCTION_CODE_USER_PROGRAM)
907 #define m68ki_read_program_32(A)        m68ki_read_32_fc(A, FLAG_S | FUNCTION_CODE_USER_PROGRAM)
908
909 /* Read from the data space */
910 #define m68ki_read_data_8(A)    m68ki_read_8_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA)
911 #define m68ki_read_data_16(A)   m68ki_read_16_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA)
912 #define m68ki_read_data_32(A)   m68ki_read_32_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA)
913
914
915
916 /* ======================================================================== */
917 /* =============================== PROTOTYPES ============================= */
918 /* ======================================================================== */
919
920 typedef union
921 {
922         uint64 i;
923         double f;
924 } fp_reg;
925
926 typedef struct
927 {
928         uint cpu_type;     /* CPU Type: 68000, 68008, 68010, 68EC020, 68020, 68EC030, 68030, 68EC040, or 68040 */
929         uint dar[16];      /* Data and Address Registers */
930         uint dar_save[16];  /* Saved Data and Address Registers (pushed onto the
931                                                    stack when a bus error occurs)*/
932         uint ppc;                  /* Previous program counter */
933         uint pc;           /* Program Counter */
934         uint sp[7];        /* User, Interrupt, and Master Stack Pointers */
935         uint vbr;          /* Vector Base Register (m68010+) */
936         uint sfc;          /* Source Function Code Register (m68010+) */
937         uint dfc;          /* Destination Function Code Register (m68010+) */
938         uint cacr;         /* Cache Control Register (m68020, unemulated) */
939         uint caar;         /* Cache Address Register (m68020, unemulated) */
940         uint ir;           /* Instruction Register */
941         floatx80 fpr[8];     /* FPU Data Register (m68030/040) */
942         uint fpiar;        /* FPU Instruction Address Register (m68040) */
943         uint fpsr;         /* FPU Status Register (m68040) */
944         uint fpcr;         /* FPU Control Register (m68040) */
945         uint t1_flag;      /* Trace 1 */
946         uint t0_flag;      /* Trace 0 */
947         uint s_flag;       /* Supervisor */
948         uint m_flag;       /* Master/Interrupt state */
949         uint x_flag;       /* Extend */
950         uint n_flag;       /* Negative */
951         uint not_z_flag;   /* Zero, inverted for speedups */
952         uint v_flag;       /* Overflow */
953         uint c_flag;       /* Carry */
954         uint int_mask;     /* I0-I2 */
955         uint int_level;    /* State of interrupt pins IPL0-IPL2 -- ASG: changed from ints_pending */
956         uint stopped;      /* Stopped state */
957         uint pref_addr;    /* Last prefetch address */
958         uint pref_data;    /* Data in the prefetch queue */
959         uint address_mask; /* Available address pins */
960         uint sr_mask;      /* Implemented status register bits */
961         uint instr_mode;   /* Stores whether we are in instruction mode or group 0/1 exception mode */
962         uint run_mode;     /* Stores whether we are processing a reset, bus error, address error, or something else */
963         int    has_pmmu;     /* Indicates if a PMMU available (yes on 030, 040, no on EC030) */
964         int    pmmu_enabled; /* Indicates if the PMMU is enabled */
965         int    fpu_just_reset; /* Indicates the FPU was just reset */
966         uint reset_cycles;
967
968         /* Clocks required for instructions / exceptions */
969         uint cyc_bcc_notake_b;
970         uint cyc_bcc_notake_w;
971         uint cyc_dbcc_f_noexp;
972         uint cyc_dbcc_f_exp;
973         uint cyc_scc_r_true;
974         uint cyc_movem_w;
975         uint cyc_movem_l;
976         uint cyc_shift;
977         uint cyc_reset;
978
979         /* Virtual IRQ lines state */
980         uint virq_state;
981         uint nmi_pending;
982
983         /* PMMU registers */
984         uint mmu_crp_aptr, mmu_crp_limit;
985         uint mmu_srp_aptr, mmu_srp_limit;
986         uint mmu_tc;
987         uint16 mmu_sr;
988
989         const uint8* cyc_instruction;
990         const uint8* cyc_exception;
991
992         /* Callbacks to host */
993         int  (*int_ack_callback)(int int_line);           /* Interrupt Acknowledge */
994         void (*bkpt_ack_callback)(unsigned int data);     /* Breakpoint Acknowledge */
995         void (*reset_instr_callback)(void);               /* Called when a RESET instruction is encountered */
996         void (*cmpild_instr_callback)(unsigned int, int); /* Called when a CMPI.L #v, Dn instruction is encountered */
997         void (*rte_instr_callback)(void);                 /* Called when a RTE instruction is encountered */
998         int  (*tas_instr_callback)(void);                 /* Called when a TAS instruction is encountered, allows / disallows writeback */
999         int  (*illg_instr_callback)(int);                 /* Called when an illegal instruction is encountered, allows handling */
1000         void (*pc_changed_callback)(unsigned int new_pc); /* Called when the PC changes by a large amount */
1001         void (*set_fc_callback)(unsigned int new_fc);     /* Called when the CPU function code changes */
1002         void (*instr_hook_callback)(unsigned int pc);     /* Called every instruction cycle prior to execution */
1003
1004 } m68ki_cpu_core;
1005
1006
1007 extern m68ki_cpu_core m68ki_cpu;
1008 extern sint           m68ki_remaining_cycles;
1009 extern uint           m68ki_tracing;
1010 extern const uint8    m68ki_shift_8_table[];
1011 extern const uint16   m68ki_shift_16_table[];
1012 extern const uint     m68ki_shift_32_table[];
1013 extern const uint8    m68ki_exception_cycle_table[][256];
1014 extern uint           m68ki_address_space;
1015 extern const uint8    m68ki_ea_idx_cycle_table[];
1016
1017 extern uint           m68ki_aerr_address;
1018 extern uint           m68ki_aerr_write_mode;
1019 extern uint           m68ki_aerr_fc;
1020
1021 /* Forward declarations to keep some of the macros happy */
1022 static inline uint m68ki_read_16_fc (uint address, uint fc);
1023 static inline uint m68ki_read_32_fc (uint address, uint fc);
1024 static inline uint m68ki_get_ea_ix(uint An);
1025 static inline void m68ki_check_interrupts(void);            /* ASG: check for interrupts */
1026
1027 /* quick disassembly (used for logging) */
1028 char* m68ki_disassemble_quick(unsigned int pc, unsigned int cpu_type);
1029
1030
1031 /* ======================================================================== */
1032 /* =========================== UTILITY FUNCTIONS ========================== */
1033 /* ======================================================================== */
1034
1035
1036 /* ---------------------------- Read Immediate ---------------------------- */
1037
1038 extern unsigned char read_ranges;
1039 extern unsigned int read_addr[8];
1040 extern unsigned int read_upper[8];
1041 extern unsigned char *read_data[8];
1042 extern unsigned char write_ranges;
1043 extern unsigned int write_addr[8];
1044 extern unsigned int write_upper[8];
1045 extern unsigned char *write_data[8];
1046
1047 extern uint pmmu_translate_addr(uint addr_in);
1048
1049 /* Handles all immediate reads, does address error check, function code setting,
1050  * and prefetching if they are enabled in m68kconf.h
1051  */
1052 static inline uint m68ki_read_imm_16(void)
1053 {
1054         m68ki_set_fc(FLAG_S | FUNCTION_CODE_USER_PROGRAM); /* auto-disable (see m68kcpu.h) */
1055         m68ki_check_address_error(REG_PC, MODE_READ, FLAG_S | FUNCTION_CODE_USER_PROGRAM); /* auto-disable (see m68kcpu.h) */
1056
1057 #if M68K_SEPARATE_READS
1058 /*#if M68K_EMULATE_PMMU
1059         if (PMMU_ENABLED)
1060             address = pmmu_translate_addr(ADDRESS_68K(CPU_PREF_ADDR));
1061 #endif*/
1062 #endif
1063
1064 #if M68K_EMULATE_PREFETCH
1065 {
1066         uint result;
1067         if(REG_PC != CPU_PREF_ADDR)
1068         {
1069                 CPU_PREF_ADDR = REG_PC;
1070                 CPU_PREF_DATA = m68k_read_immediate_16(ADDRESS_68K(CPU_PREF_ADDR));
1071         }
1072         result = MASK_OUT_ABOVE_16(CPU_PREF_DATA);
1073         REG_PC += 2;
1074         CPU_PREF_ADDR = REG_PC;
1075         CPU_PREF_DATA = m68k_read_immediate_16(ADDRESS_68K(CPU_PREF_ADDR));
1076         return result;
1077 }
1078 #else
1079
1080         uint32_t address = ADDRESS_68K(REG_PC);
1081         REG_PC += 2;
1082
1083         for (int i = 0; i < read_ranges; i++) {
1084                 if(address >= read_addr[i] && address < read_upper[i]) {
1085                         return be16toh(((unsigned short *)(read_data[i] + (address - read_addr[i])))[0]);
1086                 }
1087         }
1088
1089         return m68k_read_immediate_16(ADDRESS_68K(REG_PC-2));
1090 #endif /* M68K_EMULATE_PREFETCH */
1091 }
1092
1093 static inline uint m68ki_read_imm_8(void)
1094 {
1095         /* map read immediate 8 to read immediate 16 */
1096         return MASK_OUT_ABOVE_8(m68ki_read_imm_16());
1097 }
1098
1099 static inline uint m68ki_read_imm_32(void)
1100 {
1101 #if M68K_SEPARATE_READS
1102 /*#if M68K_EMULATE_PMMU
1103         if (PMMU_ENABLED)
1104             address = pmmu_translate_addr(ADDRESS_68K(CPU_PREF_ADDR));
1105 #endif*/
1106 #endif
1107
1108 #if M68K_EMULATE_PREFETCH
1109         uint temp_val;
1110
1111         m68ki_set_fc(FLAG_S | FUNCTION_CODE_USER_PROGRAM); /* auto-disable (see m68kcpu.h) */
1112         m68ki_check_address_error(REG_PC, MODE_READ, FLAG_S | FUNCTION_CODE_USER_PROGRAM); /* auto-disable (see m68kcpu.h) */
1113
1114         if(REG_PC != CPU_PREF_ADDR)
1115         {
1116                 CPU_PREF_ADDR = REG_PC;
1117
1118                 CPU_PREF_DATA = m68k_read_immediate_16(ADDRESS_68K(CPU_PREF_ADDR));
1119         }
1120         temp_val = MASK_OUT_ABOVE_16(CPU_PREF_DATA);
1121         REG_PC += 2;
1122         CPU_PREF_ADDR = REG_PC;
1123         CPU_PREF_DATA = m68k_read_immediate_16(ADDRESS_68K(CPU_PREF_ADDR));
1124
1125         temp_val = MASK_OUT_ABOVE_32((temp_val << 16) | MASK_OUT_ABOVE_16(CPU_PREF_DATA));
1126         REG_PC += 2;
1127         CPU_PREF_ADDR = REG_PC;
1128         CPU_PREF_DATA = m68k_read_immediate_16(ADDRESS_68K(CPU_PREF_ADDR));
1129
1130         return temp_val;
1131 #else
1132         m68ki_set_fc(FLAG_S | FUNCTION_CODE_USER_PROGRAM); /* auto-disable (see m68kcpu.h) */
1133         m68ki_check_address_error(REG_PC, MODE_READ, FLAG_S | FUNCTION_CODE_USER_PROGRAM); /* auto-disable (see m68kcpu.h) */
1134         uint32_t address = ADDRESS_68K(REG_PC);
1135         REG_PC += 4;
1136         for (int i = 0; i < read_ranges; i++) {
1137                 if(address >= read_addr[i] && address < read_upper[i]) {
1138                         return be32toh(((unsigned int *)(read_data[i] + (address - read_addr[i])))[0]);
1139                 }
1140         }
1141
1142         return m68k_read_immediate_32(ADDRESS_68K(REG_PC-4));
1143 #endif /* M68K_EMULATE_PREFETCH */
1144 }
1145
1146 /* ------------------------- Top level read/write ------------------------- */
1147
1148 /* Handles all memory accesses (except for immediate reads if they are
1149  * configured to use separate functions in m68kconf.h).
1150  * All memory accesses must go through these top level functions.
1151  * These functions will also check for address error and set the function
1152  * code if they are enabled in m68kconf.h.
1153  */
1154
1155 static inline uint m68ki_read_8_fc(uint address, uint fc)
1156 {
1157         (void)fc;
1158         m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
1159
1160 #if M68K_EMULATE_PMMU
1161         if (PMMU_ENABLED)
1162             address = pmmu_translate_addr(address);
1163 #endif
1164
1165         for (int i = 0; i < read_ranges; i++) {
1166                 if(address >= read_addr[i] && address < read_upper[i]) {
1167                         return read_data[i][address - read_addr[i]];
1168                 }
1169         }
1170
1171         return m68k_read_memory_8(ADDRESS_68K(address));
1172 }
1173 static inline uint m68ki_read_16_fc(uint address, uint fc)
1174 {
1175         (void)fc;
1176         m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
1177         m68ki_check_address_error_010_less(address, MODE_READ, fc); /* auto-disable (see m68kcpu.h) */
1178
1179 #if M68K_EMULATE_PMMU
1180         if (PMMU_ENABLED)
1181             address = pmmu_translate_addr(address);
1182 #endif
1183
1184         for (int i = 0; i < read_ranges; i++) {
1185                 if(address >= read_addr[i] && address < read_upper[i]) {
1186                         return be16toh(((unsigned short *)(read_data[i] + (address - read_addr[i])))[0]);
1187                 }
1188         }
1189
1190         return m68k_read_memory_16(ADDRESS_68K(address));
1191 }
1192 static inline uint m68ki_read_32_fc(uint address, uint fc)
1193 {
1194         (void)fc;
1195         m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
1196         m68ki_check_address_error_010_less(address, MODE_READ, fc); /* auto-disable (see m68kcpu.h) */
1197
1198 #if M68K_EMULATE_PMMU
1199         if (PMMU_ENABLED)
1200             address = pmmu_translate_addr(address);
1201 #endif
1202
1203         for (int i = 0; i < read_ranges; i++) {
1204                 if(address >= read_addr[i] && address < read_upper[i]) {
1205                         return be32toh(((unsigned int *)(read_data[i] + (address - read_addr[i])))[0]);
1206                 }
1207         }
1208
1209         return m68k_read_memory_32(ADDRESS_68K(address));
1210 }
1211
1212 static inline void m68ki_write_8_fc(uint address, uint fc, uint value)
1213 {
1214         (void)fc;
1215         m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
1216
1217 #if M68K_EMULATE_PMMU
1218         if (PMMU_ENABLED)
1219             address = pmmu_translate_addr(address);
1220 #endif
1221
1222         for (int i = 0; i < write_ranges; i++) {
1223                 if(address >= write_addr[i] && address < write_upper[i]) {
1224                         write_data[i][address - write_addr[i]] = (unsigned char)value;
1225                         return;
1226                 }
1227         }
1228
1229         m68k_write_memory_8(ADDRESS_68K(address), value);
1230 }
1231 static inline void m68ki_write_16_fc(uint address, uint fc, uint value)
1232 {
1233         (void)fc;
1234         m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
1235         m68ki_check_address_error_010_less(address, MODE_WRITE, fc); /* auto-disable (see m68kcpu.h) */
1236
1237 #if M68K_EMULATE_PMMU
1238         if (PMMU_ENABLED)
1239             address = pmmu_translate_addr(address);
1240 #endif
1241
1242         for (int i = 0; i < write_ranges; i++) {
1243                 if(address >= write_addr[i] && address < write_upper[i]) {
1244                         ((short *)(write_data[i] + (address - write_addr[i])))[0] = htobe16(value);
1245                         return;
1246                 }
1247         }
1248
1249         m68k_write_memory_16(ADDRESS_68K(address), value);
1250 }
1251 static inline void m68ki_write_32_fc(uint address, uint fc, uint value)
1252 {
1253         (void)fc;
1254         m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
1255         m68ki_check_address_error_010_less(address, MODE_WRITE, fc); /* auto-disable (see m68kcpu.h) */
1256
1257 #if M68K_EMULATE_PMMU
1258         if (PMMU_ENABLED)
1259             address = pmmu_translate_addr(address);
1260 #endif
1261
1262         for (int i = 0; i < write_ranges; i++) {
1263                 if(address >= write_addr[i] && address < write_upper[i]) {
1264                         ((int *)(write_data[i] + (address - write_addr[i])))[0] = htobe32(value);
1265                         return;
1266                 }
1267         }
1268
1269         m68k_write_memory_32(ADDRESS_68K(address), value);
1270 }
1271
1272 #if M68K_SIMULATE_PD_WRITES
1273 static inline void m68ki_write_32_pd_fc(uint address, uint fc, uint value)
1274 {
1275         (void)fc;
1276         m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
1277         m68ki_check_address_error_010_less(address, MODE_WRITE, fc); /* auto-disable (see m68kcpu.h) */
1278
1279 #if M68K_EMULATE_PMMU
1280         if (PMMU_ENABLED)
1281             address = pmmu_translate_addr(address);
1282 #endif
1283
1284         m68k_write_memory_32_pd(ADDRESS_68K(address), value);
1285 }
1286 #endif
1287
1288 /* --------------------- Effective Address Calculation -------------------- */
1289
1290 /* The program counter relative addressing modes cause operands to be
1291  * retrieved from program space, not data space.
1292  */
1293 static inline uint m68ki_get_ea_pcdi(void)
1294 {
1295         uint old_pc = REG_PC;
1296         m68ki_use_program_space(); /* auto-disable */
1297         return old_pc + MAKE_INT_16(m68ki_read_imm_16());
1298 }
1299
1300
1301 static inline uint m68ki_get_ea_pcix(void)
1302 {
1303         m68ki_use_program_space(); /* auto-disable */
1304         return m68ki_get_ea_ix(REG_PC);
1305 }
1306
1307 /* Indexed addressing modes are encoded as follows:
1308  *
1309  * Base instruction format:
1310  * F E D C B A 9 8 7 6 | 5 4 3 | 2 1 0
1311  * x x x x x x x x x x | 1 1 0 | BASE REGISTER      (An)
1312  *
1313  * Base instruction format for destination EA in move instructions:
1314  * F E D C | B A 9    | 8 7 6 | 5 4 3 2 1 0
1315  * x x x x | BASE REG | 1 1 0 | X X X X X X       (An)
1316  *
1317  * Brief extension format:
1318  *  F  |  E D C   |  B  |  A 9  | 8 | 7 6 5 4 3 2 1 0
1319  * D/A | REGISTER | W/L | SCALE | 0 |  DISPLACEMENT
1320  *
1321  * Full extension format:
1322  *  F     E D C      B     A 9    8   7    6    5 4       3   2 1 0
1323  * D/A | REGISTER | W/L | SCALE | 1 | BS | IS | BD SIZE | 0 | I/IS
1324  * BASE DISPLACEMENT (0, 16, 32 bit)                (bd)
1325  * OUTER DISPLACEMENT (0, 16, 32 bit)               (od)
1326  *
1327  * D/A:     0 = Dn, 1 = An                          (Xn)
1328  * W/L:     0 = W (sign extend), 1 = L              (.SIZE)
1329  * SCALE:   00=1, 01=2, 10=4, 11=8                  (*SCALE)
1330  * BS:      0=add base reg, 1=suppress base reg     (An suppressed)
1331  * IS:      0=add index, 1=suppress index           (Xn suppressed)
1332  * BD SIZE: 00=reserved, 01=NULL, 10=Word, 11=Long  (size of bd)
1333  *
1334  * IS I/IS Operation
1335  * 0  000  No Memory Indirect
1336  * 0  001  indir prex with null outer
1337  * 0  010  indir prex with word outer
1338  * 0  011  indir prex with long outer
1339  * 0  100  reserved
1340  * 0  101  indir postx with null outer
1341  * 0  110  indir postx with word outer
1342  * 0  111  indir postx with long outer
1343  * 1  000  no memory indirect
1344  * 1  001  mem indir with null outer
1345  * 1  010  mem indir with word outer
1346  * 1  011  mem indir with long outer
1347  * 1  100-111  reserved
1348  */
1349 static inline uint m68ki_get_ea_ix(uint An)
1350 {
1351         /* An = base register */
1352         uint extension = m68ki_read_imm_16();
1353         uint Xn = 0;                        /* Index register */
1354         uint bd = 0;                        /* Base Displacement */
1355         uint od = 0;                        /* Outer Displacement */
1356
1357         if(CPU_TYPE_IS_010_LESS(CPU_TYPE))
1358         {
1359                 /* Calculate index */
1360                 Xn = REG_DA[extension>>12];     /* Xn */
1361                 if(!BIT_B(extension))           /* W/L */
1362                         Xn = MAKE_INT_16(Xn);
1363
1364                 /* Add base register and displacement and return */
1365                 return An + Xn + MAKE_INT_8(extension);
1366         }
1367
1368         /* Brief extension format */
1369         if(!BIT_8(extension))
1370         {
1371                 /* Calculate index */
1372                 Xn = REG_DA[extension>>12];     /* Xn */
1373                 if(!BIT_B(extension))           /* W/L */
1374                         Xn = MAKE_INT_16(Xn);
1375                 /* Add scale if proper CPU type */
1376                 if(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
1377                         Xn <<= (extension>>9) & 3;  /* SCALE */
1378
1379                 /* Add base register and displacement and return */
1380                 return An + Xn + MAKE_INT_8(extension);
1381         }
1382
1383         /* Full extension format */
1384
1385         USE_CYCLES(m68ki_ea_idx_cycle_table[extension&0x3f]);
1386
1387         /* Check if base register is present */
1388         if(BIT_7(extension))                /* BS */
1389                 An = 0;                         /* An */
1390
1391         /* Check if index is present */
1392         if(!BIT_6(extension))               /* IS */
1393         {
1394                 Xn = REG_DA[extension>>12];     /* Xn */
1395                 if(!BIT_B(extension))           /* W/L */
1396                         Xn = MAKE_INT_16(Xn);
1397                 Xn <<= (extension>>9) & 3;      /* SCALE */
1398         }
1399
1400         /* Check if base displacement is present */
1401         if(BIT_5(extension))                /* BD SIZE */
1402                 bd = BIT_4(extension) ? m68ki_read_imm_32() : (uint32)MAKE_INT_16(m68ki_read_imm_16());
1403
1404         /* If no indirect action, we are done */
1405         if(!(extension&7))                  /* No Memory Indirect */
1406                 return An + bd + Xn;
1407
1408         /* Check if outer displacement is present */
1409         if(BIT_1(extension))                /* I/IS:  od */
1410                 od = BIT_0(extension) ? m68ki_read_imm_32() : (uint32)MAKE_INT_16(m68ki_read_imm_16());
1411
1412         /* Postindex */
1413         if(BIT_2(extension))                /* I/IS:  0 = preindex, 1 = postindex */
1414                 return m68ki_read_32(An + bd) + Xn + od;
1415
1416         /* Preindex */
1417         return m68ki_read_32(An + bd + Xn) + od;
1418 }
1419
1420
1421 /* Fetch operands */
1422 static inline uint OPER_AY_AI_8(void)  {uint ea = EA_AY_AI_8();  return m68ki_read_8(ea); }
1423 static inline uint OPER_AY_AI_16(void) {uint ea = EA_AY_AI_16(); return m68ki_read_16(ea);}
1424 static inline uint OPER_AY_AI_32(void) {uint ea = EA_AY_AI_32(); return m68ki_read_32(ea);}
1425 static inline uint OPER_AY_PI_8(void)  {uint ea = EA_AY_PI_8();  return m68ki_read_8(ea); }
1426 static inline uint OPER_AY_PI_16(void) {uint ea = EA_AY_PI_16(); return m68ki_read_16(ea);}
1427 static inline uint OPER_AY_PI_32(void) {uint ea = EA_AY_PI_32(); return m68ki_read_32(ea);}
1428 static inline uint OPER_AY_PD_8(void)  {uint ea = EA_AY_PD_8();  return m68ki_read_8(ea); }
1429 static inline uint OPER_AY_PD_16(void) {uint ea = EA_AY_PD_16(); return m68ki_read_16(ea);}
1430 static inline uint OPER_AY_PD_32(void) {uint ea = EA_AY_PD_32(); return m68ki_read_32(ea);}
1431 static inline uint OPER_AY_DI_8(void)  {uint ea = EA_AY_DI_8();  return m68ki_read_8(ea); }
1432 static inline uint OPER_AY_DI_16(void) {uint ea = EA_AY_DI_16(); return m68ki_read_16(ea);}
1433 static inline uint OPER_AY_DI_32(void) {uint ea = EA_AY_DI_32(); return m68ki_read_32(ea);}
1434 static inline uint OPER_AY_IX_8(void)  {uint ea = EA_AY_IX_8();  return m68ki_read_8(ea); }
1435 static inline uint OPER_AY_IX_16(void) {uint ea = EA_AY_IX_16(); return m68ki_read_16(ea);}
1436 static inline uint OPER_AY_IX_32(void) {uint ea = EA_AY_IX_32(); return m68ki_read_32(ea);}
1437
1438 static inline uint OPER_AX_AI_8(void)  {uint ea = EA_AX_AI_8();  return m68ki_read_8(ea); }
1439 static inline uint OPER_AX_AI_16(void) {uint ea = EA_AX_AI_16(); return m68ki_read_16(ea);}
1440 static inline uint OPER_AX_AI_32(void) {uint ea = EA_AX_AI_32(); return m68ki_read_32(ea);}
1441 static inline uint OPER_AX_PI_8(void)  {uint ea = EA_AX_PI_8();  return m68ki_read_8(ea); }
1442 static inline uint OPER_AX_PI_16(void) {uint ea = EA_AX_PI_16(); return m68ki_read_16(ea);}
1443 static inline uint OPER_AX_PI_32(void) {uint ea = EA_AX_PI_32(); return m68ki_read_32(ea);}
1444 static inline uint OPER_AX_PD_8(void)  {uint ea = EA_AX_PD_8();  return m68ki_read_8(ea); }
1445 static inline uint OPER_AX_PD_16(void) {uint ea = EA_AX_PD_16(); return m68ki_read_16(ea);}
1446 static inline uint OPER_AX_PD_32(void) {uint ea = EA_AX_PD_32(); return m68ki_read_32(ea);}
1447 static inline uint OPER_AX_DI_8(void)  {uint ea = EA_AX_DI_8();  return m68ki_read_8(ea); }
1448 static inline uint OPER_AX_DI_16(void) {uint ea = EA_AX_DI_16(); return m68ki_read_16(ea);}
1449 static inline uint OPER_AX_DI_32(void) {uint ea = EA_AX_DI_32(); return m68ki_read_32(ea);}
1450 static inline uint OPER_AX_IX_8(void)  {uint ea = EA_AX_IX_8();  return m68ki_read_8(ea); }
1451 static inline uint OPER_AX_IX_16(void) {uint ea = EA_AX_IX_16(); return m68ki_read_16(ea);}
1452 static inline uint OPER_AX_IX_32(void) {uint ea = EA_AX_IX_32(); return m68ki_read_32(ea);}
1453
1454 static inline uint OPER_A7_PI_8(void)  {uint ea = EA_A7_PI_8();  return m68ki_read_8(ea); }
1455 static inline uint OPER_A7_PD_8(void)  {uint ea = EA_A7_PD_8();  return m68ki_read_8(ea); }
1456
1457 static inline uint OPER_AW_8(void)     {uint ea = EA_AW_8();     return m68ki_read_8(ea); }
1458 static inline uint OPER_AW_16(void)    {uint ea = EA_AW_16();    return m68ki_read_16(ea);}
1459 static inline uint OPER_AW_32(void)    {uint ea = EA_AW_32();    return m68ki_read_32(ea);}
1460 static inline uint OPER_AL_8(void)     {uint ea = EA_AL_8();     return m68ki_read_8(ea); }
1461 static inline uint OPER_AL_16(void)    {uint ea = EA_AL_16();    return m68ki_read_16(ea);}
1462 static inline uint OPER_AL_32(void)    {uint ea = EA_AL_32();    return m68ki_read_32(ea);}
1463 static inline uint OPER_PCDI_8(void)   {uint ea = EA_PCDI_8();   return m68ki_read_pcrel_8(ea); }
1464 static inline uint OPER_PCDI_16(void)  {uint ea = EA_PCDI_16();  return m68ki_read_pcrel_16(ea);}
1465 static inline uint OPER_PCDI_32(void)  {uint ea = EA_PCDI_32();  return m68ki_read_pcrel_32(ea);}
1466 static inline uint OPER_PCIX_8(void)   {uint ea = EA_PCIX_8();   return m68ki_read_pcrel_8(ea); }
1467 static inline uint OPER_PCIX_16(void)  {uint ea = EA_PCIX_16();  return m68ki_read_pcrel_16(ea);}
1468 static inline uint OPER_PCIX_32(void)  {uint ea = EA_PCIX_32();  return m68ki_read_pcrel_32(ea);}
1469
1470
1471
1472 /* ---------------------------- Stack Functions --------------------------- */
1473
1474 /* Push/pull data from the stack */
1475 static inline void m68ki_push_16(uint value)
1476 {
1477         REG_SP = MASK_OUT_ABOVE_32(REG_SP - 2);
1478         m68ki_write_16(REG_SP, value);
1479 }
1480
1481 static inline void m68ki_push_32(uint value)
1482 {
1483         REG_SP = MASK_OUT_ABOVE_32(REG_SP - 4);
1484         m68ki_write_32(REG_SP, value);
1485 }
1486
1487 static inline uint m68ki_pull_16(void)
1488 {
1489         REG_SP = MASK_OUT_ABOVE_32(REG_SP + 2);
1490         return m68ki_read_16(REG_SP-2);
1491 }
1492
1493 static inline uint m68ki_pull_32(void)
1494 {
1495         REG_SP = MASK_OUT_ABOVE_32(REG_SP + 4);
1496         return m68ki_read_32(REG_SP-4);
1497 }
1498
1499
1500 /* Increment/decrement the stack as if doing a push/pull but
1501  * don't do any memory access.
1502  */
1503 static inline void m68ki_fake_push_16(void)
1504 {
1505         REG_SP = MASK_OUT_ABOVE_32(REG_SP - 2);
1506 }
1507
1508 static inline void m68ki_fake_push_32(void)
1509 {
1510         REG_SP = MASK_OUT_ABOVE_32(REG_SP - 4);
1511 }
1512
1513 static inline void m68ki_fake_pull_16(void)
1514 {
1515         REG_SP = MASK_OUT_ABOVE_32(REG_SP + 2);
1516 }
1517
1518 static inline void m68ki_fake_pull_32(void)
1519 {
1520         REG_SP = MASK_OUT_ABOVE_32(REG_SP + 4);
1521 }
1522
1523
1524 /* ----------------------------- Program Flow ----------------------------- */
1525
1526 /* Jump to a new program location or vector.
1527  * These functions will also call the pc_changed callback if it was enabled
1528  * in m68kconf.h.
1529  */
1530 static inline void m68ki_jump(uint new_pc)
1531 {
1532         REG_PC = new_pc;
1533         m68ki_pc_changed(REG_PC);
1534 }
1535
1536 static inline void m68ki_jump_vector(uint vector)
1537 {
1538         REG_PC = (vector<<2) + REG_VBR;
1539         REG_PC = m68ki_read_data_32(REG_PC);
1540         m68ki_pc_changed(REG_PC);
1541 }
1542
1543
1544 /* Branch to a new memory location.
1545  * The 32-bit branch will call pc_changed if it was enabled in m68kconf.h.
1546  * So far I've found no problems with not calling pc_changed for 8 or 16
1547  * bit branches.
1548  */
1549 static inline void m68ki_branch_8(uint offset)
1550 {
1551         REG_PC += MAKE_INT_8(offset);
1552 }
1553
1554 static inline void m68ki_branch_16(uint offset)
1555 {
1556         REG_PC += MAKE_INT_16(offset);
1557 }
1558
1559 static inline void m68ki_branch_32(uint offset)
1560 {
1561         REG_PC += offset;
1562         m68ki_pc_changed(REG_PC);
1563 }
1564
1565 /* ---------------------------- Status Register --------------------------- */
1566
1567 /* Set the S flag and change the active stack pointer.
1568  * Note that value MUST be 4 or 0.
1569  */
1570 static inline void m68ki_set_s_flag(uint value)
1571 {
1572         /* Backup the old stack pointer */
1573         REG_SP_BASE[FLAG_S | ((FLAG_S>>1) & FLAG_M)] = REG_SP;
1574         /* Set the S flag */
1575         FLAG_S = value;
1576         /* Set the new stack pointer */
1577         REG_SP = REG_SP_BASE[FLAG_S | ((FLAG_S>>1) & FLAG_M)];
1578 }
1579
1580 /* Set the S and M flags and change the active stack pointer.
1581  * Note that value MUST be 0, 2, 4, or 6 (bit2 = S, bit1 = M).
1582  */
1583 static inline void m68ki_set_sm_flag(uint value)
1584 {
1585         /* Backup the old stack pointer */
1586         REG_SP_BASE[FLAG_S | ((FLAG_S>>1) & FLAG_M)] = REG_SP;
1587         /* Set the S and M flags */
1588         FLAG_S = value & SFLAG_SET;
1589         FLAG_M = value & MFLAG_SET;
1590         /* Set the new stack pointer */
1591         REG_SP = REG_SP_BASE[FLAG_S | ((FLAG_S>>1) & FLAG_M)];
1592 }
1593
1594 /* Set the S and M flags.  Don't touch the stack pointer. */
1595 static inline void m68ki_set_sm_flag_nosp(uint value)
1596 {
1597         /* Set the S and M flags */
1598         FLAG_S = value & SFLAG_SET;
1599         FLAG_M = value & MFLAG_SET;
1600 }
1601
1602
1603 /* Set the condition code register */
1604 static inline void m68ki_set_ccr(uint value)
1605 {
1606         FLAG_X = BIT_4(value)  << 4;
1607         FLAG_N = BIT_3(value)  << 4;
1608         FLAG_Z = !BIT_2(value);
1609         FLAG_V = BIT_1(value)  << 6;
1610         FLAG_C = BIT_0(value)  << 8;
1611 }
1612
1613 /* Set the status register but don't check for interrupts */
1614 static inline void m68ki_set_sr_noint(uint value)
1615 {
1616         /* Mask out the "unimplemented" bits */
1617         value &= CPU_SR_MASK;
1618
1619         /* Now set the status register */
1620         FLAG_T1 = BIT_F(value);
1621         FLAG_T0 = BIT_E(value);
1622         FLAG_INT_MASK = value & 0x0700;
1623         m68ki_set_ccr(value);
1624         m68ki_set_sm_flag((value >> 11) & 6);
1625 }
1626
1627 /* Set the status register but don't check for interrupts nor
1628  * change the stack pointer
1629  */
1630 static inline void m68ki_set_sr_noint_nosp(uint value)
1631 {
1632         /* Mask out the "unimplemented" bits */
1633         value &= CPU_SR_MASK;
1634
1635         /* Now set the status register */
1636         FLAG_T1 = BIT_F(value);
1637         FLAG_T0 = BIT_E(value);
1638         FLAG_INT_MASK = value & 0x0700;
1639         m68ki_set_ccr(value);
1640         m68ki_set_sm_flag_nosp((value >> 11) & 6);
1641 }
1642
1643 /* Set the status register and check for interrupts */
1644 static inline void m68ki_set_sr(uint value)
1645 {
1646         m68ki_set_sr_noint(value);
1647         m68ki_check_interrupts();
1648 }
1649
1650
1651 /* ------------------------- Exception Processing ------------------------- */
1652
1653 /* Initiate exception processing */
1654 static inline uint m68ki_init_exception(void)
1655 {
1656         /* Save the old status register */
1657         uint sr = m68ki_get_sr();
1658
1659         /* Turn off trace flag, clear pending traces */
1660         FLAG_T1 = FLAG_T0 = 0;
1661         m68ki_clear_trace();
1662         /* Enter supervisor mode */
1663         m68ki_set_s_flag(SFLAG_SET);
1664
1665         return sr;
1666 }
1667
1668 /* 3 word stack frame (68000 only) */
1669 static inline void m68ki_stack_frame_3word(uint pc, uint sr)
1670 {
1671         m68ki_push_32(pc);
1672         m68ki_push_16(sr);
1673 }
1674
1675 /* Format 0 stack frame.
1676  * This is the standard stack frame for 68010+.
1677  */
1678 static inline void m68ki_stack_frame_0000(uint pc, uint sr, uint vector)
1679 {
1680         /* Stack a 3-word frame if we are 68000 */
1681         if(CPU_TYPE == CPU_TYPE_000)
1682         {
1683                 m68ki_stack_frame_3word(pc, sr);
1684                 return;
1685         }
1686         m68ki_push_16(vector<<2);
1687         m68ki_push_32(pc);
1688         m68ki_push_16(sr);
1689 }
1690
1691 /* Format 1 stack frame (68020).
1692  * For 68020, this is the 4 word throwaway frame.
1693  */
1694 static inline void m68ki_stack_frame_0001(uint pc, uint sr, uint vector)
1695 {
1696         m68ki_push_16(0x1000 | (vector<<2));
1697         m68ki_push_32(pc);
1698         m68ki_push_16(sr);
1699 }
1700
1701 /* Format 2 stack frame.
1702  * This is used only by 68020 for trap exceptions.
1703  */
1704 static inline void m68ki_stack_frame_0010(uint sr, uint vector)
1705 {
1706         m68ki_push_32(REG_PPC);
1707         m68ki_push_16(0x2000 | (vector<<2));
1708         m68ki_push_32(REG_PC);
1709         m68ki_push_16(sr);
1710 }
1711
1712
1713 /* Bus error stack frame (68000 only).
1714  */
1715 static inline void m68ki_stack_frame_buserr(uint sr)
1716 {
1717         m68ki_push_32(REG_PC);
1718         m68ki_push_16(sr);
1719         m68ki_push_16(REG_IR);
1720         m68ki_push_32(m68ki_aerr_address);      /* access address */
1721         /* 0 0 0 0 0 0 0 0 0 0 0 R/W I/N FC
1722          * R/W  0 = write, 1 = read
1723          * I/N  0 = instruction, 1 = not
1724          * FC   3-bit function code
1725          */
1726         m68ki_push_16(m68ki_aerr_write_mode | CPU_INSTR_MODE | m68ki_aerr_fc);
1727 }
1728
1729 /* Format 8 stack frame (68010).
1730  * 68010 only.  This is the 29 word bus/address error frame.
1731  */
1732 static inline void m68ki_stack_frame_1000(uint pc, uint sr, uint vector)
1733 {
1734         /* VERSION
1735          * NUMBER
1736          * INTERNAL INFORMATION, 16 WORDS
1737          */
1738         m68ki_fake_push_32();
1739         m68ki_fake_push_32();
1740         m68ki_fake_push_32();
1741         m68ki_fake_push_32();
1742         m68ki_fake_push_32();
1743         m68ki_fake_push_32();
1744         m68ki_fake_push_32();
1745         m68ki_fake_push_32();
1746
1747         /* INSTRUCTION INPUT BUFFER */
1748         m68ki_push_16(0);
1749
1750         /* UNUSED, RESERVED (not written) */
1751         m68ki_fake_push_16();
1752
1753         /* DATA INPUT BUFFER */
1754         m68ki_push_16(0);
1755
1756         /* UNUSED, RESERVED (not written) */
1757         m68ki_fake_push_16();
1758
1759         /* DATA OUTPUT BUFFER */
1760         m68ki_push_16(0);
1761
1762         /* UNUSED, RESERVED (not written) */
1763         m68ki_fake_push_16();
1764
1765         /* FAULT ADDRESS */
1766         m68ki_push_32(0);
1767
1768         /* SPECIAL STATUS WORD */
1769         m68ki_push_16(0);
1770
1771         /* 1000, VECTOR OFFSET */
1772         m68ki_push_16(0x8000 | (vector<<2));
1773
1774         /* PROGRAM COUNTER */
1775         m68ki_push_32(pc);
1776
1777         /* STATUS REGISTER */
1778         m68ki_push_16(sr);
1779 }
1780
1781 /* Format A stack frame (short bus fault).
1782  * This is used only by 68020 for bus fault and address error
1783  * if the error happens at an instruction boundary.
1784  * PC stacked is address of next instruction.
1785  */
1786 static inline void m68ki_stack_frame_1010(uint sr, uint vector, uint pc)
1787 {
1788         /* INTERNAL REGISTER */
1789         m68ki_push_16(0);
1790
1791         /* INTERNAL REGISTER */
1792         m68ki_push_16(0);
1793
1794         /* DATA OUTPUT BUFFER (2 words) */
1795         m68ki_push_32(0);
1796
1797         /* INTERNAL REGISTER */
1798         m68ki_push_16(0);
1799
1800         /* INTERNAL REGISTER */
1801         m68ki_push_16(0);
1802
1803         /* DATA CYCLE FAULT ADDRESS (2 words) */
1804         m68ki_push_32(0);
1805
1806         /* INSTRUCTION PIPE STAGE B */
1807         m68ki_push_16(0);
1808
1809         /* INSTRUCTION PIPE STAGE C */
1810         m68ki_push_16(0);
1811
1812         /* SPECIAL STATUS REGISTER */
1813         m68ki_push_16(0);
1814
1815         /* INTERNAL REGISTER */
1816         m68ki_push_16(0);
1817
1818         /* 1010, VECTOR OFFSET */
1819         m68ki_push_16(0xa000 | (vector<<2));
1820
1821         /* PROGRAM COUNTER */
1822         m68ki_push_32(pc);
1823
1824         /* STATUS REGISTER */
1825         m68ki_push_16(sr);
1826 }
1827
1828 /* Format B stack frame (long bus fault).
1829  * This is used only by 68020 for bus fault and address error
1830  * if the error happens during instruction execution.
1831  * PC stacked is address of instruction in progress.
1832  */
1833 static inline void m68ki_stack_frame_1011(uint sr, uint vector, uint pc)
1834 {
1835         /* INTERNAL REGISTERS (18 words) */
1836         m68ki_push_32(0);
1837         m68ki_push_32(0);
1838         m68ki_push_32(0);
1839         m68ki_push_32(0);
1840         m68ki_push_32(0);
1841         m68ki_push_32(0);
1842         m68ki_push_32(0);
1843         m68ki_push_32(0);
1844         m68ki_push_32(0);
1845
1846         /* VERSION# (4 bits), INTERNAL INFORMATION */
1847         m68ki_push_16(0);
1848
1849         /* INTERNAL REGISTERS (3 words) */
1850         m68ki_push_32(0);
1851         m68ki_push_16(0);
1852
1853         /* DATA INTPUT BUFFER (2 words) */
1854         m68ki_push_32(0);
1855
1856         /* INTERNAL REGISTERS (2 words) */
1857         m68ki_push_32(0);
1858
1859         /* STAGE B ADDRESS (2 words) */
1860         m68ki_push_32(0);
1861
1862         /* INTERNAL REGISTER (4 words) */
1863         m68ki_push_32(0);
1864         m68ki_push_32(0);
1865
1866         /* DATA OUTPUT BUFFER (2 words) */
1867         m68ki_push_32(0);
1868
1869         /* INTERNAL REGISTER */
1870         m68ki_push_16(0);
1871
1872         /* INTERNAL REGISTER */
1873         m68ki_push_16(0);
1874
1875         /* DATA CYCLE FAULT ADDRESS (2 words) */
1876         m68ki_push_32(0);
1877
1878         /* INSTRUCTION PIPE STAGE B */
1879         m68ki_push_16(0);
1880
1881         /* INSTRUCTION PIPE STAGE C */
1882         m68ki_push_16(0);
1883
1884         /* SPECIAL STATUS REGISTER */
1885         m68ki_push_16(0);
1886
1887         /* INTERNAL REGISTER */
1888         m68ki_push_16(0);
1889
1890         /* 1011, VECTOR OFFSET */
1891         m68ki_push_16(0xb000 | (vector<<2));
1892
1893         /* PROGRAM COUNTER */
1894         m68ki_push_32(pc);
1895
1896         /* STATUS REGISTER */
1897         m68ki_push_16(sr);
1898 }
1899
1900
1901 /* Used for Group 2 exceptions.
1902  * These stack a type 2 frame on the 020.
1903  */
1904 static inline void m68ki_exception_trap(uint vector)
1905 {
1906         uint sr = m68ki_init_exception();
1907
1908         if(CPU_TYPE_IS_010_LESS(CPU_TYPE))
1909                 m68ki_stack_frame_0000(REG_PC, sr, vector);
1910         else
1911                 m68ki_stack_frame_0010(sr, vector);
1912
1913         m68ki_jump_vector(vector);
1914
1915         /* Use up some clock cycles and undo the instruction's cycles */
1916         USE_CYCLES(CYC_EXCEPTION[vector] - CYC_INSTRUCTION[REG_IR]);
1917 }
1918
1919 /* Trap#n stacks a 0 frame but behaves like group2 otherwise */
1920 static inline void m68ki_exception_trapN(uint vector)
1921 {
1922         uint sr = m68ki_init_exception();
1923         m68ki_stack_frame_0000(REG_PC, sr, vector);
1924         m68ki_jump_vector(vector);
1925
1926         /* Use up some clock cycles and undo the instruction's cycles */
1927         USE_CYCLES(CYC_EXCEPTION[vector] - CYC_INSTRUCTION[REG_IR]);
1928 }
1929
1930 /* Exception for trace mode */
1931 static inline void m68ki_exception_trace(void)
1932 {
1933         uint sr = m68ki_init_exception();
1934
1935         if(CPU_TYPE_IS_010_LESS(CPU_TYPE))
1936         {
1937                 #if M68K_EMULATE_ADDRESS_ERROR == OPT_ON
1938                 if(CPU_TYPE_IS_000(CPU_TYPE))
1939                 {
1940                         CPU_INSTR_MODE = INSTRUCTION_NO;
1941                 }
1942                 #endif /* M68K_EMULATE_ADDRESS_ERROR */
1943                 m68ki_stack_frame_0000(REG_PC, sr, EXCEPTION_TRACE);
1944         }
1945         else
1946                 m68ki_stack_frame_0010(sr, EXCEPTION_TRACE);
1947
1948         m68ki_jump_vector(EXCEPTION_TRACE);
1949
1950         /* Trace nullifies a STOP instruction */
1951         CPU_STOPPED &= ~STOP_LEVEL_STOP;
1952
1953         /* Use up some clock cycles */
1954         USE_CYCLES(CYC_EXCEPTION[EXCEPTION_TRACE]);
1955 }
1956
1957 /* Exception for privilege violation */
1958 static inline void m68ki_exception_privilege_violation(void)
1959 {
1960         uint sr = m68ki_init_exception();
1961
1962         #if M68K_EMULATE_ADDRESS_ERROR == OPT_ON
1963         if(CPU_TYPE_IS_000(CPU_TYPE))
1964         {
1965                 CPU_INSTR_MODE = INSTRUCTION_NO;
1966         }
1967         #endif /* M68K_EMULATE_ADDRESS_ERROR */
1968
1969         m68ki_stack_frame_0000(REG_PPC, sr, EXCEPTION_PRIVILEGE_VIOLATION);
1970         m68ki_jump_vector(EXCEPTION_PRIVILEGE_VIOLATION);
1971
1972         /* Use up some clock cycles and undo the instruction's cycles */
1973         USE_CYCLES(CYC_EXCEPTION[EXCEPTION_PRIVILEGE_VIOLATION] - CYC_INSTRUCTION[REG_IR]);
1974 }
1975
1976 extern jmp_buf m68ki_bus_error_jmp_buf;
1977
1978 #define m68ki_check_bus_error_trap() setjmp(m68ki_bus_error_jmp_buf)
1979
1980 /* Exception for bus error */
1981 static inline void m68ki_exception_bus_error(void)
1982 {
1983         int i;
1984
1985         /* If we were processing a bus error, address error, or reset,
1986          * this is a catastrophic failure.
1987          * Halt the CPU
1988          */
1989         if(CPU_RUN_MODE == RUN_MODE_BERR_AERR_RESET)
1990         {
1991 m68k_read_memory_8(0x00ffff01);
1992                 CPU_STOPPED = STOP_LEVEL_HALT;
1993                 return;
1994         }
1995         CPU_RUN_MODE = RUN_MODE_BERR_AERR_RESET;
1996
1997         /* Use up some clock cycles and undo the instruction's cycles */
1998         USE_CYCLES(CYC_EXCEPTION[EXCEPTION_BUS_ERROR] - CYC_INSTRUCTION[REG_IR]);
1999
2000         for (i = 15; i >= 0; i--){
2001                 REG_DA[i] = REG_DA_SAVE[i];
2002         }
2003
2004         uint sr = m68ki_init_exception();
2005         m68ki_stack_frame_1000(REG_PPC, sr, EXCEPTION_BUS_ERROR);
2006
2007         m68ki_jump_vector(EXCEPTION_BUS_ERROR);
2008         longjmp(m68ki_bus_error_jmp_buf, 1);
2009 }
2010
2011 extern int cpu_log_enabled;
2012
2013 /* Exception for A-Line instructions */
2014 static inline void m68ki_exception_1010(void)
2015 {
2016         uint sr;
2017 #if M68K_LOG_1010_1111 == OPT_ON
2018         M68K_DO_LOG_EMU((M68K_LOG_FILEHANDLE "%s at %08x: called 1010 instruction %04x (%s)\n",
2019                                          m68ki_cpu_names[CPU_TYPE], ADDRESS_68K(REG_PPC), REG_IR,
2020                                          m68ki_disassemble_quick(ADDRESS_68K(REG_PPC))));
2021 #endif
2022
2023         sr = m68ki_init_exception();
2024         m68ki_stack_frame_0000(REG_PPC, sr, EXCEPTION_1010);
2025         m68ki_jump_vector(EXCEPTION_1010);
2026
2027         /* Use up some clock cycles and undo the instruction's cycles */
2028         USE_CYCLES(CYC_EXCEPTION[EXCEPTION_1010] - CYC_INSTRUCTION[REG_IR]);
2029 }
2030
2031 /* Exception for F-Line instructions */
2032 static inline void m68ki_exception_1111(void)
2033 {
2034         uint sr;
2035
2036 #if M68K_LOG_1010_1111 == OPT_ON
2037         M68K_DO_LOG_EMU((M68K_LOG_FILEHANDLE "%s at %08x: called 1111 instruction %04x (%s)\n",
2038                                          m68ki_cpu_names[CPU_TYPE], ADDRESS_68K(REG_PPC), REG_IR,
2039                                          m68ki_disassemble_quick(ADDRESS_68K(REG_PPC))));
2040 #endif
2041
2042         sr = m68ki_init_exception();
2043         m68ki_stack_frame_0000(REG_PPC, sr, EXCEPTION_1111);
2044         m68ki_jump_vector(EXCEPTION_1111);
2045
2046         /* Use up some clock cycles and undo the instruction's cycles */
2047         USE_CYCLES(CYC_EXCEPTION[EXCEPTION_1111] - CYC_INSTRUCTION[REG_IR]);
2048 }
2049
2050 #if M68K_ILLG_HAS_CALLBACK == OPT_SPECIFY_HANDLER
2051 extern int m68ki_illg_callback(int);
2052 #endif
2053
2054 /* Exception for illegal instructions */
2055 static inline void m68ki_exception_illegal(void)
2056 {
2057         uint sr;
2058
2059         M68K_DO_LOG((M68K_LOG_FILEHANDLE "%s at %08x: illegal instruction %04x (%s)\n",
2060                                  m68ki_cpu_names[CPU_TYPE], ADDRESS_68K(REG_PPC), REG_IR,
2061                                  m68ki_disassemble_quick(ADDRESS_68K(REG_PPC))));
2062         if (m68ki_illg_callback(REG_IR))
2063             return;
2064
2065         sr = m68ki_init_exception();
2066
2067         #if M68K_EMULATE_ADDRESS_ERROR == OPT_ON
2068         if(CPU_TYPE_IS_000(CPU_TYPE))
2069         {
2070                 CPU_INSTR_MODE = INSTRUCTION_NO;
2071         }
2072         #endif /* M68K_EMULATE_ADDRESS_ERROR */
2073
2074         m68ki_stack_frame_0000(REG_PPC, sr, EXCEPTION_ILLEGAL_INSTRUCTION);
2075         m68ki_jump_vector(EXCEPTION_ILLEGAL_INSTRUCTION);
2076
2077         /* Use up some clock cycles and undo the instruction's cycles */
2078         USE_CYCLES(CYC_EXCEPTION[EXCEPTION_ILLEGAL_INSTRUCTION] - CYC_INSTRUCTION[REG_IR]);
2079 }
2080
2081 /* Exception for format errror in RTE */
2082 static inline void m68ki_exception_format_error(void)
2083 {
2084         uint sr = m68ki_init_exception();
2085         m68ki_stack_frame_0000(REG_PC, sr, EXCEPTION_FORMAT_ERROR);
2086         m68ki_jump_vector(EXCEPTION_FORMAT_ERROR);
2087
2088         /* Use up some clock cycles and undo the instruction's cycles */
2089         USE_CYCLES(CYC_EXCEPTION[EXCEPTION_FORMAT_ERROR] - CYC_INSTRUCTION[REG_IR]);
2090 }
2091
2092 /* Exception for address error */
2093 static inline void m68ki_exception_address_error(void)
2094 {
2095         uint sr = m68ki_init_exception();
2096
2097         /* If we were processing a bus error, address error, or reset,
2098          * this is a catastrophic failure.
2099          * Halt the CPU
2100          */
2101         if(CPU_RUN_MODE == RUN_MODE_BERR_AERR_RESET)
2102         {
2103 m68k_read_memory_8(0x00ffff01);
2104                 CPU_STOPPED = STOP_LEVEL_HALT;
2105                 return;
2106         }
2107         CPU_RUN_MODE = RUN_MODE_BERR_AERR_RESET;
2108
2109         /* Note: This is implemented for 68000 only! */
2110         m68ki_stack_frame_buserr(sr);
2111
2112         m68ki_jump_vector(EXCEPTION_ADDRESS_ERROR);
2113
2114         /* Use up some clock cycles. Note that we don't need to undo the
2115         instruction's cycles here as we've longjmp:ed directly from the
2116         instruction handler without passing the part of the excecute loop
2117         that deducts instruction cycles */
2118         USE_CYCLES(CYC_EXCEPTION[EXCEPTION_ADDRESS_ERROR]);
2119 }
2120
2121
2122 /* Service an interrupt request and start exception processing */
2123 static inline void m68ki_exception_interrupt(uint int_level)
2124 {
2125         uint vector;
2126         uint sr;
2127         uint new_pc;
2128
2129         #if M68K_EMULATE_ADDRESS_ERROR == OPT_ON
2130         if(CPU_TYPE_IS_000(CPU_TYPE))
2131         {
2132                 CPU_INSTR_MODE = INSTRUCTION_NO;
2133         }
2134         #endif /* M68K_EMULATE_ADDRESS_ERROR */
2135
2136         /* Turn off the stopped state */
2137         CPU_STOPPED &= ~STOP_LEVEL_STOP;
2138
2139         /* If we are halted, don't do anything */
2140         if(CPU_STOPPED)
2141                 return;
2142
2143         /* Acknowledge the interrupt */
2144         vector = m68ki_int_ack(int_level);
2145
2146         /* Get the interrupt vector */
2147         if(vector == M68K_INT_ACK_AUTOVECTOR)
2148                 /* Use the autovectors.  This is the most commonly used implementation */
2149                 vector = EXCEPTION_INTERRUPT_AUTOVECTOR+int_level;
2150         else if(vector == M68K_INT_ACK_SPURIOUS)
2151                 /* Called if no devices respond to the interrupt acknowledge */
2152                 vector = EXCEPTION_SPURIOUS_INTERRUPT;
2153         else if(vector > 255)
2154         {
2155                 M68K_DO_LOG_EMU((M68K_LOG_FILEHANDLE "%s at %08x: Interrupt acknowledge returned invalid vector $%x\n",
2156                                  m68ki_cpu_names[CPU_TYPE], ADDRESS_68K(REG_PC), vector));
2157                 return;
2158         }
2159
2160         /* Start exception processing */
2161         sr = m68ki_init_exception();
2162
2163         /* Set the interrupt mask to the level of the one being serviced */
2164         FLAG_INT_MASK = int_level<<8;
2165
2166         /* Get the new PC */
2167         new_pc = m68ki_read_data_32((vector<<2) + REG_VBR);
2168
2169         /* If vector is uninitialized, call the uninitialized interrupt vector */
2170         if(new_pc == 0)
2171                 new_pc = m68ki_read_data_32((EXCEPTION_UNINITIALIZED_INTERRUPT<<2) + REG_VBR);
2172
2173         /* Generate a stack frame */
2174         m68ki_stack_frame_0000(REG_PC, sr, vector);
2175         if(FLAG_M && CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
2176         {
2177                 /* Create throwaway frame */
2178                 m68ki_set_sm_flag(FLAG_S);      /* clear M */
2179                 sr |= 0x2000; /* Same as SR in master stack frame except S is forced high */
2180                 m68ki_stack_frame_0001(REG_PC, sr, vector);
2181         }
2182
2183         m68ki_jump(new_pc);
2184
2185         /* Defer cycle counting until later */
2186         USE_CYCLES(CYC_EXCEPTION[vector]);
2187
2188 #if !M68K_EMULATE_INT_ACK
2189         /* Automatically clear IRQ if we are not using an acknowledge scheme */
2190         CPU_INT_LEVEL = 0;
2191 #endif /* M68K_EMULATE_INT_ACK */
2192 }
2193
2194
2195 /* ASG: Check for interrupts */
2196 static inline void m68ki_check_interrupts(void)
2197 {
2198         if(m68ki_cpu.nmi_pending)
2199         {
2200                 m68ki_cpu.nmi_pending = FALSE;
2201                 m68ki_exception_interrupt(7);
2202         }
2203         else if(CPU_INT_LEVEL > FLAG_INT_MASK)
2204                 m68ki_exception_interrupt(CPU_INT_LEVEL>>8);
2205 }
2206
2207
2208
2209 /* ======================================================================== */
2210 /* ============================== END OF FILE ============================= */
2211 /* ======================================================================== */
2212
2213 #ifdef __cplusplus
2214 }
2215 #endif
2216
2217 #endif /* M68KCPU__HEADER */