mirror of
https://github.com/libretro/beetle-gba-libretro.git
synced 2024-11-27 10:30:29 +00:00
(MSVC NGP) Build fixes for MSVC 2010
This commit is contained in:
parent
f3d083b275
commit
8e683d2ea5
@ -37,11 +37,11 @@
|
||||
|
||||
//=========================================================================
|
||||
|
||||
#include "neopop.h"
|
||||
#include "../neopop.h"
|
||||
#include "TLCS900h_disassemble.h"
|
||||
#include "TLCS900h_registers.h"
|
||||
#include "TLCS900h_interpret.h"
|
||||
#include "mem.h"
|
||||
#include "../mem.h"
|
||||
|
||||
namespace TLCS900H
|
||||
{
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
//=========================================================================
|
||||
|
||||
#include "neopop.h"
|
||||
#include "../neopop.h"
|
||||
#include "TLCS900h_disassemble.h"
|
||||
#include "TLCS900h_registers.h"
|
||||
#include "TLCS900h_interpret.h"
|
||||
|
@ -37,7 +37,7 @@
|
||||
|
||||
//=========================================================================
|
||||
|
||||
#include "neopop.h"
|
||||
#include "../neopop.h"
|
||||
#include "TLCS900h_disassemble.h"
|
||||
#include "TLCS900h_interpret.h"
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
||||
//---------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "neopop.h"
|
||||
#include "../neopop.h"
|
||||
#include "TLCS900h_disassemble.h"
|
||||
#include "TLCS900h_registers.h"
|
||||
#include "TLCS900h_interpret.h"
|
||||
|
@ -37,7 +37,7 @@
|
||||
|
||||
//=========================================================================
|
||||
|
||||
#include "neopop.h"
|
||||
#include "../neopop.h"
|
||||
#include "TLCS900h_disassemble.h"
|
||||
#include "TLCS900h_registers.h"
|
||||
#include "TLCS900h_interpret.h"
|
||||
|
@ -52,11 +52,11 @@
|
||||
//---------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "neopop.h"
|
||||
#include "../neopop.h"
|
||||
#include "TLCS900h_registers.h"
|
||||
#include "interrupt.h"
|
||||
#include "mem.h"
|
||||
#include "bios.h"
|
||||
#include "../interrupt.h"
|
||||
#include "../mem.h"
|
||||
#include "../bios.h"
|
||||
#include "TLCS900h_interpret.h"
|
||||
#include "TLCS900h_interpret_single.h"
|
||||
#include "TLCS900h_interpret_src.h"
|
||||
|
@ -49,10 +49,10 @@
|
||||
//---------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "neopop.h"
|
||||
#include "../neopop.h"
|
||||
#include "TLCS900h_interpret.h"
|
||||
#include "TLCS900h_registers.h"
|
||||
#include "mem.h"
|
||||
#include "../mem.h"
|
||||
|
||||
namespace TLCS900H
|
||||
{
|
||||
|
@ -62,11 +62,11 @@
|
||||
//---------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "neopop.h"
|
||||
#include "../neopop.h"
|
||||
#include "TLCS900h_interpret.h"
|
||||
#include "TLCS900h_registers.h"
|
||||
#include "mem.h"
|
||||
#include "dma.h"
|
||||
#include "../mem.h"
|
||||
#include "../dma.h"
|
||||
|
||||
namespace TLCS900H
|
||||
{
|
||||
|
@ -46,11 +46,11 @@
|
||||
//---------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "neopop.h"
|
||||
#include "../neopop.h"
|
||||
#include "TLCS900h_interpret.h"
|
||||
#include "TLCS900h_registers.h"
|
||||
#include "mem.h"
|
||||
#include "interrupt.h"
|
||||
#include "../mem.h"
|
||||
#include "../interrupt.h"
|
||||
|
||||
namespace TLCS900H
|
||||
{
|
||||
|
@ -65,10 +65,10 @@
|
||||
//---------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "neopop.h"
|
||||
#include "../neopop.h"
|
||||
#include "TLCS900h_interpret.h"
|
||||
#include "TLCS900h_registers.h"
|
||||
#include "mem.h"
|
||||
#include "../mem.h"
|
||||
|
||||
namespace TLCS900H
|
||||
{
|
||||
|
@ -35,8 +35,8 @@
|
||||
//---------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "neopop.h"
|
||||
#include "interrupt.h"
|
||||
#include "../neopop.h"
|
||||
#include "../interrupt.h"
|
||||
#include "TLCS900h_registers.h"
|
||||
|
||||
namespace TLCS900H
|
||||
|
@ -77,6 +77,9 @@ RomInfo;
|
||||
//RomHeader
|
||||
typedef struct
|
||||
{
|
||||
#ifdef _WIN32
|
||||
#pragma pack(push, 1)
|
||||
#endif
|
||||
uint8 licence[28]; // 0x00 - 0x1B
|
||||
uint32 startPC; // 0x1C - 0x1F
|
||||
uint16 catalog; // 0x20 - 0x21
|
||||
@ -88,7 +91,12 @@ typedef struct
|
||||
uint32 reserved2; // 0x34 - 0x37
|
||||
uint32 reserved3; // 0x38 - 0x3B
|
||||
uint32 reserved4; // 0x3C - 0x3F
|
||||
#ifdef _WIN32
|
||||
#pragma pack(pop)
|
||||
} RomHeader;
|
||||
#else
|
||||
} __attribute__((__packed__)) RomHeader;
|
||||
#endif
|
||||
|
||||
//=============================================================================
|
||||
|
||||
|
@ -25,33 +25,34 @@
|
||||
<ClCompile Include="..\..\..\mednafen\mednafen.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\MemoryStream.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\mempatcher.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\bios.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\biosHLE.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\dma.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\flash.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\gfx.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\gfx_scanline_colour.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\gfx_scanline_mono.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\interrupt.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\mem.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\neopop.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\rom.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\rtc.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\sound.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\T6W28_Apu.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_disassemble.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_disassemble_dst.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_disassemble_extra.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_disassemble_reg.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_disassemble_src.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_interpret.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_interpret_dst.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_interpret_reg.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_interpret_single.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_interpret_src.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_registers.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\Z80_interface.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\bios.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\biosHLE.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\dma.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\flash.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\gfx.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\gfx_scanline_colour.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\gfx_scanline_mono.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\interrupt.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\mem.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\neopop.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\rom.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\rtc.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\sound.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\T6W28_Apu.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_disassemble.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_disassemble_dst.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_disassemble_extra.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_disassemble_reg.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_disassemble_src.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_interpret.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_interpret_dst.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_interpret_reg.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_interpret_single.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_interpret_src.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_registers.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\Z80_interface.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\okiadpcm.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\player.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\settings.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\sound\Blip_Buffer.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\sound\Stereo_Buffer.cpp" />
|
||||
@ -112,7 +113,7 @@
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PreprocessorDefinitions>_DEBUG;_WIN32;_LIB;LSB_FIRST;WANT_NGP_EMU;WANT_32BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;_WIN32;_LIB;LSB_FIRST;WANT_NGP_EMU;WANT_32BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;%(PreprocessorDefinitions);WANT_NEW_API;_CRT_SECURE_NO_WARNINGS</PreprocessorDefinitions>
|
||||
<CallAttributedProfiling>Callcap</CallAttributedProfiling>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\;$(SolutionDir)\..\..\mednafen;$(SolutionDir)\..\..\mednafen\cdrom;$(SolutionDir)\..\..\mednafen\include;$(SolutionDir)\..\..\mednafen\sound;$(SolutionDir)\..\..\mednafen\ngp;$(SolutionDir)\..\..\mednafen\hw_cpu;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
@ -134,7 +135,7 @@
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<PreprocessorDefinitions>NDEBUG;_WIN32;_LIB;LSB_FIRST;WANT_NGP_EMU;WANT_32BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;_WIN32;_LIB;LSB_FIRST;WANT_NGP_EMU;WANT_32BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;%(PreprocessorDefinitions);WANT_NEW_API;_CRT_SECURE_NO_WARNINGS</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\;$(SolutionDir)\..\..\mednafen;$(SolutionDir)\..\..\mednafen\cdrom;$(SolutionDir)\..\..\mednafen\include;$(SolutionDir)\..\..\mednafen\sound;$(SolutionDir)\..\..\mednafen\ngp;$(SolutionDir)\..\..\mednafen\hw_cpu;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
|
@ -80,84 +80,6 @@
|
||||
<ClCompile Include="..\..\..\mednafen\state.cpp">
|
||||
<Filter>Source Files\mednafen</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\bios.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\biosHLE.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\dma.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\flash.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\gfx.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\gfx_scanline_colour.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\gfx_scanline_mono.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\interrupt.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\mem.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\neopop.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\rom.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\rtc.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\sound.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\T6W28_Apu.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\Z80_interface.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_registers.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_disassemble.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_disassemble_dst.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_disassemble_extra.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_disassemble_reg.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_disassemble_src.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_interpret.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_interpret_dst.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_interpret_reg.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_interpret_single.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp\TLCS-900h\TLCS900h_interpret_src.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\hw_cpu\z80-fuse\z80_ops.cpp">
|
||||
<Filter>Source Files\mednafen\hw_cpu\z80-fuse</Filter>
|
||||
</ClCompile>
|
||||
@ -191,5 +113,86 @@
|
||||
<ClCompile Include="..\..\..\mednafen\sound\Stereo_Buffer.cpp">
|
||||
<Filter>Source Files\mednafen\sound</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_disassemble.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_disassemble_dst.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_disassemble_extra.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_disassemble_reg.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_disassemble_src.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_interpret.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_interpret_dst.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_interpret_reg.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_interpret_single.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_interpret_src.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\TLCS-900h\TLCS900h_registers.cpp">
|
||||
<Filter>Source Files\mednafen\ngp\TLCS-900h</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\bios.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\biosHLE.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\dma.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\flash.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\gfx.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\gfx_scanline_colour.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\gfx_scanline_mono.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\interrupt.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\mem.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\neopop.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\rom.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\rtc.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\sound.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\T6W28_Apu.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\ngp-09333\Z80_interface.cpp">
|
||||
<Filter>Source Files\mednafen\ngp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\player.cpp">
|
||||
<Filter>Source Files\mednafen</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
</Project>
|
Loading…
Reference in New Issue
Block a user