mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-26 18:30:26 +00:00
Cleanups
This commit is contained in:
parent
3cbd1dbe0d
commit
3537b45f0b
@ -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
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include "cpu.h"
|
||||
|
||||
#include "../state_helpers.h"
|
||||
#include "../math_ops.h"
|
||||
#include "../mednafen-endian.h"
|
||||
|
||||
// iCB: PGXP STUFF
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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);
|
||||
|
@ -57,6 +57,7 @@
|
||||
#include "mdec.h"
|
||||
|
||||
#include "../masmem.h"
|
||||
#include "../math_ops.h"
|
||||
#include "../state_helpers.h"
|
||||
|
||||
#include "FastFIFO.h"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user