build with MSVC (nw)

This commit is contained in:
smf- 2018-07-22 11:17:17 +01:00
parent 098b9e69ce
commit f667051179
17 changed files with 33 additions and 34 deletions

View File

@ -11,10 +11,8 @@
* *
*/ */
#include "emu.h"
#include "ps2vif1.h" #include "ps2vif1.h"
#include "ps2vu.h"
#include "video/ps2gs.h"
#include "video/ps2gif.h"
DEFINE_DEVICE_TYPE(SONYPS2_VIF1, ps2_vif1_device, "ps2vif1", "PlayStation 2 VIF1") DEFINE_DEVICE_TYPE(SONYPS2_VIF1, ps2_vif1_device, "ps2vif1", "PlayStation 2 VIF1")

View File

@ -14,8 +14,6 @@
#pragma once #pragma once
#include "emu.h"
class ps2_gs_device; class ps2_gs_device;
class sonyvu1_device; class sonyvu1_device;
@ -157,4 +155,7 @@ protected:
DECLARE_DEVICE_TYPE(SONYPS2_VIF1, ps2_vif1_device) DECLARE_DEVICE_TYPE(SONYPS2_VIF1, ps2_vif1_device)
#include "video/ps2gs.h"
#include "ps2vu.h"
#endif // DEVICES_MACHINE_PS2VIF1_H #endif // DEVICES_MACHINE_PS2VIF1_H

View File

@ -242,4 +242,7 @@ protected:
DECLARE_DEVICE_TYPE(SONYPS2_VU1, sonyvu1_device) DECLARE_DEVICE_TYPE(SONYPS2_VU1, sonyvu1_device)
DECLARE_DEVICE_TYPE(SONYPS2_VU0, sonyvu0_device) DECLARE_DEVICE_TYPE(SONYPS2_VU0, sonyvu0_device)
#include "video/ps2gs.h"
#include "cpu/mips/ps2vif1.h"
#endif // MAME_CPU_MIPS_PS2VU_H #endif // MAME_CPU_MIPS_PS2VU_H

View File

@ -9,7 +9,7 @@
* *
*/ */
#include "ps2sif.h" #include "emu.h"
#include "ps2dma.h" #include "ps2dma.h"
#include "cpu/mips/mips3.h" #include "cpu/mips/mips3.h"
#include "cpu/mips/ps2vif1.h" #include "cpu/mips/ps2vif1.h"

View File

@ -14,7 +14,7 @@
#pragma once #pragma once
#include "emu.h" #include "ps2sif.h"
#include "video/ps2gs.h" #include "video/ps2gs.h"
#include "cpu/mips/ps2vu.h" #include "cpu/mips/ps2vu.h"

View File

@ -9,8 +9,8 @@
* *
*/ */
#include "emu.h"
#include "ps2intc.h" #include "ps2intc.h"
#include "cpu/mips/ps2vu.h"
DEFINE_DEVICE_TYPE(SONYPS2_INTC, ps2_intc_device, "ps2intc", "PlayStation 2 EE INTC") DEFINE_DEVICE_TYPE(SONYPS2_INTC, ps2_intc_device, "ps2intc", "PlayStation 2 EE INTC")

View File

@ -14,7 +14,6 @@
#pragma once #pragma once
#include "emu.h"
#include "cpu/mips/mips3.h" #include "cpu/mips/mips3.h"
class ps2_intc_device : public device_t class ps2_intc_device : public device_t

View File

@ -9,6 +9,7 @@
* *
*/ */
#include "emu.h"
#include "ps2mc.h" #include "ps2mc.h"
DEFINE_DEVICE_TYPE(SONYPS2_MC, ps2_mc_device, "ps2mc", "PlayStation 2 Memory Card") DEFINE_DEVICE_TYPE(SONYPS2_MC, ps2_mc_device, "ps2mc", "PlayStation 2 Memory Card")

View File

