mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 02:15:07 +01:00
cab4ecba99
* added an option to set VDP mode (PAL/NTSC) independently from console region. * added an option to select console master clock frequency (PAL/NTSC/AUTO): emulation now run at selected frequency when VSYNC is disabled. * added an option to force VSYNC disabled. * improved screen scaling. [Core] * moved INLINE definition to macros.h * removed unused typedef from osd_cpu.h * cleanup include files
129 lines
5.1 KiB
C
129 lines
5.1 KiB
C
/* ======================================================================== */
|
|
/* ========================= LICENSING & COPYRIGHT ======================== */
|
|
/* ======================================================================== */
|
|
/*
|
|
* MUSASHI
|
|
* Version 3.32
|
|
*
|
|
* A portable Motorola M680x0 processor emulation engine.
|
|
* Copyright Karl Stenerud. All rights reserved.
|
|
*
|
|
* This code may be freely used for non-commercial purposes as long as this
|
|
* copyright notice remains unaltered in the source code and any binary files
|
|
* containing this code in compiled form.
|
|
*
|
|
* All other licensing terms must be negotiated with the author
|
|
* (Karl Stenerud).
|
|
*
|
|
* The latest version of this code can be obtained at:
|
|
* http://kstenerud.cjb.net
|
|
*/
|
|
|
|
/* Modified by Eke-Eke for Genesis Plus GX:
|
|
|
|
- removed unused stuff to reduce memory usage / optimize execution (multiple CPU types support, NMI support, ...)
|
|
- moved stuff to compile statically in a single object file
|
|
- implemented support for global cycle count (shared by 68k & Z80 CPU)
|
|
- added support for interrupt latency (Sesame's Street Counting Cafe, Fatal Rewind)
|
|
- added proper cycle use on reset
|
|
- added cycle accurate timings for MUL/DIV instructions (thanks to Jorge Cwik !)
|
|
- fixed undocumented flags for DIV instructions (Blood Shot)
|
|
|
|
*/
|
|
|
|
|
|
#ifndef M68KCONF__HEADER
|
|
#define M68KCONF__HEADER
|
|
|
|
|
|
/* Configuration switches.
|
|
* Use OPT_SPECIFY_HANDLER for configuration options that allow callbacks.
|
|
* OPT_SPECIFY_HANDLER causes the core to link directly to the function
|
|
* or macro you specify, rather than using callback functions whose pointer
|
|
* must be passed in using m68k_set_xxx_callback().
|
|
*/
|
|
#define OPT_OFF 0
|
|
#define OPT_ON 1
|
|
#define OPT_SPECIFY_HANDLER 2
|
|
|
|
/* ======================================================================== */
|
|
/* ============================= CONFIGURATION ============================ */
|
|
/* ======================================================================== */
|
|
|
|
/* If ON, the CPU will call m68k_write_32_pd() when it executes move.l with a
|
|
* predecrement destination EA mode instead of m68k_write_32().
|
|
* To simulate real 68k behavior, m68k_write_32_pd() must first write the high
|
|
* word to [address+2], and then write the low word to [address].
|
|
*/
|
|
#define M68K_SIMULATE_PD_WRITES OPT_OFF
|
|
|
|
/* If ON, CPU will call the interrupt acknowledge callback when it services an
|
|
* interrupt.
|
|
* If off, all interrupts will be autovectored and all interrupt requests will
|
|
* auto-clear when the interrupt is serviced.
|
|
*/
|
|
#define M68K_EMULATE_INT_ACK OPT_SPECIFY_HANDLER
|
|
#define M68K_INT_ACK_CALLBACK(A) vdp_68k_irq_ack(A)
|
|
|
|
/* If ON, CPU will call the output reset callback when it encounters a reset
|
|
* instruction.
|
|
*/
|
|
#define M68K_EMULATE_RESET OPT_OFF
|
|
#define M68K_RESET_CALLBACK() your_reset_handler_function()
|
|
|
|
/* If ON, CPU will call the callback when it encounters a tas
|
|
* instruction.
|
|
*/
|
|
#define M68K_TAS_HAS_CALLBACK OPT_OFF
|
|
#define M68K_TAS_CALLBACK() your_tas_handler_function()
|
|
|
|
/* If ON, CPU will call the set fc callback on every memory access to
|
|
* differentiate between user/supervisor, program/data access like a real
|
|
* 68000 would. This should be enabled and the callback should be set if you
|
|
* want to properly emulate the m68010 or higher. (moves uses function codes
|
|
* to read/write data from different address spaces)
|
|
*/
|
|
#define M68K_EMULATE_FC OPT_OFF
|
|
#define M68K_SET_FC_CALLBACK(A) your_set_fc_handler_function(A)
|
|
|
|
/* If ON, the CPU will monitor the trace flags and take trace exceptions
|
|
*/
|
|
#define M68K_EMULATE_TRACE OPT_OFF
|
|
|
|
/* If ON, the CPU will emulate the 4-byte prefetch queue of a real 68000 */
|
|
#define M68K_EMULATE_PREFETCH OPT_OFF
|
|
|
|
/* If ON, the CPU will generate address error exceptions if it tries to
|
|
* access a word or longword at an odd address.
|
|
* NOTE: This is only emulated properly for 68000 mode.
|
|
*/
|
|
#define M68K_EMULATE_ADDRESS_ERROR OPT_ON
|
|
|
|
/* If ON and previous option is also ON, address error exceptions will
|
|
also be checked when fetching instructions. Disabling this can help
|
|
speeding up emulation while still emulating address error exceptions
|
|
on other memory access if needed.
|
|
* NOTE: This is only emulated properly for 68000 mode.
|
|
*/
|
|
#define M68K_CHECK_PC_ADDRESS_ERROR OPT_OFF
|
|
|
|
|
|
/* ----------------------------- COMPATIBILITY ---------------------------- */
|
|
|
|
/* The following options set optimizations that violate the current ANSI
|
|
* standard, but will be compliant under the forthcoming C9X standard.
|
|
*/
|
|
|
|
|
|
/* If ON, the enulation core will use 64-bit integers to speed up some
|
|
* operations.
|
|
*/
|
|
#define M68K_USE_64_BIT OPT_OFF
|
|
|
|
|
|
/* ======================================================================== */
|
|
/* ============================== END OF FILE ============================= */
|
|
/* ======================================================================== */
|
|
|
|
#endif /* M68KCONF__HEADER */
|