mirror of https://github.com/PCSX2/pcsx2.git
Remove IopCommon.h added proper includes to files. Removing circle includes in several files that sometimes was several layers deep
This commit is contained in:
parent
e5f90f176c
commit
fdabc82342
|
@ -15,7 +15,6 @@
|
|||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "AsyncFileReader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "IsoFileFormats.h"
|
||||
#include "common/FileSystem.h"
|
||||
|
||||
|
|
|
@ -14,7 +14,10 @@
|
|||
*/
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopDma.h"
|
||||
|
||||
#include <memory>
|
||||
#include <ctype.h>
|
||||
|
@ -433,7 +436,6 @@ static __fi void _reloadElfInfo(wxString elfpath)
|
|||
// binary).
|
||||
}
|
||||
|
||||
|
||||
static __fi void _reloadPSXElfInfo(wxString elfpath)
|
||||
{
|
||||
// Now's a good time to reload the ELF info...
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#pragma once
|
||||
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "CDVDaccess.h"
|
||||
|
||||
#define btoi(b) ((b) / 16 * 10 + (b) % 16) /* BCD to u_char */
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
|
||||
#define ENABLE_TIMESTAMPS
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "CDVDdiscReader.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
#include <condition_variable>
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
#ifndef __CDVD_DISC_READER_H__
|
||||
#define __CDVD_DISC_READER_H__
|
||||
|
||||
#include "IopCommon.h"
|
||||
|
||||
#if defined(_WIN32)
|
||||
#define NOMINMAX
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "CDVDdiscReader.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
#include <atomic>
|
||||
#include <condition_variable>
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
#include "CDVDisoReader.h"
|
||||
#include "AsyncFileReader.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
#include <cstring>
|
||||
#include <array>
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "IsoFileFormats.h"
|
||||
|
||||
#endif
|
||||
|
|
|
@ -14,10 +14,13 @@
|
|||
*/
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
|
||||
#include "CdRom.h"
|
||||
#include "CDVD.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopDma.h"
|
||||
|
||||
//THIS ALL IS FOR THE CDROM REGISTERS HANDLING
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
#ifndef __CDROM_H__
|
||||
#define __CDROM_H__
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "CDVDaccess.h"
|
||||
|
||||
// Not used.
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "IsoFileFormats.h"
|
||||
|
||||
#include <errno.h>
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "CDVD/CDVDdiscReader.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
#ifdef __linux__
|
||||
#include <linux/cdrom.h>
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "IsoFileFormats.h"
|
||||
#include "common/FileSystem.h"
|
||||
#include "common/StringUtil.h"
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "CDVD/CDVDdiscReader.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
#include <winioctl.h>
|
||||
#include <ntddcdvd.h>
|
||||
|
|
|
@ -213,7 +213,6 @@ set(pcsx2Headers
|
|||
HostDisplay.h
|
||||
Hw.h
|
||||
IopBios.h
|
||||
IopCommon.h
|
||||
IopCounters.h
|
||||
IopDma.h
|
||||
IopGte.h
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
*/
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "Common.h"
|
||||
|
||||
#include "Counters.h"
|
||||
#include "iCore.h"
|
||||
|
|
|
@ -14,7 +14,8 @@
|
|||
*/
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "IopDma.h"
|
||||
#include "R3000A.h"
|
||||
#include <stdlib.h>
|
||||
#include <string>
|
||||
using namespace std;
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
#include "newVif.h"
|
||||
#include "IPU/IPUdma.h"
|
||||
#include "Gif_Unit.h"
|
||||
#include "IopCommon.h"
|
||||
#include "SPU2/spu2.h"
|
||||
|
||||
using namespace R5900;
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include "PrecompiledHeader.h"
|
||||
#include "Common.h"
|
||||
#include "Hardware.h"
|
||||
#include "IopCommon.h"
|
||||
#include "IopHw.h"
|
||||
#include "ps2/HwInternal.h"
|
||||
#include "ps2/eeHwTraceLog.inl"
|
||||
|
||||
|
|
|
@ -18,7 +18,8 @@
|
|||
#include "Common.h"
|
||||
#include "Hardware.h"
|
||||
#include "Gif_Unit.h"
|
||||
#include "IopCommon.h"
|
||||
#include "IopMem.h"
|
||||
|
||||
#include "ps2/HwInternal.h"
|
||||
#include "ps2/eeHwTraceLog.inl"
|
||||
|
||||
|
@ -26,6 +27,9 @@
|
|||
#include "SPU2/spu2.h"
|
||||
#include "R3000A.h"
|
||||
|
||||
#include "CDVD/CdRom.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
using namespace R5900;
|
||||
|
||||
// Shift the middle 8 bits (bits 4-12) into the lower 8 bits.
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
|
||||
#include "IPU_Fifo.h"
|
||||
#include "IPUdma.h"
|
||||
#include "Common.h"
|
||||
|
||||
#define ipumsk( src ) ( (src) & 0xff )
|
||||
#define ipucase( src ) case ipumsk(src)
|
||||
|
|
|
@ -15,8 +15,11 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
#include "R5900.h" // for g_GameStarted
|
||||
#include "IopBios.h"
|
||||
#include "IopMem.h"
|
||||
|
||||
#include <ctype.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
/* PCSX2 - PS2 Emulator for PCs
|
||||
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
||||
*
|
||||
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
||||
* of the GNU Lesser General Public License as published by the Free Software Found-
|
||||
* ation, either version 3 of the License, or (at your option) any later version.
|
||||
*
|
||||
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
* PURPOSE. See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with PCSX2.
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
|
||||
#include "CDVD/CDVD.h"
|
||||
#include "CDVD/CdRom.h"
|
||||
|
||||
#include "IopDma.h"
|
||||
#include "IopMem.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopBios.h"
|
||||
#include "IopCounters.h"
|
||||
#include "IopSio2.h"
|
||||
#include "IopGte.h"
|
||||
//#define PSXCLK 9216000 /* 36.864 Mhz */
|
||||
//#define PSXCLK 186864000 /* 36.864 Mhz */
|
||||
|
||||
// Uncomment to make pcsx2 print each spu2 interrupt it receives
|
||||
//#define SPU2IRQTEST
|
||||
|
|
@ -19,10 +19,14 @@
|
|||
// The EventText function will pick it up.
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
#include "SPU2/spu2.h"
|
||||
#include "DEV9/DEV9.h"
|
||||
#include "USB/USB.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopDma.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
|
|
|
@ -14,8 +14,12 @@
|
|||
*/
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
#include "SPU2/spu2.h"
|
||||
#include "IopCounters.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopDma.h"
|
||||
|
||||
#include "Sif.h"
|
||||
#include "DEV9/DEV9.h"
|
||||
|
|
|
@ -18,8 +18,9 @@
|
|||
//#include <stdlib.h>
|
||||
//#include <math.h>
|
||||
#include "IopGte.h"
|
||||
//#include "R3000A.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "IopMem.h"
|
||||
|
||||
#include "common/MathUtils.h"
|
||||
#ifdef GTE_DUMP
|
||||
#define G_OP(name,delay) fprintf(gteLog, "* : %08X : %02d : %s\n", psxRegs.code, delay, name);
|
||||
|
|
|
@ -15,11 +15,19 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
|
||||
#include "iR5900.h"
|
||||
#include "Sio.h"
|
||||
#include "Mdec.h"
|
||||
#include "IopSio2.h"
|
||||
#include "IopCounters.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopDma.h"
|
||||
#include "CDVD/CdRom.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
|
||||
// NOTE: Any modifications to read/write fns should also go into their const counterparts
|
||||
// found in iPsxHw.cpp.
|
||||
|
|
|
@ -14,9 +14,12 @@
|
|||
*/
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "DEV9/DEV9.h"
|
||||
#include "USB/USB.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopDma.h"
|
||||
#include "Common.h"
|
||||
#include "R3000A.h"
|
||||
|
||||
using namespace R3000A;
|
||||
|
||||
|
|
|
@ -15,10 +15,12 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
#include "ps2/pgif.h" // for PSX kernel TTY in iopMemWrite32
|
||||
#include "SPU2/spu2.h"
|
||||
#include "DEV9/DEV9.h"
|
||||
#include "IopHw.h"
|
||||
|
||||
uptr *psxMemWLUT = NULL;
|
||||
const uptr *psxMemRLUT = NULL;
|
||||
|
|
|
@ -15,10 +15,13 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "Common.h"
|
||||
|
||||
#include "Sio.h"
|
||||
#include "sio_internal.h"
|
||||
#include "IopSio2.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopDma.h"
|
||||
|
||||
sio2Struct sio2;
|
||||
|
||||
|
|
|
@ -22,9 +22,10 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "Common.h"
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "Mdec.h"
|
||||
#include "IopHw.h"
|
||||
|
||||
struct {
|
||||
u32 command;
|
||||
|
|
|
@ -37,7 +37,7 @@ BIOS
|
|||
#include "PrecompiledHeader.h"
|
||||
#include <wx/file.h>
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "IopHw.h"
|
||||
#include "GS.h"
|
||||
#include "VUmicro.h"
|
||||
#include "MTVU.h"
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
#define _PC_ // disables MIPS opcode macros.
|
||||
|
||||
#include "common/StringUtil.h"
|
||||
#include "IopCommon.h"
|
||||
#include "Patch.h"
|
||||
#include "Config.h"
|
||||
|
||||
|
|
|
@ -17,8 +17,9 @@
|
|||
|
||||
#define _PC_ // disables MIPS opcode macros.
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "Common.h"
|
||||
#include "Patch.h"
|
||||
#include "IopMem.h"
|
||||
|
||||
u32 SkipCount = 0, IterationCount = 0;
|
||||
u32 IterationIncrement = 0, ValueIncrement = 0;
|
||||
|
|
|
@ -15,12 +15,20 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
|
||||
#include "Sio.h"
|
||||
#include "Sif.h"
|
||||
#include "DebugTools/Breakpoints.h"
|
||||
#include "R5900OpcodeTables.h"
|
||||
#include "IopSio2.h"
|
||||
#include "IopCounters.h"
|
||||
#include "IopBios.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopDma.h"
|
||||
#include "CDVD/CdRom.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
using namespace R3000A;
|
||||
|
||||
|
|
|
@ -15,12 +15,15 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
#include "Config.h"
|
||||
#include "System/SysThreads.h"
|
||||
|
||||
#include "R5900OpcodeTables.h"
|
||||
#include "DebugTools/Breakpoints.h"
|
||||
#include "IopBios.h"
|
||||
#include "IopHw.h"
|
||||
|
||||
using namespace R3000A;
|
||||
|
||||
|
|
|
@ -15,7 +15,9 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "IopGte.h"
|
||||
#include "IopMem.h"
|
||||
|
||||
// Note: Branch instructions of the Interpreter are defined externally because
|
||||
// the recompiler shouldn't be using them (it isn't entirely safe, due to the
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
|
||||
#include "PrecompiledHeader.h"
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "VUmicro.h"
|
||||
#include "deci2.h"
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
|
||||
#include "PrecompiledHeader.h"
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "IopBios2.h"
|
||||
#include "deci2.h"
|
||||
|
||||
|
|
|
@ -16,7 +16,8 @@
|
|||
#include "PrecompiledHeader.h"
|
||||
#include "Global.h"
|
||||
#include "Dma.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "IopHw.h"
|
||||
|
||||
#include "spu2.h" // temporary until I resolve cyclePtr/TimeUpdate dependencies.
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
|
||||
#include "common/Threading.h"
|
||||
#include "SaveState.h"
|
||||
#include "IopCounters.h"
|
||||
|
||||
extern Threading::MutexRecursive mtx_SPU2Status;
|
||||
|
||||
|
|
|
@ -24,7 +24,9 @@
|
|||
#include "Global.h"
|
||||
#include "Dma.h"
|
||||
#include "IopDma.h"
|
||||
#include "IopCommon.h"
|
||||
#include "IopCounters.h"
|
||||
#include "R3000A.h"
|
||||
#include "IopHw.h"
|
||||
|
||||
#include "spu2.h" // needed until I figure out a nice solution for irqcallback dependencies.
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "SaveState.h"
|
||||
|
||||
#include "ps2/BiosTools.h"
|
||||
|
@ -24,6 +24,7 @@
|
|||
#include "MTVU.h"
|
||||
#include "Cache.h"
|
||||
#include "Config.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
#include "Elfheader.h"
|
||||
#include "Counters.h"
|
||||
|
|
|
@ -17,7 +17,8 @@
|
|||
|
||||
#define _PC_ // disables MIPS opcode macros.
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
#include "Sif.h"
|
||||
|
||||
void sifReset()
|
||||
|
|
|
@ -17,8 +17,10 @@
|
|||
|
||||
#define _PC_ // disables MIPS opcode macros.
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
#include "Sif.h"
|
||||
#include "IopHw.h"
|
||||
|
||||
_sif sif0;
|
||||
|
||||
|
|
|
@ -17,8 +17,10 @@
|
|||
|
||||
#define _PC_ // disables MIPS opcode macros.
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
#include "Sif.h"
|
||||
#include "IopHw.h"
|
||||
|
||||
_sif sif1;
|
||||
|
||||
|
|
|
@ -14,7 +14,9 @@
|
|||
*/
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopDma.h"
|
||||
|
||||
#include "Common.h"
|
||||
#include "Sio.h"
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "Common.h"
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "VUmicro.h"
|
||||
#include "newVif.h"
|
||||
#include "MTVU.h"
|
||||
|
@ -26,6 +26,7 @@
|
|||
|
||||
#include "common/MemsetFast.inl"
|
||||
#include "common/Perf.h"
|
||||
#include "CDVD/CDVD.h"
|
||||
|
||||
#ifdef PCSX2_CORE
|
||||
#include "GSDumpReplayer.h"
|
||||
|
|
|
@ -1001,7 +1001,6 @@
|
|||
<ClInclude Include="Common.h" />
|
||||
<ClInclude Include="Config.h" />
|
||||
<ClInclude Include="Dump.h" />
|
||||
<ClInclude Include="IopCommon.h" />
|
||||
<ClInclude Include="SaveState.h" />
|
||||
<ClInclude Include="SingleRegisterTypes.h" />
|
||||
<ClInclude Include="System.h" />
|
||||
|
|
|
@ -1795,9 +1795,6 @@
|
|||
<ClInclude Include="Dump.h">
|
||||
<Filter>System\Include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="IopCommon.h">
|
||||
<Filter>System\Include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="SaveState.h">
|
||||
<Filter>System\Include</Filter>
|
||||
</ClInclude>
|
||||
|
|
|
@ -627,7 +627,6 @@
|
|||
<ClInclude Include="Common.h" />
|
||||
<ClInclude Include="Config.h" />
|
||||
<ClInclude Include="Dump.h" />
|
||||
<ClInclude Include="IopCommon.h" />
|
||||
<ClInclude Include="SaveState.h" />
|
||||
<ClInclude Include="SingleRegisterTypes.h" />
|
||||
<ClInclude Include="System.h" />
|
||||
|
|
|
@ -1283,9 +1283,6 @@
|
|||
<ClInclude Include="Dump.h">
|
||||
<Filter>System\Include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="IopCommon.h">
|
||||
<Filter>System\Include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="SaveState.h">
|
||||
<Filter>System\Include</Filter>
|
||||
</ClInclude>
|
||||
|
|
|
@ -23,6 +23,9 @@
|
|||
#include "SPU2/spu2.h"
|
||||
#include "DEV9/DEV9.h"
|
||||
#include "USB/USB.h"
|
||||
#include "IopCounters.h"
|
||||
#include "IopSio2.h"
|
||||
#include "IopDma.h"
|
||||
|
||||
#include "ps2/pgif.h"
|
||||
#include "Mdec.h"
|
||||
|
|
|
@ -22,6 +22,10 @@
|
|||
#include "SPU2/spu2.h"
|
||||
#include "DEV9/DEV9.h"
|
||||
#include "USB/USB.h"
|
||||
#include "IopCounters.h"
|
||||
#include "IopSio2.h"
|
||||
#include "IopDma.h"
|
||||
#include "R3000A.h"
|
||||
|
||||
#include "ps2/pgif.h"
|
||||
#include "Mdec.h"
|
||||
|
|
|
@ -15,7 +15,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "Common.h"
|
||||
#include "IopHw.h"
|
||||
|
||||
namespace IopMemory {
|
||||
namespace Internal {
|
||||
|
|
|
@ -14,7 +14,9 @@
|
|||
*/
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
#include "Common.h"
|
||||
#include "R3000A.h"
|
||||
#include "IopMem.h"
|
||||
|
||||
static std::string psxout_buf;
|
||||
|
||||
|
|
|
@ -18,6 +18,9 @@
|
|||
#include "ps2/Iop/IopHw_Internal.h"
|
||||
#include "ps2/HwInternal.h"
|
||||
#include "ps2/pgif.h"
|
||||
#include "IopHw.h"
|
||||
#include "IopDma.h"
|
||||
#include "Common.h"
|
||||
|
||||
//NOTES (TODO):
|
||||
/*
|
||||
|
|
|
@ -17,8 +17,10 @@
|
|||
|
||||
#define _PC_ // disables MIPS opcode macros.
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "R3000A.h"
|
||||
#include "Common.h"
|
||||
#include "Sif.h"
|
||||
#include "IopHw.h"
|
||||
|
||||
_sif sif2;
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
*/
|
||||
|
||||
#pragma once
|
||||
#include "IopSio2.h"
|
||||
|
||||
// sio_internal.h -- contains defines and structs used by sio and sio2, which
|
||||
// are of little or no use to the rest of the world.
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
*/
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "IopCommon.h"
|
||||
|
||||
#include "Common.h"
|
||||
#include "Sif.h"
|
||||
|
||||
#if FALSE
|
||||
|
|
|
@ -21,10 +21,14 @@
|
|||
#include "PrecompiledHeader.h"
|
||||
|
||||
#include "iR3000A.h"
|
||||
#include "R3000A.h"
|
||||
#include "BaseblockEx.h"
|
||||
#include "System/RecTypes.h"
|
||||
#include "System/SysThreads.h"
|
||||
#include "R5900OpcodeTables.h"
|
||||
#include "IopBios.h"
|
||||
#include "IopHw.h"
|
||||
#include "Common.h"
|
||||
|
||||
#include <time.h>
|
||||
|
||||
|
@ -32,7 +36,6 @@
|
|||
#include <sys/types.h>
|
||||
#endif
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "iCore.h"
|
||||
|
||||
#include "Config.h"
|
||||
|
|
|
@ -17,10 +17,10 @@
|
|||
#include "PrecompiledHeader.h"
|
||||
#include <time.h>
|
||||
|
||||
#include "IopCommon.h"
|
||||
#include "iR3000A.h"
|
||||
#include "IopMem.h"
|
||||
#include "IopDma.h"
|
||||
#include "IopGte.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
|
||||
#include "Common.h"
|
||||
#include "Memory.h"
|
||||
#include "R3000A.h"
|
||||
|
||||
#include "R5900Exceptions.h"
|
||||
#include "R5900OpcodeTables.h"
|
||||
|
|
Loading…
Reference in New Issue