mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 02:15:07 +01:00
f2a7b4cb8a
--------------- * added support for CUE files * added CD-DA tracks emulation (needs CUE+BIN or ISO+WAV images) * added CD fader emulation * added CDD "Fast FW" & "Fast RW" commands emulation * improved CDD TOC emulation (random freezes in Sonic CD, Switch/Panic, Final Fight CD and probably many others) * improved PCM chip synchronization with SUB-CPU (missing speeches in Willy Beamish) * fixed PCM chip emulation (random hangs in Snatcher, missing sound effects in Switch/Panic, Final Fight CD, Wonderdog...) * fixed Word-RAM memory mode on soft-reset (missing logo gfx effects) * fixed SUB-CPU access to unused areas when using PC-relative instructions (Final Fight CD first boss random crash) * fixed CPU idle loop detection on memory mode register access (Pugsy CD first boss slowdown) * fixed Mode 1 emulation (cartridge boot mode) [Core/Sound] --------------- * replaced FIR resampler by Blip Buffer for FM resampling * modified SN76489 core for use of Blip Buffer * improved PSG & FM chips synchronization using Blip Buffer * added Game Gear PSG stereo support * fixed SG-1000 specific PSG noise * fixed YM2612 LFO AM waveform (California Games surfing event) * fixed YM2612 phase precision * minor optimizations to YM2612 core [Core/Game Gear] --------------- * added support for CJ Elephant Fugitive (recently released by SMS Power) * added Game Gear extended screen option [Core/Genesis] --------------- * added support for a few recently dumped (but unreleased) games [Core/General] --------------- * improved ROM & CD image file loading * various code cleanup [Gamecube/Wii] --------------- * added automatic disc swap feature * removed automatic frameskipping (no use) * improved general audio/video sync * various code cleanup & bugfixes
89 lines
2.4 KiB
C
89 lines
2.4 KiB
C
/*************************************************/
|
|
/* port specific stuff should be put there */
|
|
/*************************************************/
|
|
|
|
#ifndef _OSD_H_
|
|
#define _OSD_H_
|
|
|
|
#include <gccore.h>
|
|
#include <ogcsys.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <malloc.h>
|
|
#include <sys/dir.h>
|
|
#include <unistd.h>
|
|
#include <asndlib.h>
|
|
#include <oggplayer.h>
|
|
#include <zlib.h>
|
|
|
|
#ifdef HW_RVL
|
|
#include <di/di.h>
|
|
#include <wiiuse/wpad.h>
|
|
#include "vi_encoder.h"
|
|
#endif
|
|
|
|
#include "gx_input.h"
|
|
#include "gx_audio.h"
|
|
#include "gx_video.h"
|
|
#include "file_load.h"
|
|
#include "cheats.h"
|
|
|
|
/*************************************************/
|
|
/* required by Genesis Plus GX core */
|
|
/*************************************************/
|
|
|
|
#include "config.h"
|
|
#include "fileio.h"
|
|
|
|
#define DEFAULT_PATH "/genplus"
|
|
#define GG_ROM "/genplus/lock-on/ggenie.bin"
|
|
#define AR_ROM "/genplus/lock-on/areplay.bin"
|
|
#define SK_ROM "/genplus/lock-on/sk.bin"
|
|
#define SK_UPMEM "/genplus/lock-on/sk2chip.bin"
|
|
#define MS_BIOS_US "/genplus/bios/bios_U.sms"
|
|
#define MS_BIOS_EU "/genplus/bios/bios_E.sms"
|
|
#define MS_BIOS_JP "/genplus/bios/bios_J.sms"
|
|
#define GG_BIOS "/genplus/bios/bios.gg"
|
|
#define MD_BIOS "/genplus/bios/bios_MD.bin"
|
|
#define CD_BIOS_US "/genplus/bios/bios_CD_U.bin"
|
|
#define CD_BIOS_EU "/genplus/bios/bios_CD_E.bin"
|
|
#define CD_BIOS_JP "/genplus/bios/bios_CD_J.bin"
|
|
#define CD_BRAM_US "/genplus/saves/cd/scd_U.brm"
|
|
#define CD_BRAM_EU "/genplus/saves/cd/scd_E.brm"
|
|
#define CD_BRAM_JP "/genplus/saves/cd/scd_J.brm"
|
|
#define CART_BRAM "/genplus/saves/cd/cart.brm"
|
|
|
|
#define ALIGN_SND 0xfffffff8 /* 32 bytes aligned sound buffers (8 samples alignment) */
|
|
|
|
/*************************************************/
|
|
|
|
#ifdef HW_RVL
|
|
#define VERSION "Genesis Plus GX 1.7.1 (WII)"
|
|
#else
|
|
#define VERSION "Genesis Plus GX 1.7.1 (GCN)"
|
|
#endif
|
|
|
|
#define NO_SYNC 0
|
|
#define SYNC_VIDEO 1
|
|
#define SYNC_AUDIO 2
|
|
|
|
/* globals */
|
|
extern void legal(void);
|
|
extern double get_framerate(void);
|
|
extern void reloadrom(void);
|
|
extern void shutdown(void);
|
|
extern u32 Shutdown;
|
|
extern u32 ConfigRequested;
|
|
|
|
#ifdef LOG_TIMING
|
|
#include <ogc/lwp_watchdog.h>
|
|
#define LOGSIZE 2000
|
|
extern u64 prevtime;
|
|
extern u32 frame_cnt;
|
|
extern u32 delta_time[LOGSIZE];
|
|
extern u32 delta_samp[LOGSIZE];
|
|
#endif
|
|
|
|
#endif /* _OSD_H_ */
|