mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 10:25:07 +01:00
28775cc3aa
---------- * added Mega CD / Sega CD hardware emulation (incl. Sub 68K, CDD, CDC, PCM, GFX rotation/scaling, etc) * added .ISO & .BIN CD image file support * added 512K backup cartridge RAM support * added savestate support for CD games NOTES: ~~~~~~ * to play CD games, original BIOS ROM files are required in /genplus/bios/ directory: unzip & rename them to bios_CD_U.bin, bios_CD_E.bin, bios_CD_J.bin * CD audio tracks (CD-DA) are not supported (yet) [Core/CPU] ---------- * modified 68k core for Mega CD / Sega CD support [Core/VDP] --------------- * improved DMA accuracy * added support for 8-bit VRAM writes with undocumented code value (verified on real hardware by Nemesis) [Gamecube/Wii] --------------- * modified Master System & Game Gear "BIOS" support (files should be named bios_U.sms, bios_J.sms, bios_E.sms & bios.gg and copied to /genplus/bios directory). * replaced "Hard Reset" button by a Soft Reset for systems having a Reset button (Mega Drive / Genesis & Master System) * State & SRAM files are now only compressed when saving to Gamecube Memory Cards * various fixes & cleanup. [Core/SCD] ---------- * added Mega CD / Sega CD hardware emulation (incl. Sub 68K, CDD, CDC, PCM, GFX rotation/scaling, etc) * added .ISO & .BIN CD image file support * added 512K backup cartridge RAM support * added savestate support for CD games NOTES: ~~~~~~ * to play CD games, original BIOS ROM files are required in /genplus/bios/ directory: unzip & rename them to bios_CD_U.bin, bios_CD_E.bin, bios_CD_J.bin * CD audio tracks (CD-DA) are not supported (yet) [Core/CPU] ---------- * modified 68k core for Mega CD / Sega CD support [Core/VDP] --------------- * improved DMA accuracy * added support for 8-bit VRAM writes with undocumented code value (verified on real hardware by Nemesis) [Gamecube/Wii] --------------- * modified Master System & Game Gear "BIOS" support (files should be named bios_U.sms, bios_J.sms, bios_E.sms & bios.gg and copied to /genplus/bios directory). * replaced "Hard Reset" button by a Soft Reset for systems having a Reset button (Mega Drive / Genesis & Master System) * State & SRAM files are now only compressed when saving to Gamecube Memory Cards * various fixes & cleanup.
94 lines
3.7 KiB
C
94 lines
3.7 KiB
C
#ifndef M68KCONF__HEADER
|
|
#define M68KCONF__HEADER
|
|
|
|
/* ======================================================================== */
|
|
/* ======================== MAIN 68K CONFIGURATION ======================== */
|
|
/* ======================================================================== */
|
|
|
|
/* 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
|
|
|
|
/* 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 */
|