This commit is contained in:
twinaphex 2020-09-16 20:19:03 +02:00
parent 3cbd1dbe0d
commit 3537b45f0b
9 changed files with 19 additions and 6 deletions

View File

@ -1,6 +1,10 @@
#ifndef __MDFN_PSX_MASMEM_H
#define __MDFN_PSX_MASMEM_H
#include <retro_inline.h>
#include "mednafen-types.h"
// TODO, WIP (big-endian stores and loads not fully supported yet)
#ifdef MSB_FIRST

View File

@ -25,6 +25,7 @@
#include "cpu.h"
#include "../state_helpers.h"
#include "../math_ops.h"
#include "../mednafen-endian.h"
// iCB: PGXP STUFF

View File

@ -17,7 +17,9 @@
#include "psx.h"
#include "frontio.h"
#include <compat/msvc.h>
#include <streams/file_stream.h>
#include "../state_helpers.h"
#include "../video/surface.h"

View File

@ -17,9 +17,10 @@
#include "psx.h"
#include "timer.h"
#include "../../rsx/rsx_intf.h"
#include "../math_ops.h"
#include "../state_helpers.h"
#include "../../rsx/rsx_intf.h"
#include "../pgxp/pgxp_main.h"
#include "../pgxp/pgxp_gpu.h"

View File

@ -10,6 +10,8 @@
#include <math.h>
#include "FastFIFO.h"
#include "../git.h"
#if defined(HAVE_OPENGL) || defined(HAVE_OPENGLES)
#include <glsm/glsmsym.h>
#endif

View File

@ -23,6 +23,7 @@
#include "psx.h"
#include "gte.h"
#include "../math_ops.h"
#include "../state_helpers.h"
#include "../pgxp/pgxp_gte.h"
#include "../pgxp/pgxp_main.h"

View File

@ -1,6 +1,8 @@
#ifndef __MDFN_PSX_GTE_H
#define __MDFN_PSX_GTE_H
#include "../state.h"
void GTE_Init(void);
void GTE_Power(void);
int GTE_StateAction(StateMem *sm, int load, int data_only);

View File

@ -57,6 +57,7 @@
#include "mdec.h"
#include "../masmem.h"
#include "../math_ops.h"
#include "../state_helpers.h"
#include "FastFIFO.h"

View File

@ -1,12 +1,11 @@
#ifndef __MDFN_PSX_PSX_H
#define __MDFN_PSX_PSX_H
#include "../mednafen.h"
#include "../masmem.h"
#include <stdint.h>
#include "../cdrom/cdromif.h"
#include "../general.h"
#include "../FileStream.h"
#include "../masmem.h"
#include "../mednafen-types.h"
#include "../video/surface.h"
// Comment out these 2 defines for extra speeeeed.
#define PSX_DBGPRINT_ENABLE 1