src/musashi/m68kcpu.h

Sun, 05 Dec 2010 16:20:00 +0000

author
Philip Pemberton <philpem@philpem.me.uk>
date
Sun, 05 Dec 2010 16:20:00 +0000
changeset 52
a350dfa92895
parent 19
ea417ac1d83a
child 109
2f8afb9e5baa
permissions
-rw-r--r--

add preliminary WD279x emulation to core

     1 #include <stdio.h>
     2 /* ======================================================================== */
     3 /* ========================= LICENSING & COPYRIGHT ======================== */
     4 /* ======================================================================== */
     5 /*
     6  *                                  MUSASHI
     7  *                                Version 3.3
     8  *
     9  * A portable Motorola M680x0 processor emulation engine.
    10  * Copyright 1998-2001 Karl Stenerud.  All rights reserved.
    11  *
    12  * This code may be freely used for non-commercial purposes as long as this
    13  * copyright notice remains unaltered in the source code and any binary files
    14  * containing this code in compiled form.
    15  *
    16  * All other lisencing terms must be negotiated with the author
    17  * (Karl Stenerud).
    18  *
    19  * The latest version of this code can be obtained at:
    20  * http://kstenerud.cjb.net
    21  */
    26 #ifndef M68KCPU__HEADER
    27 #define M68KCPU__HEADER
    29 #include "m68k.h"
    30 #include <limits.h>
    32 #if M68K_EMULATE_ADDRESS_ERROR
    33 #include <setjmp.h>
    34 #endif /* M68K_EMULATE_ADDRESS_ERROR */
    36 /* ======================================================================== */
    37 /* ==================== ARCHITECTURE-DEPENDANT DEFINES ==================== */
    38 /* ======================================================================== */
    40 /* Check for > 32bit sizes */
    41 #if UINT_MAX > 0xffffffff
    42 	#define M68K_INT_GT_32_BIT  1
    43 #endif
    45 /* Data types used in this emulation core */
    46 #undef sint8
    47 #undef sint16
    48 #undef sint32
    49 #undef sint64
    50 #undef uint8
    51 #undef uint16
    52 #undef uint32
    53 #undef uint64
    54 #undef sint
    55 #undef uint
    57 #define sint8  signed   char			/* ASG: changed from char to signed char */
    58 #define sint16 signed   short
    59 #define sint32 signed   long
    60 #define uint8  unsigned char
    61 #define uint16 unsigned short
    62 #define uint32 unsigned long
    64 /* signed and unsigned int must be at least 32 bits wide */
    65 #define sint   signed   int
    66 #define uint   unsigned int
    69 #if M68K_USE_64_BIT
    70 #define sint64 signed   long long
    71 #define uint64 unsigned long long
    72 #else
    73 #define sint64 sint32
    74 #define uint64 uint32
    75 #endif /* M68K_USE_64_BIT */
    79 /* Allow for architectures that don't have 8-bit sizes */
    80 #if UCHAR_MAX == 0xff
    81 	#define MAKE_INT_8(A) (sint8)(A)
    82 #else
    83 	#undef  sint8
    84 	#define sint8  signed   int
    85 	#undef  uint8
    86 	#define uint8  unsigned int
    87 	INLINE sint MAKE_INT_8(uint value)
    88 	{
    89 		return (value & 0x80) ? value | ~0xff : value & 0xff;
    90 	}
    91 #endif /* UCHAR_MAX == 0xff */
    94 /* Allow for architectures that don't have 16-bit sizes */
    95 #if USHRT_MAX == 0xffff
    96 	#define MAKE_INT_16(A) (sint16)(A)
    97 #else
    98 	#undef  sint16
    99 	#define sint16 signed   int
   100 	#undef  uint16
   101 	#define uint16 unsigned int
   102 	INLINE sint MAKE_INT_16(uint value)
   103 	{
   104 		return (value & 0x8000) ? value | ~0xffff : value & 0xffff;
   105 	}
   106 #endif /* USHRT_MAX == 0xffff */
   109 /* Allow for architectures that don't have 32-bit sizes */
   110 #if ULONG_MAX == 0xffffffff
   111 	#define MAKE_INT_32(A) (sint32)(A)
   112 #else
   113 	#undef  sint32
   114 	#define sint32  signed   int
   115 	#undef  uint32
   116 	#define uint32  unsigned int
   117 	INLINE sint MAKE_INT_32(uint value)
   118 	{
   119 		return (value & 0x80000000) ? value | ~0xffffffff : value & 0xffffffff;
   120 	}
   121 #endif /* ULONG_MAX == 0xffffffff */
   126 /* ======================================================================== */
   127 /* ============================ GENERAL DEFINES =========================== */
   128 /* ======================================================================== */
   130 /* Exception Vectors handled by emulation */
   131 #define EXCEPTION_BUS_ERROR                2 /* This one is not emulated! */
   132 #define EXCEPTION_ADDRESS_ERROR            3 /* This one is partially emulated (doesn't stack a proper frame yet) */
   133 #define EXCEPTION_ILLEGAL_INSTRUCTION      4
   134 #define EXCEPTION_ZERO_DIVIDE              5
   135 #define EXCEPTION_CHK                      6
   136 #define EXCEPTION_TRAPV                    7
   137 #define EXCEPTION_PRIVILEGE_VIOLATION      8
   138 #define EXCEPTION_TRACE                    9
   139 #define EXCEPTION_1010                    10
   140 #define EXCEPTION_1111                    11
   141 #define EXCEPTION_FORMAT_ERROR            14
   142 #define EXCEPTION_UNINITIALIZED_INTERRUPT 15
   143 #define EXCEPTION_SPURIOUS_INTERRUPT      24
   144 #define EXCEPTION_INTERRUPT_AUTOVECTOR    24
   145 #define EXCEPTION_TRAP_BASE               32
   147 /* Function codes set by CPU during data/address bus activity */
   148 #define FUNCTION_CODE_USER_DATA          1
   149 #define FUNCTION_CODE_USER_PROGRAM       2
   150 #define FUNCTION_CODE_SUPERVISOR_DATA    5
   151 #define FUNCTION_CODE_SUPERVISOR_PROGRAM 6
   152 #define FUNCTION_CODE_CPU_SPACE          7
   154 /* CPU types for deciding what to emulate */
   155 #define CPU_TYPE_000   1
   156 #define CPU_TYPE_010   2
   157 #define CPU_TYPE_EC020 4
   158 #define CPU_TYPE_020   8
   160 /* Different ways to stop the CPU */
   161 #define STOP_LEVEL_STOP 1
   162 #define STOP_LEVEL_HALT 2
   164 #ifndef NULL
   165 #define NULL ((void*)0)
   166 #endif
   168 /* ======================================================================== */
   169 /* ================================ MACROS ================================ */
   170 /* ======================================================================== */
   173 /* ---------------------------- General Macros ---------------------------- */
   175 /* Bit Isolation Macros */
   176 #define BIT_0(A)  ((A) & 0x00000001)
   177 #define BIT_1(A)  ((A) & 0x00000002)
   178 #define BIT_2(A)  ((A) & 0x00000004)
   179 #define BIT_3(A)  ((A) & 0x00000008)
   180 #define BIT_4(A)  ((A) & 0x00000010)
   181 #define BIT_5(A)  ((A) & 0x00000020)
   182 #define BIT_6(A)  ((A) & 0x00000040)
   183 #define BIT_7(A)  ((A) & 0x00000080)
   184 #define BIT_8(A)  ((A) & 0x00000100)
   185 #define BIT_9(A)  ((A) & 0x00000200)
   186 #define BIT_A(A)  ((A) & 0x00000400)
   187 #define BIT_B(A)  ((A) & 0x00000800)
   188 #define BIT_C(A)  ((A) & 0x00001000)
   189 #define BIT_D(A)  ((A) & 0x00002000)
   190 #define BIT_E(A)  ((A) & 0x00004000)
   191 #define BIT_F(A)  ((A) & 0x00008000)
   192 #define BIT_10(A) ((A) & 0x00010000)
   193 #define BIT_11(A) ((A) & 0x00020000)
   194 #define BIT_12(A) ((A) & 0x00040000)
   195 #define BIT_13(A) ((A) & 0x00080000)
   196 #define BIT_14(A) ((A) & 0x00100000)
   197 #define BIT_15(A) ((A) & 0x00200000)
   198 #define BIT_16(A) ((A) & 0x00400000)
   199 #define BIT_17(A) ((A) & 0x00800000)
   200 #define BIT_18(A) ((A) & 0x01000000)
   201 #define BIT_19(A) ((A) & 0x02000000)
   202 #define BIT_1A(A) ((A) & 0x04000000)
   203 #define BIT_1B(A) ((A) & 0x08000000)
   204 #define BIT_1C(A) ((A) & 0x10000000)
   205 #define BIT_1D(A) ((A) & 0x20000000)
   206 #define BIT_1E(A) ((A) & 0x40000000)
   207 #define BIT_1F(A) ((A) & 0x80000000)
   209 /* Get the most significant bit for specific sizes */
   210 #define GET_MSB_8(A)  ((A) & 0x80)
   211 #define GET_MSB_9(A)  ((A) & 0x100)
   212 #define GET_MSB_16(A) ((A) & 0x8000)
   213 #define GET_MSB_17(A) ((A) & 0x10000)
   214 #define GET_MSB_32(A) ((A) & 0x80000000)
   215 #if M68K_USE_64_BIT
   216 #define GET_MSB_33(A) ((A) & 0x100000000)
   217 #endif /* M68K_USE_64_BIT */
   219 /* Isolate nibbles */
   220 #define LOW_NIBBLE(A)  ((A) & 0x0f)
   221 #define HIGH_NIBBLE(A) ((A) & 0xf0)
   223 /* These are used to isolate 8, 16, and 32 bit sizes */
   224 #define MASK_OUT_ABOVE_2(A)  ((A) & 3)
   225 #define MASK_OUT_ABOVE_8(A)  ((A) & 0xff)
   226 #define MASK_OUT_ABOVE_16(A) ((A) & 0xffff)
   227 #define MASK_OUT_BELOW_2(A)  ((A) & ~3)
   228 #define MASK_OUT_BELOW_8(A)  ((A) & ~0xff)
   229 #define MASK_OUT_BELOW_16(A) ((A) & ~0xffff)
   231 /* No need to mask if we are 32 bit */
   232 #if M68K_INT_GT_32BIT || M68K_USE_64_BIT
   233 	#define MASK_OUT_ABOVE_32(A) ((A) & 0xffffffff)
   234 	#define MASK_OUT_BELOW_32(A) ((A) & ~0xffffffff)
   235 #else
   236 	#define MASK_OUT_ABOVE_32(A) (A)
   237 	#define MASK_OUT_BELOW_32(A) 0
   238 #endif /* M68K_INT_GT_32BIT || M68K_USE_64_BIT */
   240 /* Simulate address lines of 68k family */
   241 #define ADDRESS_68K(A) ((A)&CPU_ADDRESS_MASK)
   244 /* Shift & Rotate Macros. */
   245 #define LSL(A, C) ((A) << (C))
   246 #define LSR(A, C) ((A) >> (C))
   248 /* Some > 32-bit optimizations */
   249 #if M68K_INT_GT_32BIT
   250 	/* Shift left and right */
   251 	#define LSR_32(A, C) ((A) >> (C))
   252 	#define LSL_32(A, C) ((A) << (C))
   253 #else
   254 	/* We have to do this because the morons at ANSI decided that shifts
   255 	 * by >= data size are undefined.
   256 	 */
   257 	#define LSR_32(A, C) ((C) < 32 ? (A) >> (C) : 0)
   258 	#define LSL_32(A, C) ((C) < 32 ? (A) << (C) : 0)
   259 #endif /* M68K_INT_GT_32BIT */
   261 #if M68K_USE_64_BIT
   262 	#define LSL_32_64(A, C) ((A) << (C))
   263 	#define LSR_32_64(A, C) ((A) >> (C))
   264 	#define ROL_33_64(A, C) (LSL_32_64(A, C) | LSR_32_64(A, 33-(C)))
   265 	#define ROR_33_64(A, C) (LSR_32_64(A, C) | LSL_32_64(A, 33-(C)))
   266 #endif /* M68K_USE_64_BIT */
   268 #define ROL_8(A, C)      MASK_OUT_ABOVE_8(LSL(A, C) | LSR(A, 8-(C)))
   269 #define ROL_9(A, C)                      (LSL(A, C) | LSR(A, 9-(C)))
   270 #define ROL_16(A, C)    MASK_OUT_ABOVE_16(LSL(A, C) | LSR(A, 16-(C)))
   271 #define ROL_17(A, C)                     (LSL(A, C) | LSR(A, 17-(C)))
   272 #define ROL_32(A, C)    MASK_OUT_ABOVE_32(LSL_32(A, C) | LSR_32(A, 32-(C)))
   273 #define ROL_33(A, C)                     (LSL_32(A, C) | LSR_32(A, 33-(C)))
   275 #define ROR_8(A, C)      MASK_OUT_ABOVE_8(LSR(A, C) | LSL(A, 8-(C)))
   276 #define ROR_9(A, C)                      (LSR(A, C) | LSL(A, 9-(C)))
   277 #define ROR_16(A, C)    MASK_OUT_ABOVE_16(LSR(A, C) | LSL(A, 16-(C)))
   278 #define ROR_17(A, C)                     (LSR(A, C) | LSL(A, 17-(C)))
   279 #define ROR_32(A, C)    MASK_OUT_ABOVE_32(LSR_32(A, C) | LSL_32(A, 32-(C)))
   280 #define ROR_33(A, C)                     (LSR_32(A, C) | LSL_32(A, 33-(C)))
   284 /* ------------------------------ CPU Access ------------------------------ */
   286 /* Access the CPU registers */
   287 #define CPU_TYPE         m68ki_cpu.cpu_type
   289 #define REG_DA           m68ki_cpu.dar /* easy access to data and address regs */
   290 #define REG_D            m68ki_cpu.dar
   291 #define REG_A            (m68ki_cpu.dar+8)
   292 #define REG_PPC 		 m68ki_cpu.ppc
   293 #define REG_PC           m68ki_cpu.pc
   294 #define REG_SP_BASE      m68ki_cpu.sp
   295 #define REG_USP          m68ki_cpu.sp[0]
   296 #define REG_ISP          m68ki_cpu.sp[4]
   297 #define REG_MSP          m68ki_cpu.sp[6]
   298 #define REG_SP           m68ki_cpu.dar[15]
   299 #define REG_VBR          m68ki_cpu.vbr
   300 #define REG_SFC          m68ki_cpu.sfc
   301 #define REG_DFC          m68ki_cpu.dfc
   302 #define REG_CACR         m68ki_cpu.cacr
   303 #define REG_CAAR         m68ki_cpu.caar
   304 #define REG_IR           m68ki_cpu.ir
   306 #define FLAG_T1          m68ki_cpu.t1_flag
   307 #define FLAG_T0          m68ki_cpu.t0_flag
   308 #define FLAG_S           m68ki_cpu.s_flag
   309 #define FLAG_M           m68ki_cpu.m_flag
   310 #define FLAG_X           m68ki_cpu.x_flag
   311 #define FLAG_N           m68ki_cpu.n_flag
   312 #define FLAG_Z           m68ki_cpu.not_z_flag
   313 #define FLAG_V           m68ki_cpu.v_flag
   314 #define FLAG_C           m68ki_cpu.c_flag
   315 #define FLAG_INT_MASK    m68ki_cpu.int_mask
   317 #define CPU_INT_LEVEL    m68ki_cpu.int_level /* ASG: changed from CPU_INTS_PENDING */
   318 #define CPU_INT_CYCLES   m68ki_cpu.int_cycles /* ASG */
   319 #define CPU_STOPPED      m68ki_cpu.stopped
   320 #define CPU_PREF_ADDR    m68ki_cpu.pref_addr
   321 #define CPU_PREF_DATA    m68ki_cpu.pref_data
   322 #define CPU_ADDRESS_MASK m68ki_cpu.address_mask
   323 #define CPU_SR_MASK      m68ki_cpu.sr_mask
   325 #define CYC_INSTRUCTION  m68ki_cpu.cyc_instruction
   326 #define CYC_EXCEPTION    m68ki_cpu.cyc_exception
   327 #define CYC_BCC_NOTAKE_B m68ki_cpu.cyc_bcc_notake_b
   328 #define CYC_BCC_NOTAKE_W m68ki_cpu.cyc_bcc_notake_w
   329 #define CYC_DBCC_F_NOEXP m68ki_cpu.cyc_dbcc_f_noexp
   330 #define CYC_DBCC_F_EXP   m68ki_cpu.cyc_dbcc_f_exp
   331 #define CYC_SCC_R_FALSE  m68ki_cpu.cyc_scc_r_false
   332 #define CYC_MOVEM_W      m68ki_cpu.cyc_movem_w
   333 #define CYC_MOVEM_L      m68ki_cpu.cyc_movem_l
   334 #define CYC_SHIFT        m68ki_cpu.cyc_shift
   335 #define CYC_RESET        m68ki_cpu.cyc_reset
   338 #define CALLBACK_INT_ACK     m68ki_cpu.int_ack_callback
   339 #define CALLBACK_BKPT_ACK    m68ki_cpu.bkpt_ack_callback
   340 #define CALLBACK_RESET_INSTR m68ki_cpu.reset_instr_callback
   341 #define CALLBACK_PC_CHANGED  m68ki_cpu.pc_changed_callback
   342 #define CALLBACK_SET_FC      m68ki_cpu.set_fc_callback
   343 #define CALLBACK_INSTR_HOOK  m68ki_cpu.instr_hook_callback
   347 /* ----------------------------- Configuration ---------------------------- */
   349 /* These defines are dependant on the configuration defines in m68kconf.h */
   351 /* Disable certain comparisons if we're not using all CPU types */
   352 #if M68K_EMULATE_020
   353 	#define CPU_TYPE_IS_020_PLUS(A)    ((A) & CPU_TYPE_020)
   354 	#define CPU_TYPE_IS_020_LESS(A)    1
   355 #else
   356 	#define CPU_TYPE_IS_020_PLUS(A)    0
   357 	#define CPU_TYPE_IS_020_LESS(A)    1
   358 #endif
   360 #if M68K_EMULATE_EC020
   361 	#define CPU_TYPE_IS_EC020_PLUS(A)  ((A) & (CPU_TYPE_EC020 | CPU_TYPE_020))
   362 	#define CPU_TYPE_IS_EC020_LESS(A)  ((A) & (CPU_TYPE_000 | CPU_TYPE_010 | CPU_TYPE_EC020))
   363 #else
   364 	#define CPU_TYPE_IS_EC020_PLUS(A)  CPU_TYPE_IS_020_PLUS(A)
   365 	#define CPU_TYPE_IS_EC020_LESS(A)  CPU_TYPE_IS_020_LESS(A)
   366 #endif
   368 #if M68K_EMULATE_010
   369 	#define CPU_TYPE_IS_010(A)         ((A) == CPU_TYPE_010)
   370 	#define CPU_TYPE_IS_010_PLUS(A)    ((A) & (CPU_TYPE_010 | CPU_TYPE_EC020 | CPU_TYPE_020))
   371 	#define CPU_TYPE_IS_010_LESS(A)    ((A) & (CPU_TYPE_000 | CPU_TYPE_010))
   372 #else
   373 	#define CPU_TYPE_IS_010(A)         0
   374 	#define CPU_TYPE_IS_010_PLUS(A)    CPU_TYPE_IS_EC020_PLUS(A)
   375 	#define CPU_TYPE_IS_010_LESS(A)    CPU_TYPE_IS_EC020_LESS(A)
   376 #endif
   378 #if M68K_EMULATE_020 || M68K_EMULATE_EC020
   379 	#define CPU_TYPE_IS_020_VARIANT(A) ((A) & (CPU_TYPE_EC020 | CPU_TYPE_020))
   380 #else
   381 	#define CPU_TYPE_IS_020_VARIANT(A) 0
   382 #endif
   384 #if M68K_EMULATE_020 || M68K_EMULATE_EC020 || M68K_EMULATE_010
   385 	#define CPU_TYPE_IS_000(A)         ((A) == CPU_TYPE_000)
   386 #else
   387 	#define CPU_TYPE_IS_000(A)         1
   388 #endif
   391 #if !M68K_SEPARATE_READS
   392 #define m68k_read_immediate_16(A) m68ki_read_program_16(A)
   393 #define m68k_read_immediate_32(A) m68ki_read_program_32(A)
   395 #define m68k_read_pcrelative_8(A) m68ki_read_program_8(A)
   396 #define m68k_read_pcrelative_16(A) m68ki_read_program_16(A)
   397 #define m68k_read_pcrelative_32(A) m68ki_read_program_32(A)
   398 #endif /* M68K_SEPARATE_READS */
   401 /* Enable or disable callback functions */
   402 #if M68K_EMULATE_INT_ACK
   403 	#if M68K_EMULATE_INT_ACK == OPT_SPECIFY_HANDLER
   404 		#define m68ki_int_ack(A) M68K_INT_ACK_CALLBACK(A)
   405 	#else
   406 		#define m68ki_int_ack(A) CALLBACK_INT_ACK(A)
   407 	#endif
   408 #else
   409 	/* Default action is to used autovector mode, which is most common */
   410 	#define m68ki_int_ack(A) M68K_INT_ACK_AUTOVECTOR
   411 #endif /* M68K_EMULATE_INT_ACK */
   413 #if M68K_EMULATE_BKPT_ACK
   414 	#if M68K_EMULATE_BKPT_ACK == OPT_SPECIFY_HANDLER
   415 		#define m68ki_bkpt_ack(A) M68K_BKPT_ACK_CALLBACK(A)
   416 	#else
   417 		#define m68ki_bkpt_ack(A) CALLBACK_BKPT_ACK(A)
   418 	#endif
   419 #else
   420 	#define m68ki_bkpt_ack(A)
   421 #endif /* M68K_EMULATE_BKPT_ACK */
   423 #if M68K_EMULATE_RESET
   424 	#if M68K_EMULATE_RESET == OPT_SPECIFY_HANDLER
   425 		#define m68ki_output_reset() M68K_RESET_CALLBACK()
   426 	#else
   427 		#define m68ki_output_reset() CALLBACK_RESET_INSTR()
   428 	#endif
   429 #else
   430 	#define m68ki_output_reset()
   431 #endif /* M68K_EMULATE_RESET */
   433 #if M68K_INSTRUCTION_HOOK
   434 	#if M68K_INSTRUCTION_HOOK == OPT_SPECIFY_HANDLER
   435 		#define m68ki_instr_hook() M68K_INSTRUCTION_CALLBACK()
   436 	#else
   437 		#define m68ki_instr_hook() CALLBACK_INSTR_HOOK()
   438 	#endif
   439 #else
   440 	#define m68ki_instr_hook()
   441 #endif /* M68K_INSTRUCTION_HOOK */
   443 #if M68K_MONITOR_PC
   444 	#if M68K_MONITOR_PC == OPT_SPECIFY_HANDLER
   445 		#define m68ki_pc_changed(A) M68K_SET_PC_CALLBACK(ADDRESS_68K(A))
   446 	#else
   447 		#define m68ki_pc_changed(A) CALLBACK_PC_CHANGED(ADDRESS_68K(A))
   448 	#endif
   449 #else
   450 	#define m68ki_pc_changed(A)
   451 #endif /* M68K_MONITOR_PC */
   454 /* Enable or disable function code emulation */
   455 #if M68K_EMULATE_FC
   456 	#if M68K_EMULATE_FC == OPT_SPECIFY_HANDLER
   457 		#define m68ki_set_fc(A) M68K_SET_FC_CALLBACK(A)
   458 	#else
   459 		#define m68ki_set_fc(A) CALLBACK_SET_FC(A)
   460 	#endif
   461 	#define m68ki_use_data_space() m68ki_address_space = FUNCTION_CODE_USER_DATA
   462 	#define m68ki_use_program_space() m68ki_address_space = FUNCTION_CODE_USER_PROGRAM
   463 	#define m68ki_get_address_space() m68ki_address_space
   464 #else
   465 	#define m68ki_set_fc(A)
   466 	#define m68ki_use_data_space()
   467 	#define m68ki_use_program_space()
   468 	#define m68ki_get_address_space() FUNCTION_CODE_USER_DATA
   469 #endif /* M68K_EMULATE_FC */
   472 /* Enable or disable trace emulation */
   473 #if M68K_EMULATE_TRACE
   474 	/* Initiates trace checking before each instruction (t1) */
   475 	#define m68ki_trace_t1() m68ki_tracing = FLAG_T1
   476 	/* adds t0 to trace checking if we encounter change of flow */
   477 	#define m68ki_trace_t0() m68ki_tracing |= FLAG_T0
   478 	/* Clear all tracing */
   479 	#define m68ki_clear_trace() m68ki_tracing = 0
   480 	/* Cause a trace exception if we are tracing */
   481 	#define m68ki_exception_if_trace() if(m68ki_tracing) m68ki_exception_trace()
   482 #else
   483 	#define m68ki_trace_t1()
   484 	#define m68ki_trace_t0()
   485 	#define m68ki_clear_trace()
   486 	#define m68ki_exception_if_trace()
   487 #endif /* M68K_EMULATE_TRACE */
   491 /* Address error */
   492 #if M68K_EMULATE_ADDRESS_ERROR
   493 	extern jmp_buf m68ki_address_error_trap;
   494 	#define m68ki_set_address_error_trap() if(setjmp(m68ki_address_error_trap)) m68ki_exception_address_error();
   495 	#define m68ki_check_address_error(A) if((A)&1) longjmp(m68ki_address_error_jump, 1);
   496 #else
   497 	#define m68ki_set_address_error_trap()
   498 	#define m68ki_check_address_error(A)
   499 #endif /* M68K_ADDRESS_ERROR */
   501 /* Logging */
   502 #if M68K_LOG_ENABLE
   503 	#include <stdio.h>
   504 	extern FILE* M68K_LOG_FILEHANDLE
   505 	extern char* m68ki_cpu_names[];
   507 	#define M68K_DO_LOG(A) if(M68K_LOG_FILEHANDLE) fprintf A
   508 	#if M68K_LOG_1010_1111
   509 		#define M68K_DO_LOG_EMU(A) if(M68K_LOG_FILEHANDLE) fprintf A
   510 	#else
   511 		#define M68K_DO_LOG_EMU(A)
   512 	#endif
   513 #else
   514 	#define M68K_DO_LOG(A)
   515 	#define M68K_DO_LOG_EMU(A)
   516 #endif
   520 /* -------------------------- EA / Operand Access ------------------------- */
   522 /*
   523  * The general instruction format follows this pattern:
   524  * .... XXX. .... .YYY
   525  * where XXX is register X and YYY is register Y
   526  */
   527 /* Data Register Isolation */
   528 #define DX (REG_D[(REG_IR >> 9) & 7])
   529 #define DY (REG_D[REG_IR & 7])
   530 /* Address Register Isolation */
   531 #define AX (REG_A[(REG_IR >> 9) & 7])
   532 #define AY (REG_A[REG_IR & 7])
   535 /* Effective Address Calculations */
   536 #define EA_AY_AI_8()   AY                                    /* address register indirect */
   537 #define EA_AY_AI_16()  EA_AY_AI_8()
   538 #define EA_AY_AI_32()  EA_AY_AI_8()
   539 #define EA_AY_PI_8()   (AY++)                                /* postincrement (size = byte) */
   540 #define EA_AY_PI_16()  ((AY+=2)-2)                           /* postincrement (size = word) */
   541 #define EA_AY_PI_32()  ((AY+=4)-4)                           /* postincrement (size = long) */
   542 #define EA_AY_PD_8()   (--AY)                                /* predecrement (size = byte) */
   543 #define EA_AY_PD_16()  (AY-=2)                               /* predecrement (size = word) */
   544 #define EA_AY_PD_32()  (AY-=4)                               /* predecrement (size = long) */
   545 #define EA_AY_DI_8()   (AY+MAKE_INT_16(m68ki_read_imm_16())) /* displacement */
   546 #define EA_AY_DI_16()  EA_AY_DI_8()
   547 #define EA_AY_DI_32()  EA_AY_DI_8()
   548 #define EA_AY_IX_8()   m68ki_get_ea_ix(AY)                   /* indirect + index */
   549 #define EA_AY_IX_16()  EA_AY_IX_8()
   550 #define EA_AY_IX_32()  EA_AY_IX_8()
   552 #define EA_AX_AI_8()   AX
   553 #define EA_AX_AI_16()  EA_AX_AI_8()
   554 #define EA_AX_AI_32()  EA_AX_AI_8()
   555 #define EA_AX_PI_8()   (AX++)
   556 #define EA_AX_PI_16()  ((AX+=2)-2)
   557 #define EA_AX_PI_32()  ((AX+=4)-4)
   558 #define EA_AX_PD_8()   (--AX)
   559 #define EA_AX_PD_16()  (AX-=2)
   560 #define EA_AX_PD_32()  (AX-=4)
   561 #define EA_AX_DI_8()   (AX+MAKE_INT_16(m68ki_read_imm_16()))
   562 #define EA_AX_DI_16()  EA_AX_DI_8()
   563 #define EA_AX_DI_32()  EA_AX_DI_8()
   564 #define EA_AX_IX_8()   m68ki_get_ea_ix(AX)
   565 #define EA_AX_IX_16()  EA_AX_IX_8()
   566 #define EA_AX_IX_32()  EA_AX_IX_8()
   568 #define EA_A7_PI_8()   ((REG_A[7]+=2)-2)
   569 #define EA_A7_PD_8()   (REG_A[7]-=2)
   571 #define EA_AW_8()      MAKE_INT_16(m68ki_read_imm_16())      /* absolute word */
   572 #define EA_AW_16()     EA_AW_8()
   573 #define EA_AW_32()     EA_AW_8()
   574 #define EA_AL_8()      m68ki_read_imm_32()                   /* absolute long */
   575 #define EA_AL_16()     EA_AL_8()
   576 #define EA_AL_32()     EA_AL_8()
   577 #define EA_PCDI_8()    m68ki_get_ea_pcdi()                   /* pc indirect + displacement */
   578 #define EA_PCDI_16()   EA_PCDI_8()
   579 #define EA_PCDI_32()   EA_PCDI_8()
   580 #define EA_PCIX_8()    m68ki_get_ea_pcix()                   /* pc indirect + index */
   581 #define EA_PCIX_16()   EA_PCIX_8()
   582 #define EA_PCIX_32()   EA_PCIX_8()
   585 #define OPER_I_8()     m68ki_read_imm_8()
   586 #define OPER_I_16()    m68ki_read_imm_16()
   587 #define OPER_I_32()    m68ki_read_imm_32()
   591 /* --------------------------- Status Register ---------------------------- */
   593 /* Flag Calculation Macros */
   594 #define CFLAG_8(A) (A)
   595 #define CFLAG_16(A) ((A)>>8)
   597 #if M68K_INT_GT_32_BIT
   598 	#define CFLAG_ADD_32(S, D, R) ((R)>>24)
   599 	#define CFLAG_SUB_32(S, D, R) ((R)>>24)
   600 #else
   601 	#define CFLAG_ADD_32(S, D, R) (((S & D) | (~R & (S | D)))>>23)
   602 	#define CFLAG_SUB_32(S, D, R) (((S & R) | (~D & (S | R)))>>23)
   603 #endif /* M68K_INT_GT_32_BIT */
   605 #define VFLAG_ADD_8(S, D, R) ((S^R) & (D^R))
   606 #define VFLAG_ADD_16(S, D, R) (((S^R) & (D^R))>>8)
   607 #define VFLAG_ADD_32(S, D, R) (((S^R) & (D^R))>>24)
   609 #define VFLAG_SUB_8(S, D, R) ((S^D) & (R^D))
   610 #define VFLAG_SUB_16(S, D, R) (((S^D) & (R^D))>>8)
   611 #define VFLAG_SUB_32(S, D, R) (((S^D) & (R^D))>>24)
   613 #define NFLAG_8(A) (A)
   614 #define NFLAG_16(A) ((A)>>8)
   615 #define NFLAG_32(A) ((A)>>24)
   616 #define NFLAG_64(A) ((A)>>56)
   618 #define ZFLAG_8(A) MASK_OUT_ABOVE_8(A)
   619 #define ZFLAG_16(A) MASK_OUT_ABOVE_16(A)
   620 #define ZFLAG_32(A) MASK_OUT_ABOVE_32(A)
   623 /* Flag values */
   624 #define NFLAG_SET   0x80
   625 #define NFLAG_CLEAR 0
   626 #define CFLAG_SET   0x100
   627 #define CFLAG_CLEAR 0
   628 #define XFLAG_SET   0x100
   629 #define XFLAG_CLEAR 0
   630 #define VFLAG_SET   0x80
   631 #define VFLAG_CLEAR 0
   632 #define ZFLAG_SET   0
   633 #define ZFLAG_CLEAR 0xffffffff
   635 #define SFLAG_SET   4
   636 #define SFLAG_CLEAR 0
   637 #define MFLAG_SET   2
   638 #define MFLAG_CLEAR 0
   640 /* Turn flag values into 1 or 0 */
   641 #define XFLAG_AS_1() ((FLAG_X>>8)&1)
   642 #define NFLAG_AS_1() ((FLAG_N>>7)&1)
   643 #define VFLAG_AS_1() ((FLAG_V>>7)&1)
   644 #define ZFLAG_AS_1() (!FLAG_Z)
   645 #define CFLAG_AS_1() ((FLAG_C>>8)&1)
   648 /* Conditions */
   649 #define COND_CS() (FLAG_C&0x100)
   650 #define COND_CC() (!COND_CS())
   651 #define COND_VS() (FLAG_V&0x80)
   652 #define COND_VC() (!COND_VS())
   653 #define COND_NE() FLAG_Z
   654 #define COND_EQ() (!COND_NE())
   655 #define COND_MI() (FLAG_N&0x80)
   656 #define COND_PL() (!COND_MI())
   657 #define COND_LT() ((FLAG_N^FLAG_V)&0x80)
   658 #define COND_GE() (!COND_LT())
   659 #define COND_HI() (COND_CC() && COND_NE())
   660 #define COND_LS() (COND_CS() || COND_EQ())
   661 #define COND_GT() (COND_GE() && COND_NE())
   662 #define COND_LE() (COND_LT() || COND_EQ())
   664 /* Reversed conditions */
   665 #define COND_NOT_CS() COND_CC()
   666 #define COND_NOT_CC() COND_CS()
   667 #define COND_NOT_VS() COND_VC()
   668 #define COND_NOT_VC() COND_VS()
   669 #define COND_NOT_NE() COND_EQ()
   670 #define COND_NOT_EQ() COND_NE()
   671 #define COND_NOT_MI() COND_PL()
   672 #define COND_NOT_PL() COND_MI()
   673 #define COND_NOT_LT() COND_GE()
   674 #define COND_NOT_GE() COND_LT()
   675 #define COND_NOT_HI() COND_LS()
   676 #define COND_NOT_LS() COND_HI()
   677 #define COND_NOT_GT() COND_LE()
   678 #define COND_NOT_LE() COND_GT()
   680 /* Not real conditions, but here for convenience */
   681 #define COND_XS() (FLAG_X&0x100)
   682 #define COND_XC() (!COND_XS)
   685 /* Get the condition code register */
   686 #define m68ki_get_ccr() ((COND_XS() >> 4) | \
   687 						 (COND_MI() >> 4) | \
   688 						 (COND_EQ() << 2) | \
   689 						 (COND_VS() >> 6) | \
   690 						 (COND_CS() >> 8))
   692 /* Get the status register */
   693 #define m68ki_get_sr() ( FLAG_T1              | \
   694 						 FLAG_T0              | \
   695 						(FLAG_S        << 11) | \
   696 						(FLAG_M        << 11) | \
   697 						 FLAG_INT_MASK        | \
   698 						 m68ki_get_ccr())
   702 /* ---------------------------- Cycle Counting ---------------------------- */
   704 #define ADD_CYCLES(A)    m68ki_remaining_cycles += (A)
   705 #define USE_CYCLES(A)    m68ki_remaining_cycles -= (A)
   706 #define SET_CYCLES(A)    m68ki_remaining_cycles = A
   707 #define GET_CYCLES()     m68ki_remaining_cycles
   708 #define USE_ALL_CYCLES() m68ki_remaining_cycles = 0
   712 /* ----------------------------- Read / Write ----------------------------- */
   714 /* Read from the current address space */
   715 #define m68ki_read_8(A)  m68ki_read_8_fc (A, FLAG_S | m68ki_get_address_space())
   716 #define m68ki_read_16(A) m68ki_read_16_fc(A, FLAG_S | m68ki_get_address_space())
   717 #define m68ki_read_32(A) m68ki_read_32_fc(A, FLAG_S | m68ki_get_address_space())
   719 /* Write to the current data space */
   720 #define m68ki_write_8(A, V)  m68ki_write_8_fc (A, FLAG_S | FUNCTION_CODE_USER_DATA, V)
   721 #define m68ki_write_16(A, V) m68ki_write_16_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA, V)
   722 #define m68ki_write_32(A, V) m68ki_write_32_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA, V)
   724 /* map read immediate 8 to read immediate 16 */
   725 #define m68ki_read_imm_8() MASK_OUT_ABOVE_8(m68ki_read_imm_16())
   727 /* Map PC-relative reads */
   728 #define m68ki_read_pcrel_8(A) m68k_read_pcrelative_8(A)
   729 #define m68ki_read_pcrel_16(A) m68k_read_pcrelative_16(A)
   730 #define m68ki_read_pcrel_32(A) m68k_read_pcrelative_32(A)
   732 /* Read from the program space */
   733 #define m68ki_read_program_8(A) 	m68ki_read_8_fc(A, FLAG_S | FUNCTION_CODE_USER_PROGRAM)
   734 #define m68ki_read_program_16(A) 	m68ki_read_16_fc(A, FLAG_S | FUNCTION_CODE_USER_PROGRAM)
   735 #define m68ki_read_program_32(A) 	m68ki_read_32_fc(A, FLAG_S | FUNCTION_CODE_USER_PROGRAM)
   737 /* Read from the data space */
   738 #define m68ki_read_data_8(A) 	m68ki_read_8_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA)
   739 #define m68ki_read_data_16(A) 	m68ki_read_16_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA)
   740 #define m68ki_read_data_32(A) 	m68ki_read_32_fc(A, FLAG_S | FUNCTION_CODE_USER_DATA)
   744 /* ======================================================================== */
   745 /* =============================== PROTOTYPES ============================= */
   746 /* ======================================================================== */
   748 typedef struct
   749 {
   750 	uint cpu_type;     /* CPU Type: 68000, 68010, 68EC020, or 68020 */
   751 	uint dar[16];      /* Data and Address Registers */
   752 	uint ppc;		   /* Previous program counter */
   753 	uint pc;           /* Program Counter */
   754 	uint sp[7];        /* User, Interrupt, and Master Stack Pointers */
   755 	uint vbr;          /* Vector Base Register (m68010+) */
   756 	uint sfc;          /* Source Function Code Register (m68010+) */
   757 	uint dfc;          /* Destination Function Code Register (m68010+) */
   758 	uint cacr;         /* Cache Control Register (m68020, unemulated) */
   759 	uint caar;         /* Cache Address Register (m68020, unemulated) */
   760 	uint ir;           /* Instruction Register */
   761 	uint t1_flag;      /* Trace 1 */
   762 	uint t0_flag;      /* Trace 0 */
   763 	uint s_flag;       /* Supervisor */
   764 	uint m_flag;       /* Master/Interrupt state */
   765 	uint x_flag;       /* Extend */
   766 	uint n_flag;       /* Negative */
   767 	uint not_z_flag;   /* Zero, inverted for speedups */
   768 	uint v_flag;       /* Overflow */
   769 	uint c_flag;       /* Carry */
   770 	uint int_mask;     /* I0-I2 */
   771 	uint int_level;    /* State of interrupt pins IPL0-IPL2 -- ASG: changed from ints_pending */
   772 	uint int_cycles;   /* ASG: extra cycles from generated interrupts */
   773 	uint stopped;      /* Stopped state */
   774 	uint pref_addr;    /* Last prefetch address */
   775 	uint pref_data;    /* Data in the prefetch queue */
   776 	uint address_mask; /* Available address pins */
   777 	uint sr_mask;      /* Implemented status register bits */
   779 	/* Clocks required for instructions / exceptions */
   780 	uint cyc_bcc_notake_b;
   781 	uint cyc_bcc_notake_w;
   782 	uint cyc_dbcc_f_noexp;
   783 	uint cyc_dbcc_f_exp;
   784 	uint cyc_scc_r_false;
   785 	uint cyc_movem_w;
   786 	uint cyc_movem_l;
   787 	uint cyc_shift;
   788 	uint cyc_reset;
   789 	uint8* cyc_instruction;
   790 	uint8* cyc_exception;
   792 	/* Callbacks to host */
   793 	int  (*int_ack_callback)(int int_line);           /* Interrupt Acknowledge */
   794 	void (*bkpt_ack_callback)(unsigned int data);     /* Breakpoint Acknowledge */
   795 	void (*reset_instr_callback)(void);               /* Called when a RESET instruction is encountered */
   796 	void (*pc_changed_callback)(unsigned int new_pc); /* Called when the PC changes by a large amount */
   797 	void (*set_fc_callback)(unsigned int new_fc);     /* Called when the CPU function code changes */
   798 	void (*instr_hook_callback)(void);                /* Called every instruction cycle prior to execution */
   800 } m68ki_cpu_core;
   803 extern m68ki_cpu_core m68ki_cpu;
   804 extern sint           m68ki_remaining_cycles;
   805 extern uint           m68ki_tracing;
   806 extern uint8          m68ki_shift_8_table[];
   807 extern uint16         m68ki_shift_16_table[];
   808 extern uint           m68ki_shift_32_table[];
   809 extern uint8          m68ki_exception_cycle_table[][256];
   810 extern uint           m68ki_address_space;
   811 extern uint8          m68ki_ea_idx_cycle_table[];
   814 /* Read data immediately after the program counter */
   815 INLINE uint m68ki_read_imm_16(void);
   816 INLINE uint m68ki_read_imm_32(void);
   818 /* Read data with specific function code */
   819 INLINE uint m68ki_read_8_fc  (uint address, uint fc);
   820 INLINE uint m68ki_read_16_fc (uint address, uint fc);
   821 INLINE uint m68ki_read_32_fc (uint address, uint fc);
   823 /* Write data with specific function code */
   824 INLINE void m68ki_write_8_fc (uint address, uint fc, uint value);
   825 INLINE void m68ki_write_16_fc(uint address, uint fc, uint value);
   826 INLINE void m68ki_write_32_fc(uint address, uint fc, uint value);
   828 /* Indexed and PC-relative ea fetching */
   829 INLINE uint m68ki_get_ea_pcdi(void);
   830 INLINE uint m68ki_get_ea_pcix(void);
   831 INLINE uint m68ki_get_ea_ix(uint An);
   833 /* Operand fetching */
   834 INLINE uint OPER_AY_AI_8(void);
   835 INLINE uint OPER_AY_AI_16(void);
   836 INLINE uint OPER_AY_AI_32(void);
   837 INLINE uint OPER_AY_PI_8(void);
   838 INLINE uint OPER_AY_PI_16(void);
   839 INLINE uint OPER_AY_PI_32(void);
   840 INLINE uint OPER_AY_PD_8(void);
   841 INLINE uint OPER_AY_PD_16(void);
   842 INLINE uint OPER_AY_PD_32(void);
   843 INLINE uint OPER_AY_DI_8(void);
   844 INLINE uint OPER_AY_DI_16(void);
   845 INLINE uint OPER_AY_DI_32(void);
   846 INLINE uint OPER_AY_IX_8(void);
   847 INLINE uint OPER_AY_IX_16(void);
   848 INLINE uint OPER_AY_IX_32(void);
   850 INLINE uint OPER_AX_AI_8(void);
   851 INLINE uint OPER_AX_AI_16(void);
   852 INLINE uint OPER_AX_AI_32(void);
   853 INLINE uint OPER_AX_PI_8(void);
   854 INLINE uint OPER_AX_PI_16(void);
   855 INLINE uint OPER_AX_PI_32(void);
   856 INLINE uint OPER_AX_PD_8(void);
   857 INLINE uint OPER_AX_PD_16(void);
   858 INLINE uint OPER_AX_PD_32(void);
   859 INLINE uint OPER_AX_DI_8(void);
   860 INLINE uint OPER_AX_DI_16(void);
   861 INLINE uint OPER_AX_DI_32(void);
   862 INLINE uint OPER_AX_IX_8(void);
   863 INLINE uint OPER_AX_IX_16(void);
   864 INLINE uint OPER_AX_IX_32(void);
   866 INLINE uint OPER_A7_PI_8(void);
   867 INLINE uint OPER_A7_PD_8(void);
   869 INLINE uint OPER_AW_8(void);
   870 INLINE uint OPER_AW_16(void);
   871 INLINE uint OPER_AW_32(void);
   872 INLINE uint OPER_AL_8(void);
   873 INLINE uint OPER_AL_16(void);
   874 INLINE uint OPER_AL_32(void);
   875 INLINE uint OPER_PCDI_8(void);
   876 INLINE uint OPER_PCDI_16(void);
   877 INLINE uint OPER_PCDI_32(void);
   878 INLINE uint OPER_PCIX_8(void);
   879 INLINE uint OPER_PCIX_16(void);
   880 INLINE uint OPER_PCIX_32(void);
   882 /* Stack operations */
   883 INLINE void m68ki_push_16(uint value);
   884 INLINE void m68ki_push_32(uint value);
   885 INLINE uint m68ki_pull_16(void);
   886 INLINE uint m68ki_pull_32(void);
   888 /* Program flow operations */
   889 INLINE void m68ki_jump(uint new_pc);
   890 INLINE void m68ki_jump_vector(uint vector);
   891 INLINE void m68ki_branch_8(uint offset);
   892 INLINE void m68ki_branch_16(uint offset);
   893 INLINE void m68ki_branch_32(uint offset);
   895 /* Status register operations. */
   896 INLINE void m68ki_set_s_flag(uint value);            /* Only bit 2 of value should be set (i.e. 4 or 0) */
   897 INLINE void m68ki_set_sm_flag(uint value);           /* only bits 1 and 2 of value should be set */
   898 INLINE void m68ki_set_ccr(uint value);               /* set the condition code register */
   899 INLINE void m68ki_set_sr(uint value);                /* set the status register */
   900 INLINE void m68ki_set_sr_noint(uint value);          /* set the status register */
   902 /* Exception processing */
   903 INLINE uint m68ki_init_exception(void);              /* Initial exception processing */
   905 INLINE void m68ki_stack_frame_3word(uint pc, uint sr); /* Stack various frame types */
   906 INLINE void m68ki_stack_frame_buserr(uint pc, uint sr, uint address, uint write, uint instruction, uint fc);
   908 INLINE void m68ki_stack_frame_0000(uint pc, uint sr, uint vector);
   909 INLINE void m68ki_stack_frame_0001(uint pc, uint sr, uint vector);
   910 INLINE void m68ki_stack_frame_0010(uint sr, uint vector);
   911 INLINE void m68ki_stack_frame_1000(uint pc, uint sr, uint vector);
   912 INLINE void m68ki_stack_frame_1010(uint sr, uint vector, uint pc);
   913 INLINE void m68ki_stack_frame_1011(uint sr, uint vector, uint pc);
   915 INLINE void m68ki_exception_trap(uint vector);
   916 INLINE void m68ki_exception_trapN(uint vector);
   917 INLINE void m68ki_exception_trace(void);
   918 INLINE void m68ki_exception_privilege_violation(void);
   919 INLINE void m68ki_exception_bus_error(void);
   920 INLINE void m68ki_exception_1010(void);
   921 INLINE void m68ki_exception_1111(void);
   922 INLINE void m68ki_exception_illegal(void);
   923 INLINE void m68ki_exception_format_error(void);
   924 INLINE void m68ki_exception_address_error(void);
   925 INLINE void m68ki_exception_interrupt(uint int_level);
   926 INLINE void m68ki_check_interrupts(void);            /* ASG: check for interrupts */
   928 /* quick disassembly (used for logging) */
   929 char* m68ki_disassemble_quick(unsigned int pc, unsigned int cpu_type);
   932 /* ======================================================================== */
   933 /* =========================== UTILITY FUNCTIONS ========================== */
   934 /* ======================================================================== */
   937 /* ---------------------------- Read Immediate ---------------------------- */
   939 /* Handles all immediate reads, does address error check, function code setting,
   940  * and prefetching if they are enabled in m68kconf.h
   941  */
   942 INLINE uint m68ki_read_imm_16(void)
   943 {
   944 	m68ki_set_fc(FLAG_S | FUNCTION_CODE_USER_PROGRAM); /* auto-disable (see m68kcpu.h) */
   945 	m68ki_check_address_error(REG_PC); /* auto-disable (see m68kcpu.h) */
   946 #if M68K_EMULATE_PREFETCH
   947 	if(MASK_OUT_BELOW_2(REG_PC) != CPU_PREF_ADDR)
   948 	{
   949 		CPU_PREF_ADDR = MASK_OUT_BELOW_2(REG_PC);
   950 		CPU_PREF_DATA = m68k_read_immediate_32(ADDRESS_68K(CPU_PREF_ADDR));
   951 	}
   952 	REG_PC += 2;
   953 	return MASK_OUT_ABOVE_16(CPU_PREF_DATA >> ((2-((REG_PC-2)&2))<<3));
   954 #else
   955 	REG_PC += 2;
   956 	return m68k_read_immediate_16(ADDRESS_68K(REG_PC-2));
   957 #endif /* M68K_EMULATE_PREFETCH */
   958 }
   959 INLINE uint m68ki_read_imm_32(void)
   960 {
   961 #if M68K_EMULATE_PREFETCH
   962 	uint temp_val;
   964 	m68ki_set_fc(FLAG_S | FUNCTION_CODE_USER_PROGRAM); /* auto-disable (see m68kcpu.h) */
   965 	m68ki_check_address_error(REG_PC); /* auto-disable (see m68kcpu.h) */
   966 	if(MASK_OUT_BELOW_2(REG_PC) != CPU_PREF_ADDR)
   967 	{
   968 		CPU_PREF_ADDR = MASK_OUT_BELOW_2(REG_PC);
   969 		CPU_PREF_DATA = m68k_read_immediate_32(ADDRESS_68K(CPU_PREF_ADDR));
   970 	}
   971 	temp_val = CPU_PREF_DATA;
   972 	REG_PC += 2;
   973 	if(MASK_OUT_BELOW_2(REG_PC) != CPU_PREF_ADDR)
   974 	{
   975 		CPU_PREF_ADDR = MASK_OUT_BELOW_2(REG_PC);
   976 		CPU_PREF_DATA = m68k_read_immediate_32(ADDRESS_68K(CPU_PREF_ADDR));
   977 		temp_val = MASK_OUT_ABOVE_32((temp_val << 16) | (CPU_PREF_DATA >> 16));
   978 	}
   979 	REG_PC += 2;
   981 	return temp_val;
   982 #else
   983 	m68ki_set_fc(FLAG_S | FUNCTION_CODE_USER_PROGRAM); /* auto-disable (see m68kcpu.h) */
   984 	m68ki_check_address_error(REG_PC); /* auto-disable (see m68kcpu.h) */
   985 	REG_PC += 4;
   986 	return m68k_read_immediate_32(ADDRESS_68K(REG_PC-4));
   987 #endif /* M68K_EMULATE_PREFETCH */
   988 }
   992 /* ------------------------- Top level read/write ------------------------- */
   994 /* Handles all memory accesses (except for immediate reads if they are
   995  * configured to use separate functions in m68kconf.h).
   996  * All memory accesses must go through these top level functions.
   997  * These functions will also check for address error and set the function
   998  * code if they are enabled in m68kconf.h.
   999  */
  1000 INLINE uint m68ki_read_8_fc(uint address, uint fc)
  1002 	m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
  1003 	return m68k_read_memory_8(ADDRESS_68K(address));
  1005 INLINE uint m68ki_read_16_fc(uint address, uint fc)
  1007 	m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
  1008 	m68ki_check_address_error(address); /* auto-disable (see m68kcpu.h) */
  1009 	return m68k_read_memory_16(ADDRESS_68K(address));
  1011 INLINE uint m68ki_read_32_fc(uint address, uint fc)
  1013 	m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
  1014 	m68ki_check_address_error(address); /* auto-disable (see m68kcpu.h) */
  1015 	return m68k_read_memory_32(ADDRESS_68K(address));
  1018 INLINE void m68ki_write_8_fc(uint address, uint fc, uint value)
  1020 	m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
  1021 	m68k_write_memory_8(ADDRESS_68K(address), value);
  1023 INLINE void m68ki_write_16_fc(uint address, uint fc, uint value)
  1025 	m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
  1026 	m68ki_check_address_error(address); /* auto-disable (see m68kcpu.h) */
  1027 	m68k_write_memory_16(ADDRESS_68K(address), value);
  1029 INLINE void m68ki_write_32_fc(uint address, uint fc, uint value)
  1031 	m68ki_set_fc(fc); /* auto-disable (see m68kcpu.h) */
  1032 	m68ki_check_address_error(address); /* auto-disable (see m68kcpu.h) */
  1033 	m68k_write_memory_32(ADDRESS_68K(address), value);
  1038 /* --------------------- Effective Address Calculation -------------------- */
  1040 /* The program counter relative addressing modes cause operands to be
  1041  * retrieved from program space, not data space.
  1042  */
  1043 INLINE uint m68ki_get_ea_pcdi(void)
  1045 	uint old_pc = REG_PC;
  1046 	m68ki_use_program_space(); /* auto-disable */
  1047 	return old_pc + MAKE_INT_16(m68ki_read_imm_16());
  1051 INLINE uint m68ki_get_ea_pcix(void)
  1053 	m68ki_use_program_space(); /* auto-disable */
  1054 	return m68ki_get_ea_ix(REG_PC);
  1057 /* Indexed addressing modes are encoded as follows:
  1059  * Base instruction format:
  1060  * F E D C B A 9 8 7 6 | 5 4 3 | 2 1 0
  1061  * x x x x x x x x x x | 1 1 0 | BASE REGISTER      (An)
  1063  * Base instruction format for destination EA in move instructions:
  1064  * F E D C | B A 9    | 8 7 6 | 5 4 3 2 1 0
  1065  * x x x x | BASE REG | 1 1 0 | X X X X X X       (An)
  1067  * Brief extension format:
  1068  *  F  |  E D C   |  B  |  A 9  | 8 | 7 6 5 4 3 2 1 0
  1069  * D/A | REGISTER | W/L | SCALE | 0 |  DISPLACEMENT
  1071  * Full extension format:
  1072  *  F     E D C      B     A 9    8   7    6    5 4       3   2 1 0
  1073  * D/A | REGISTER | W/L | SCALE | 1 | BS | IS | BD SIZE | 0 | I/IS
  1074  * BASE DISPLACEMENT (0, 16, 32 bit)                (bd)
  1075  * OUTER DISPLACEMENT (0, 16, 32 bit)               (od)
  1077  * D/A:     0 = Dn, 1 = An                          (Xn)
  1078  * W/L:     0 = W (sign extend), 1 = L              (.SIZE)
  1079  * SCALE:   00=1, 01=2, 10=4, 11=8                  (*SCALE)
  1080  * BS:      0=add base reg, 1=suppress base reg     (An suppressed)
  1081  * IS:      0=add index, 1=suppress index           (Xn suppressed)
  1082  * BD SIZE: 00=reserved, 01=NULL, 10=Word, 11=Long  (size of bd)
  1084  * IS I/IS Operation
  1085  * 0  000  No Memory Indirect
  1086  * 0  001  indir prex with null outer
  1087  * 0  010  indir prex with word outer
  1088  * 0  011  indir prex with long outer
  1089  * 0  100  reserved
  1090  * 0  101  indir postx with null outer
  1091  * 0  110  indir postx with word outer
  1092  * 0  111  indir postx with long outer
  1093  * 1  000  no memory indirect
  1094  * 1  001  mem indir with null outer
  1095  * 1  010  mem indir with word outer
  1096  * 1  011  mem indir with long outer
  1097  * 1  100-111  reserved
  1098  */
  1099 INLINE uint m68ki_get_ea_ix(uint An)
  1101 	/* An = base register */
  1102 	uint extension = m68ki_read_imm_16();
  1103 	uint Xn = 0;                        /* Index register */
  1104 	uint bd = 0;                        /* Base Displacement */
  1105 	uint od = 0;                        /* Outer Displacement */
  1107 	if(CPU_TYPE_IS_010_LESS(CPU_TYPE))
  1109 		/* Calculate index */
  1110 		Xn = REG_DA[extension>>12];     /* Xn */
  1111 		if(!BIT_B(extension))           /* W/L */
  1112 			Xn = MAKE_INT_16(Xn);
  1114 		/* Add base register and displacement and return */
  1115 		return An + Xn + MAKE_INT_8(extension);
  1118 	/* Brief extension format */
  1119 	if(!BIT_8(extension))
  1121 		/* Calculate index */
  1122 		Xn = REG_DA[extension>>12];     /* Xn */
  1123 		if(!BIT_B(extension))           /* W/L */
  1124 			Xn = MAKE_INT_16(Xn);
  1125 		/* Add scale if proper CPU type */
  1126 		if(CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
  1127 			Xn <<= (extension>>9) & 3;  /* SCALE */
  1129 		/* Add base register and displacement and return */
  1130 		return An + Xn + MAKE_INT_8(extension);
  1133 	/* Full extension format */
  1135 	USE_CYCLES(m68ki_ea_idx_cycle_table[extension&0x3f]);
  1137 	/* Check if base register is present */
  1138 	if(BIT_7(extension))                /* BS */
  1139 		An = 0;                         /* An */
  1141 	/* Check if index is present */
  1142 	if(!BIT_6(extension))               /* IS */
  1144 		Xn = REG_DA[extension>>12];     /* Xn */
  1145 		if(!BIT_B(extension))           /* W/L */
  1146 			Xn = MAKE_INT_16(Xn);
  1147 		Xn <<= (extension>>9) & 3;      /* SCALE */
  1150 	/* Check if base displacement is present */
  1151 	if(BIT_5(extension))                /* BD SIZE */
  1152 		bd = BIT_4(extension) ? m68ki_read_imm_32() : MAKE_INT_16(m68ki_read_imm_16());
  1154 	/* If no indirect action, we are done */
  1155 	if(!(extension&7))                  /* No Memory Indirect */
  1156 		return An + bd + Xn;
  1158 	/* Check if outer displacement is present */
  1159 	if(BIT_1(extension))                /* I/IS:  od */
  1160 		od = BIT_0(extension) ? m68ki_read_imm_32() : MAKE_INT_16(m68ki_read_imm_16());
  1162 	/* Postindex */
  1163 	if(BIT_2(extension))                /* I/IS:  0 = preindex, 1 = postindex */
  1164 		return m68ki_read_32(An + bd) + Xn + od;
  1166 	/* Preindex */
  1167 	return m68ki_read_32(An + bd + Xn) + od;
  1171 /* Fetch operands */
  1172 INLINE uint OPER_AY_AI_8(void)  {uint ea = EA_AY_AI_8();  return m68ki_read_8(ea); }
  1173 INLINE uint OPER_AY_AI_16(void) {uint ea = EA_AY_AI_16(); return m68ki_read_16(ea);}
  1174 INLINE uint OPER_AY_AI_32(void) {uint ea = EA_AY_AI_32(); return m68ki_read_32(ea);}
  1175 INLINE uint OPER_AY_PI_8(void)  {uint ea = EA_AY_PI_8();  return m68ki_read_8(ea); }
  1176 INLINE uint OPER_AY_PI_16(void) {uint ea = EA_AY_PI_16(); return m68ki_read_16(ea);}
  1177 INLINE uint OPER_AY_PI_32(void) {uint ea = EA_AY_PI_32(); return m68ki_read_32(ea);}
  1178 INLINE uint OPER_AY_PD_8(void)  {uint ea = EA_AY_PD_8();  return m68ki_read_8(ea); }
  1179 INLINE uint OPER_AY_PD_16(void) {uint ea = EA_AY_PD_16(); return m68ki_read_16(ea);}
  1180 INLINE uint OPER_AY_PD_32(void) {uint ea = EA_AY_PD_32(); return m68ki_read_32(ea);}
  1181 INLINE uint OPER_AY_DI_8(void)  {uint ea = EA_AY_DI_8();  return m68ki_read_8(ea); }
  1182 INLINE uint OPER_AY_DI_16(void) {uint ea = EA_AY_DI_16(); return m68ki_read_16(ea);}
  1183 INLINE uint OPER_AY_DI_32(void) {uint ea = EA_AY_DI_32(); return m68ki_read_32(ea);}
  1184 INLINE uint OPER_AY_IX_8(void)  {uint ea = EA_AY_IX_8();  return m68ki_read_8(ea); }
  1185 INLINE uint OPER_AY_IX_16(void) {uint ea = EA_AY_IX_16(); return m68ki_read_16(ea);}
  1186 INLINE uint OPER_AY_IX_32(void) {uint ea = EA_AY_IX_32(); return m68ki_read_32(ea);}
  1188 INLINE uint OPER_AX_AI_8(void)  {uint ea = EA_AX_AI_8();  return m68ki_read_8(ea); }
  1189 INLINE uint OPER_AX_AI_16(void) {uint ea = EA_AX_AI_16(); return m68ki_read_16(ea);}
  1190 INLINE uint OPER_AX_AI_32(void) {uint ea = EA_AX_AI_32(); return m68ki_read_32(ea);}
  1191 INLINE uint OPER_AX_PI_8(void)  {uint ea = EA_AX_PI_8();  return m68ki_read_8(ea); }
  1192 INLINE uint OPER_AX_PI_16(void) {uint ea = EA_AX_PI_16(); return m68ki_read_16(ea);}
  1193 INLINE uint OPER_AX_PI_32(void) {uint ea = EA_AX_PI_32(); return m68ki_read_32(ea);}
  1194 INLINE uint OPER_AX_PD_8(void)  {uint ea = EA_AX_PD_8();  return m68ki_read_8(ea); }
  1195 INLINE uint OPER_AX_PD_16(void) {uint ea = EA_AX_PD_16(); return m68ki_read_16(ea);}
  1196 INLINE uint OPER_AX_PD_32(void) {uint ea = EA_AX_PD_32(); return m68ki_read_32(ea);}
  1197 INLINE uint OPER_AX_DI_8(void)  {uint ea = EA_AX_DI_8();  return m68ki_read_8(ea); }
  1198 INLINE uint OPER_AX_DI_16(void) {uint ea = EA_AX_DI_16(); return m68ki_read_16(ea);}
  1199 INLINE uint OPER_AX_DI_32(void) {uint ea = EA_AX_DI_32(); return m68ki_read_32(ea);}
  1200 INLINE uint OPER_AX_IX_8(void)  {uint ea = EA_AX_IX_8();  return m68ki_read_8(ea); }
  1201 INLINE uint OPER_AX_IX_16(void) {uint ea = EA_AX_IX_16(); return m68ki_read_16(ea);}
  1202 INLINE uint OPER_AX_IX_32(void) {uint ea = EA_AX_IX_32(); return m68ki_read_32(ea);}
  1204 INLINE uint OPER_A7_PI_8(void)  {uint ea = EA_A7_PI_8();  return m68ki_read_8(ea); }
  1205 INLINE uint OPER_A7_PD_8(void)  {uint ea = EA_A7_PD_8();  return m68ki_read_8(ea); }
  1207 INLINE uint OPER_AW_8(void)     {uint ea = EA_AW_8();     return m68ki_read_8(ea); }
  1208 INLINE uint OPER_AW_16(void)    {uint ea = EA_AW_16();    return m68ki_read_16(ea);}
  1209 INLINE uint OPER_AW_32(void)    {uint ea = EA_AW_32();    return m68ki_read_32(ea);}
  1210 INLINE uint OPER_AL_8(void)     {uint ea = EA_AL_8();     return m68ki_read_8(ea); }
  1211 INLINE uint OPER_AL_16(void)    {uint ea = EA_AL_16();    return m68ki_read_16(ea);}
  1212 INLINE uint OPER_AL_32(void)    {uint ea = EA_AL_32();    return m68ki_read_32(ea);}
  1213 INLINE uint OPER_PCDI_8(void)   {uint ea = EA_PCDI_8();   return m68ki_read_pcrel_8(ea); }
  1214 INLINE uint OPER_PCDI_16(void)  {uint ea = EA_PCDI_16();  return m68ki_read_pcrel_16(ea);}
  1215 INLINE uint OPER_PCDI_32(void)  {uint ea = EA_PCDI_32();  return m68ki_read_pcrel_32(ea);}
  1216 INLINE uint OPER_PCIX_8(void)   {uint ea = EA_PCIX_8();   return m68ki_read_pcrel_8(ea); }
  1217 INLINE uint OPER_PCIX_16(void)  {uint ea = EA_PCIX_16();  return m68ki_read_pcrel_16(ea);}
  1218 INLINE uint OPER_PCIX_32(void)  {uint ea = EA_PCIX_32();  return m68ki_read_pcrel_32(ea);}
  1222 /* ---------------------------- Stack Functions --------------------------- */
  1224 /* Push/pull data from the stack */
  1225 INLINE void m68ki_push_16(uint value)
  1227 	REG_SP = MASK_OUT_ABOVE_32(REG_SP - 2);
  1228 	m68ki_write_16(REG_SP, value);
  1231 INLINE void m68ki_push_32(uint value)
  1233 	REG_SP = MASK_OUT_ABOVE_32(REG_SP - 4);
  1234 	m68ki_write_32(REG_SP, value);
  1237 INLINE uint m68ki_pull_16(void)
  1239 	REG_SP = MASK_OUT_ABOVE_32(REG_SP + 2);
  1240 	return m68ki_read_16(REG_SP-2);
  1243 INLINE uint m68ki_pull_32(void)
  1245 	REG_SP = MASK_OUT_ABOVE_32(REG_SP + 4);
  1246 	return m68ki_read_32(REG_SP-4);
  1250 /* Increment/decrement the stack as if doing a push/pull but
  1251  * don't do any memory access.
  1252  */
  1253 INLINE void m68ki_fake_push_16(void)
  1255 	REG_SP = MASK_OUT_ABOVE_32(REG_SP - 2);
  1258 INLINE void m68ki_fake_push_32(void)
  1260 	REG_SP = MASK_OUT_ABOVE_32(REG_SP - 4);
  1263 INLINE void m68ki_fake_pull_16(void)
  1265 	REG_SP = MASK_OUT_ABOVE_32(REG_SP + 2);
  1268 INLINE void m68ki_fake_pull_32(void)
  1270 	REG_SP = MASK_OUT_ABOVE_32(REG_SP + 4);
  1274 /* ----------------------------- Program Flow ----------------------------- */
  1276 /* Jump to a new program location or vector.
  1277  * These functions will also call the pc_changed callback if it was enabled
  1278  * in m68kconf.h.
  1279  */
  1280 INLINE void m68ki_jump(uint new_pc)
  1282 	REG_PC = new_pc;
  1283 	m68ki_pc_changed(REG_PC);
  1286 INLINE void m68ki_jump_vector(uint vector)
  1288 	REG_PC = (vector<<2) + REG_VBR;
  1289 	REG_PC = m68ki_read_data_32(REG_PC);
  1290 	m68ki_pc_changed(REG_PC);
  1294 /* Branch to a new memory location.
  1295  * The 32-bit branch will call pc_changed if it was enabled in m68kconf.h.
  1296  * So far I've found no problems with not calling pc_changed for 8 or 16
  1297  * bit branches.
  1298  */
  1299 INLINE void m68ki_branch_8(uint offset)
  1301 	REG_PC += MAKE_INT_8(offset);
  1304 INLINE void m68ki_branch_16(uint offset)
  1306 	REG_PC += MAKE_INT_16(offset);
  1309 INLINE void m68ki_branch_32(uint offset)
  1311 	REG_PC += offset;
  1312 	m68ki_pc_changed(REG_PC);
  1317 /* ---------------------------- Status Register --------------------------- */
  1319 /* Set the S flag and change the active stack pointer.
  1320  * Note that value MUST be 4 or 0.
  1321  */
  1322 INLINE void m68ki_set_s_flag(uint value)
  1324 	/* Backup the old stack pointer */
  1325 	REG_SP_BASE[FLAG_S | ((FLAG_S>>1) & FLAG_M)] = REG_SP;
  1326 	/* Set the S flag */
  1327 	FLAG_S = value;
  1328 	/* Set the new stack pointer */
  1329 	REG_SP = REG_SP_BASE[FLAG_S | ((FLAG_S>>1) & FLAG_M)];
  1332 /* Set the S and M flags and change the active stack pointer.
  1333  * Note that value MUST be 0, 2, 4, or 6 (bit2 = S, bit1 = M).
  1334  */
  1335 INLINE void m68ki_set_sm_flag(uint value)
  1337 	/* Backup the old stack pointer */
  1338 	REG_SP_BASE[FLAG_S | ((FLAG_S>>1) & FLAG_M)] = REG_SP;
  1339 	/* Set the S and M flags */
  1340 	FLAG_S = value & SFLAG_SET;
  1341 	FLAG_M = value & MFLAG_SET;
  1342 	/* Set the new stack pointer */
  1343 	REG_SP = REG_SP_BASE[FLAG_S | ((FLAG_S>>1) & FLAG_M)];
  1347 /* Set the condition code register */
  1348 INLINE void m68ki_set_ccr(uint value)
  1350 	FLAG_X = BIT_4(value)  << 4;
  1351 	FLAG_N = BIT_3(value)  << 4;
  1352 	FLAG_Z = !BIT_2(value);
  1353 	FLAG_V = BIT_1(value)  << 6;
  1354 	FLAG_C = BIT_0(value)  << 8;
  1357 /* Set the status register but don't check for interrupts */
  1358 INLINE void m68ki_set_sr_noint(uint value)
  1360 	/* Mask out the "unimplemented" bits */
  1361 	value &= CPU_SR_MASK;
  1363 	/* Now set the status register */
  1364 	FLAG_T1 = BIT_F(value);
  1365 	FLAG_T0 = BIT_E(value);
  1366 	FLAG_INT_MASK = value & 0x0700;
  1367 	m68ki_set_ccr(value);
  1368 	m68ki_set_sm_flag((value >> 11) & 6);
  1371 /* Set the status register and check for interrupts */
  1372 INLINE void m68ki_set_sr(uint value)
  1374 	m68ki_set_sr_noint(value);
  1375 	m68ki_check_interrupts();
  1379 /* ------------------------- Exception Processing ------------------------- */
  1381 /* Initiate exception processing */
  1382 INLINE uint m68ki_init_exception(void)
  1384 	/* Save the old status register */
  1385 	uint sr = m68ki_get_sr();
  1387 	/* Turn off trace flag, clear pending traces */
  1388 	FLAG_T1 = FLAG_T0 = 0;
  1389 	m68ki_clear_trace();
  1390 	/* Enter supervisor mode */
  1391 	m68ki_set_s_flag(SFLAG_SET);
  1393 	return sr;
  1396 /* 3 word stack frame (68000 only) */
  1397 INLINE void m68ki_stack_frame_3word(uint pc, uint sr)
  1399 	m68ki_push_32(pc);
  1400 	m68ki_push_16(sr);
  1403 /* Format 0 stack frame.
  1404  * This is the standard stack frame for 68010+.
  1405  */
  1406 INLINE void m68ki_stack_frame_0000(uint pc, uint sr, uint vector)
  1408 	/* Stack a 3-word frame if we are 68000 */
  1409 	if(CPU_TYPE == CPU_TYPE_000)
  1411 		m68ki_stack_frame_3word(pc, sr);
  1412 		return;
  1414 	m68ki_push_16(vector<<2);
  1415 	m68ki_push_32(pc);
  1416 	m68ki_push_16(sr);
  1419 /* Format 1 stack frame (68020).
  1420  * For 68020, this is the 4 word throwaway frame.
  1421  */
  1422 INLINE void m68ki_stack_frame_0001(uint pc, uint sr, uint vector)
  1424 	m68ki_push_16(0x1000 | (vector<<2));
  1425 	m68ki_push_32(pc);
  1426 	m68ki_push_16(sr);
  1429 /* Format 2 stack frame.
  1430  * This is used only by 68020 for trap exceptions.
  1431  */
  1432 INLINE void m68ki_stack_frame_0010(uint sr, uint vector)
  1434 	m68ki_push_32(REG_PPC);
  1435 	m68ki_push_16(0x2000 | (vector<<2));
  1436 	m68ki_push_32(REG_PC);
  1437 	m68ki_push_16(sr);
  1441 /* Bus error stack frame (68000 only).
  1442  */
  1443 INLINE void m68ki_stack_frame_buserr(uint pc, uint sr, uint address, uint write, uint instruction, uint fc)
  1445 	m68ki_push_32(pc);
  1446 	m68ki_push_16(sr);
  1447 	m68ki_push_16(REG_IR);
  1448 	m68ki_push_32(address);	/* access address */
  1449 	/* 0 0 0 0 0 0 0 0 0 0 0 R/W I/N FC
  1450 	 * R/W  0 = write, 1 = read
  1451 	 * I/N  0 = instruction, 1 = not
  1452 	 * FC   3-bit function code
  1453 	 */
  1454 	m68ki_push_16(((!write)<<4) | ((!instruction)<<3) | fc);
  1457 /* Format 8 stack frame (68010).
  1458  * 68010 only.  This is the 29 word bus/address error frame.
  1459  */
  1460 void m68ki_stack_frame_1000(uint pc, uint sr, uint vector)
  1462 	/* VERSION
  1463 	 * NUMBER
  1464 	 * INTERNAL INFORMATION, 16 WORDS
  1465 	 */
  1466 	m68ki_fake_push_32();
  1467 	m68ki_fake_push_32();
  1468 	m68ki_fake_push_32();
  1469 	m68ki_fake_push_32();
  1470 	m68ki_fake_push_32();
  1471 	m68ki_fake_push_32();
  1472 	m68ki_fake_push_32();
  1473 	m68ki_fake_push_32();
  1475 	/* INSTRUCTION INPUT BUFFER */
  1476 	m68ki_push_16(0);
  1478 	/* UNUSED, RESERVED (not written) */
  1479 	m68ki_fake_push_16();
  1481 	/* DATA INPUT BUFFER */
  1482 	m68ki_push_16(0);
  1484 	/* UNUSED, RESERVED (not written) */
  1485 	m68ki_fake_push_16();
  1487 	/* DATA OUTPUT BUFFER */
  1488 	m68ki_push_16(0);
  1490 	/* UNUSED, RESERVED (not written) */
  1491 	m68ki_fake_push_16();
  1493 	/* FAULT ADDRESS */
  1494 	m68ki_push_32(0);
  1496 	/* SPECIAL STATUS WORD */
  1497 	m68ki_push_16(0);
  1499 	/* 1000, VECTOR OFFSET */
  1500 	m68ki_push_16(0x8000 | (vector<<2));
  1502 	/* PROGRAM COUNTER */
  1503 	m68ki_push_32(pc);
  1505 	/* STATUS REGISTER */
  1506 	m68ki_push_16(sr);
  1509 /* Format A stack frame (short bus fault).
  1510  * This is used only by 68020 for bus fault and address error
  1511  * if the error happens at an instruction boundary.
  1512  * PC stacked is address of next instruction.
  1513  */
  1514 void m68ki_stack_frame_1010(uint sr, uint vector, uint pc)
  1516 	/* INTERNAL REGISTER */
  1517 	m68ki_push_16(0);
  1519 	/* INTERNAL REGISTER */
  1520 	m68ki_push_16(0);
  1522 	/* DATA OUTPUT BUFFER (2 words) */
  1523 	m68ki_push_32(0);
  1525 	/* INTERNAL REGISTER */
  1526 	m68ki_push_16(0);
  1528 	/* INTERNAL REGISTER */
  1529 	m68ki_push_16(0);
  1531 	/* DATA CYCLE FAULT ADDRESS (2 words) */
  1532 	m68ki_push_32(0);
  1534 	/* INSTRUCTION PIPE STAGE B */
  1535 	m68ki_push_16(0);
  1537 	/* INSTRUCTION PIPE STAGE C */
  1538 	m68ki_push_16(0);
  1540 	/* SPECIAL STATUS REGISTER */
  1541 	m68ki_push_16(0);
  1543 	/* INTERNAL REGISTER */
  1544 	m68ki_push_16(0);
  1546 	/* 1010, VECTOR OFFSET */
  1547 	m68ki_push_16(0xa000 | (vector<<2));
  1549 	/* PROGRAM COUNTER */
  1550 	m68ki_push_32(pc);
  1552 	/* STATUS REGISTER */
  1553 	m68ki_push_16(sr);
  1556 /* Format B stack frame (long bus fault).
  1557  * This is used only by 68020 for bus fault and address error
  1558  * if the error happens during instruction execution.
  1559  * PC stacked is address of instruction in progress.
  1560  */
  1561 void m68ki_stack_frame_1011(uint sr, uint vector, uint pc)
  1563 	/* INTERNAL REGISTERS (18 words) */
  1564 	m68ki_push_32(0);
  1565 	m68ki_push_32(0);
  1566 	m68ki_push_32(0);
  1567 	m68ki_push_32(0);
  1568 	m68ki_push_32(0);
  1569 	m68ki_push_32(0);
  1570 	m68ki_push_32(0);
  1571 	m68ki_push_32(0);
  1572 	m68ki_push_32(0);
  1574 	/* VERSION# (4 bits), INTERNAL INFORMATION */
  1575 	m68ki_push_16(0);
  1577 	/* INTERNAL REGISTERS (3 words) */
  1578 	m68ki_push_32(0);
  1579 	m68ki_push_16(0);
  1581 	/* DATA INTPUT BUFFER (2 words) */
  1582 	m68ki_push_32(0);
  1584 	/* INTERNAL REGISTERS (2 words) */
  1585 	m68ki_push_32(0);
  1587 	/* STAGE B ADDRESS (2 words) */
  1588 	m68ki_push_32(0);
  1590 	/* INTERNAL REGISTER (4 words) */
  1591 	m68ki_push_32(0);
  1592 	m68ki_push_32(0);
  1594 	/* DATA OUTPUT BUFFER (2 words) */
  1595 	m68ki_push_32(0);
  1597 	/* INTERNAL REGISTER */
  1598 	m68ki_push_16(0);
  1600 	/* INTERNAL REGISTER */
  1601 	m68ki_push_16(0);
  1603 	/* DATA CYCLE FAULT ADDRESS (2 words) */
  1604 	m68ki_push_32(0);
  1606 	/* INSTRUCTION PIPE STAGE B */
  1607 	m68ki_push_16(0);
  1609 	/* INSTRUCTION PIPE STAGE C */
  1610 	m68ki_push_16(0);
  1612 	/* SPECIAL STATUS REGISTER */
  1613 	m68ki_push_16(0);
  1615 	/* INTERNAL REGISTER */
  1616 	m68ki_push_16(0);
  1618 	/* 1011, VECTOR OFFSET */
  1619 	m68ki_push_16(0xb000 | (vector<<2));
  1621 	/* PROGRAM COUNTER */
  1622 	m68ki_push_32(pc);
  1624 	/* STATUS REGISTER */
  1625 	m68ki_push_16(sr);
  1629 /* Used for Group 2 exceptions.
  1630  * These stack a type 2 frame on the 020.
  1631  */
  1632 INLINE void m68ki_exception_trap(uint vector)
  1634 	uint sr = m68ki_init_exception();
  1636 	if(CPU_TYPE_IS_010_LESS(CPU_TYPE))
  1637 		m68ki_stack_frame_0000(REG_PC, sr, vector);
  1638 	else
  1639 		m68ki_stack_frame_0010(sr, vector);
  1641 	m68ki_jump_vector(vector);
  1643 	/* Use up some clock cycles */
  1644 	USE_CYCLES(CYC_EXCEPTION[vector]);
  1647 /* Trap#n stacks a 0 frame but behaves like group2 otherwise */
  1648 INLINE void m68ki_exception_trapN(uint vector)
  1650 	uint sr = m68ki_init_exception();
  1651 	m68ki_stack_frame_0000(REG_PC, sr, vector);
  1652 	m68ki_jump_vector(vector);
  1654 	/* Use up some clock cycles */
  1655 	USE_CYCLES(CYC_EXCEPTION[vector]);
  1658 /* Exception for trace mode */
  1659 INLINE void m68ki_exception_trace(void)
  1661 	uint sr = m68ki_init_exception();
  1663 	if(CPU_TYPE_IS_010_LESS(CPU_TYPE))
  1664 		m68ki_stack_frame_0000(REG_PC, sr, EXCEPTION_TRACE);
  1665 	else
  1666 		m68ki_stack_frame_0010(sr, EXCEPTION_TRACE);
  1668 	m68ki_jump_vector(EXCEPTION_TRACE);
  1670 	/* Trace nullifies a STOP instruction */
  1671 	CPU_STOPPED &= ~STOP_LEVEL_STOP;
  1673 	/* Use up some clock cycles */
  1674 	USE_CYCLES(CYC_EXCEPTION[EXCEPTION_TRACE]);
  1677 /* Exception for privilege violation */
  1678 INLINE void m68ki_exception_privilege_violation(void)
  1680 	uint sr = m68ki_init_exception();
  1681 	m68ki_stack_frame_0000(REG_PC, sr, EXCEPTION_PRIVILEGE_VIOLATION);
  1682 	m68ki_jump_vector(EXCEPTION_PRIVILEGE_VIOLATION);
  1684 	/* Use up some clock cycles and undo the instruction's cycles */
  1685 	USE_CYCLES(CYC_EXCEPTION[EXCEPTION_PRIVILEGE_VIOLATION] - CYC_INSTRUCTION[REG_IR]);
  1688 /* Exception for bus error */
  1689 INLINE void m68ki_exception_bus_error(void)
  1691 	uint sr = m68ki_init_exception();
  1692 	m68ki_stack_frame_0000(REG_PC, sr, EXCEPTION_BUS_ERROR);
  1693 	m68ki_jump_vector(EXCEPTION_BUS_ERROR);
  1695 	/* Use up some clock cycles and undo the instruction's cycles */
  1696 	USE_CYCLES(CYC_EXCEPTION[EXCEPTION_BUS_ERROR] - CYC_INSTRUCTION[REG_IR]);
  1700 /* Exception for A-Line instructions */
  1701 INLINE void m68ki_exception_1010(void)
  1703 	uint sr;
  1704 #if M68K_LOG_1010_1111 == OPT_ON
  1705 	M68K_DO_LOG_EMU((M68K_LOG_FILEHANDLE "%s at %08x: called 1010 instruction %04x (%s)\n",
  1706 					 m68ki_cpu_names[CPU_TYPE], ADDRESS_68K(REG_PPC), REG_IR,
  1707 					 m68ki_disassemble_quick(ADDRESS_68K(REG_PPC))));
  1708 #endif
  1710 	sr = m68ki_init_exception();
  1711 	m68ki_stack_frame_0000(REG_PC-2, sr, EXCEPTION_1010);
  1712 	m68ki_jump_vector(EXCEPTION_1010);
  1714 	/* Use up some clock cycles and undo the instruction's cycles */
  1715 	USE_CYCLES(CYC_EXCEPTION[EXCEPTION_1010] - CYC_INSTRUCTION[REG_IR]);
  1718 /* Exception for F-Line instructions */
  1719 INLINE void m68ki_exception_1111(void)
  1721 	uint sr;
  1723 #if M68K_LOG_1010_1111 == OPT_ON
  1724 	M68K_DO_LOG_EMU((M68K_LOG_FILEHANDLE "%s at %08x: called 1111 instruction %04x (%s)\n",
  1725 					 m68ki_cpu_names[CPU_TYPE], ADDRESS_68K(REG_PPC), REG_IR,
  1726 					 m68ki_disassemble_quick(ADDRESS_68K(REG_PPC))));
  1727 #endif
  1729 	sr = m68ki_init_exception();
  1730 	m68ki_stack_frame_0000(REG_PC-2, sr, EXCEPTION_1111);
  1731 	m68ki_jump_vector(EXCEPTION_1111);
  1733 	/* Use up some clock cycles and undo the instruction's cycles */
  1734 	USE_CYCLES(CYC_EXCEPTION[EXCEPTION_1111] - CYC_INSTRUCTION[REG_IR]);
  1737 /* Exception for illegal instructions */
  1738 INLINE void m68ki_exception_illegal(void)
  1740 	uint sr;
  1742 	M68K_DO_LOG((M68K_LOG_FILEHANDLE "%s at %08x: illegal instruction %04x (%s)\n",
  1743 				 m68ki_cpu_names[CPU_TYPE], ADDRESS_68K(REG_PPC), REG_IR,
  1744 				 m68ki_disassemble_quick(ADDRESS_68K(REG_PPC))));
  1746 	sr = m68ki_init_exception();
  1747 	m68ki_stack_frame_0000(REG_PC, sr, EXCEPTION_ILLEGAL_INSTRUCTION);
  1748 	m68ki_jump_vector(EXCEPTION_ILLEGAL_INSTRUCTION);
  1750 	/* Use up some clock cycles and undo the instruction's cycles */
  1751 	USE_CYCLES(CYC_EXCEPTION[EXCEPTION_ILLEGAL_INSTRUCTION] - CYC_INSTRUCTION[REG_IR]);
  1754 /* Exception for format errror in RTE */
  1755 INLINE void m68ki_exception_format_error(void)
  1757 	uint sr = m68ki_init_exception();
  1758 	m68ki_stack_frame_0000(REG_PC, sr, EXCEPTION_FORMAT_ERROR);
  1759 	m68ki_jump_vector(EXCEPTION_FORMAT_ERROR);
  1761 	/* Use up some clock cycles and undo the instruction's cycles */
  1762 	USE_CYCLES(CYC_EXCEPTION[EXCEPTION_FORMAT_ERROR] - CYC_INSTRUCTION[REG_IR]);
  1765 /* Exception for address error */
  1766 INLINE void m68ki_exception_address_error(void)
  1768 	/* Not emulated yet */
  1772 /* Service an interrupt request and start exception processing */
  1773 void m68ki_exception_interrupt(uint int_level)
  1775 	uint vector;
  1776 	uint sr;
  1777 	uint new_pc;
  1779 	/* Turn off the stopped state */
  1780 	CPU_STOPPED &= ~STOP_LEVEL_STOP;
  1782 	/* If we are halted, don't do anything */
  1783 	if(CPU_STOPPED)
  1784 		return;
  1786 	/* Acknowledge the interrupt */
  1787 	vector = m68ki_int_ack(int_level);
  1789 	/* Get the interrupt vector */
  1790 	if(vector == M68K_INT_ACK_AUTOVECTOR)
  1791 		/* Use the autovectors.  This is the most commonly used implementation */
  1792 		vector = EXCEPTION_INTERRUPT_AUTOVECTOR+int_level;
  1793 	else if(vector == M68K_INT_ACK_SPURIOUS)
  1794 		/* Called if no devices respond to the interrupt acknowledge */
  1795 		vector = EXCEPTION_SPURIOUS_INTERRUPT;
  1796 	else if(vector > 255)
  1798 		M68K_DO_LOG_EMU((M68K_LOG_FILEHANDLE "%s at %08x: Interrupt acknowledge returned invalid vector $%x\n",
  1799 				 m68ki_cpu_names[CPU_TYPE], ADDRESS_68K(REG_PC), vector));
  1800 		return;
  1803 	/* Start exception processing */
  1804 	sr = m68ki_init_exception();
  1806 	/* Set the interrupt mask to the level of the one being serviced */
  1807 	FLAG_INT_MASK = int_level<<8;
  1809 	/* Get the new PC */
  1810 	new_pc = m68ki_read_data_32((vector<<2) + REG_VBR);
  1812 	/* If vector is uninitialized, call the uninitialized interrupt vector */
  1813 	if(new_pc == 0)
  1814 		new_pc = m68ki_read_data_32((EXCEPTION_UNINITIALIZED_INTERRUPT<<2) + REG_VBR);
  1816 	/* Generate a stack frame */
  1817 	m68ki_stack_frame_0000(REG_PC, sr, vector);
  1818 	if(FLAG_M && CPU_TYPE_IS_EC020_PLUS(CPU_TYPE))
  1820 		/* Create throwaway frame */
  1821 		m68ki_set_sm_flag(FLAG_S);	/* clear M */
  1822 		sr |= 0x2000; /* Same as SR in master stack frame except S is forced high */
  1823 		m68ki_stack_frame_0001(REG_PC, sr, vector);
  1826 	m68ki_jump(new_pc);
  1828 	/* Defer cycle counting until later */
  1829 	CPU_INT_CYCLES += CYC_EXCEPTION[vector];
  1831 #if !M68K_EMULATE_INT_ACK
  1832 	/* Automatically clear IRQ if we are not using an acknowledge scheme */
  1833 	CPU_INT_LEVEL = 0;
  1834 #endif /* M68K_EMULATE_INT_ACK */
  1838 /* ASG: Check for interrupts */
  1839 INLINE void m68ki_check_interrupts(void)
  1841 	if(CPU_INT_LEVEL > FLAG_INT_MASK)
  1842 		m68ki_exception_interrupt(CPU_INT_LEVEL>>8);
  1847 /* ======================================================================== */
  1848 /* ============================== END OF FILE ============================= */
  1849 /* ======================================================================== */
  1851 #endif /* M68KCPU__HEADER */