@ -14,8 +14,6 @@
#pragma once #pragma once
#include "emu.h"
class ps2_mc_device : public device_t class ps2_mc_device : public device_t
{ {
public: public:

View File

@ -9,6 +9,7 @@
* *
*/ */
#include "emu.h"
#include "ps2pad.h" #include "ps2pad.h"
DEFINE_DEVICE_TYPE(SONYPS2_PAD, ps2_pad_device, "ps2pad", "Sony DualShock 2") DEFINE_DEVICE_TYPE(SONYPS2_PAD, ps2_pad_device, "ps2pad", "Sony DualShock 2")

View File

@ -14,8 +14,6 @@
#pragma once #pragma once
#include "emu.h"
class ps2_pad_device : public device_t class ps2_pad_device : public device_t
{ {
public: public:

View File

@ -9,8 +9,8 @@
* *
*/ */
#include "emu.h"
#include "ps2sif.h" #include "ps2sif.h"
#include "cpu/mips/ps2vu.h"
DEFINE_DEVICE_TYPE(SONYPS2_SIF, ps2_sif_device, "ps2sif", "PlayStation 2 SIF") DEFINE_DEVICE_TYPE(SONYPS2_SIF, ps2_sif_device, "ps2sif", "PlayStation 2 SIF")

View File

@ -14,7 +14,6 @@
#pragma once #pragma once
#include "emu.h"
#include "ps2intc.h" #include "ps2intc.h"
class ps2_sif_device : public device_t class ps2_sif_device : public device_t

View File

@ -9,9 +9,8 @@
* *
*/ */
#include "emu.h"
#include "ps2gif.h" #include "ps2gif.h"
#include "ps2gs.h"
#include "cpu/mips/ps2vu.h"
DEFINE_DEVICE_TYPE(SONYPS2_GIF, ps2_gif_device, "ps2gif", "Playstation 2 GIF") DEFINE_DEVICE_TYPE(SONYPS2_GIF, ps2_gif_device, "ps2gif", "Playstation 2 GIF")

View File

@ -14,8 +14,6 @@
#pragma once #pragma once
#include "emu.h"
class ps2_gs_device; class ps2_gs_device;
class sonyvu1_device; class sonyvu1_device;
@ -127,4 +125,7 @@ protected:
DECLARE_DEVICE_TYPE(SONYPS2_GIF, ps2_gif_device) DECLARE_DEVICE_TYPE(SONYPS2_GIF, ps2_gif_device)
#include "ps2gs.h"
#include "cpu/mips/ps2vu.h"
#endif // DEVICES_VIDEO_PS2GIF_H #endif // DEVICES_VIDEO_PS2GIF_H

View File

@ -9,9 +9,8 @@
* *
*/ */
#include "emu.h"
#include "ps2gs.h" #include "ps2gs.h"
#include "ps2gif.h"
#include "cpu/mips/ps2vu.h"
DEFINE_DEVICE_TYPE(SONYPS2_GS, ps2_gs_device, "ps2gs", "Playstation 2 GS") DEFINE_DEVICE_TYPE(SONYPS2_GS, ps2_gs_device, "ps2gs", "Playstation 2 GS")

View File

@ -14,9 +14,7 @@
#pragma once #pragma once
#include "emu.h" class ps2_intc_device;
#include "machine/ps2intc.h"
class ps2_gif_device; class ps2_gif_device;
class sonyvu1_device; class sonyvu1_device;
@ -313,4 +311,8 @@ protected:
DECLARE_DEVICE_TYPE(SONYPS2_GS, ps2_gs_device) DECLARE_DEVICE_TYPE(SONYPS2_GS, ps2_gs_device)
#include "ps2gif.h"
#include "cpu/mips/ps2vu.h"
#include "machine/ps2intc.h"
#endif // DEVICES_VIDEO_PS2GS_H #endif // DEVICES_VIDEO_PS2GS_H