mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 15:48:05 -04:00
re-import all libretro code from it's fork
Verbatim copy from https://github.com/libretro/picodrive/ commit 9ae88ef15ff00cacc3877c7ecc13b0092bab50b8 , so look there for the history of libretro specific changes. Unfortunately there is too much noise and divergence to merge this in a proper way.
This commit is contained in:
parent
126eb5f469
commit
7612bf90be
17 changed files with 6402 additions and 1810 deletions
78
platform/libretro/3ds/3ds_utils.c
Normal file
78
platform/libretro/3ds/3ds_utils.c
Normal file
|
@ -0,0 +1,78 @@
|
|||
|
||||
#include "3ds_utils.h"
|
||||
|
||||
typedef int (*ctr_callback_type)(void);
|
||||
|
||||
int srvGetServiceHandle(unsigned int* out, const char* name);
|
||||
int svcCloseHandle(unsigned int handle);
|
||||
int svcBackdoor(ctr_callback_type);
|
||||
|
||||
|
||||
static void ctr_enable_all_svc_kernel(void)
|
||||
{
|
||||
__asm__ volatile("cpsid aif");
|
||||
|
||||
unsigned int* svc_access_control = *(*(unsigned int***)0xFFFF9000 + 0x22) - 0x6;
|
||||
|
||||
svc_access_control[0]=0xFFFFFFFE;
|
||||
svc_access_control[1]=0xFFFFFFFF;
|
||||
svc_access_control[2]=0xFFFFFFFF;
|
||||
svc_access_control[3]=0x3FFFFFFF;
|
||||
}
|
||||
|
||||
|
||||
static void ctr_invalidate_ICache_kernel(void)
|
||||
{
|
||||
__asm__ volatile(
|
||||
"cpsid aif\n\t"
|
||||
"mov r0, #0\n\t"
|
||||
"mcr p15, 0, r0, c7, c5, 0\n\t");
|
||||
}
|
||||
|
||||
static void ctr_flush_DCache_kernel(void)
|
||||
{
|
||||
__asm__ volatile(
|
||||
"cpsid aif\n\t"
|
||||
"mov r0, #0\n\t"
|
||||
"mcr p15, 0, r0, c7, c10, 0\n\t");
|
||||
|
||||
}
|
||||
|
||||
|
||||
static void ctr_enable_all_svc(void)
|
||||
{
|
||||
svcBackdoor((ctr_callback_type)ctr_enable_all_svc_kernel);
|
||||
}
|
||||
|
||||
void ctr_invalidate_ICache(void)
|
||||
{
|
||||
// __asm__ volatile("svc 0x2E\n\t");
|
||||
svcBackdoor((ctr_callback_type)ctr_invalidate_ICache_kernel);
|
||||
|
||||
}
|
||||
|
||||
void ctr_flush_DCache(void)
|
||||
{
|
||||
// __asm__ volatile("svc 0x4B\n\t");
|
||||
svcBackdoor((ctr_callback_type)ctr_flush_DCache_kernel);
|
||||
}
|
||||
|
||||
|
||||
void ctr_flush_invalidate_cache(void)
|
||||
{
|
||||
ctr_flush_DCache();
|
||||
ctr_invalidate_ICache();
|
||||
}
|
||||
|
||||
int ctr_svchack_init(void)
|
||||
{
|
||||
extern unsigned int __service_ptr;
|
||||
|
||||
if(__service_ptr)
|
||||
return 0;
|
||||
|
||||
/* CFW */
|
||||
ctr_enable_all_svc();
|
||||
return 1;
|
||||
}
|
||||
|
16
platform/libretro/3ds/3ds_utils.h
Normal file
16
platform/libretro/3ds/3ds_utils.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef _3DS_UTILS_H
|
||||
#define _3DS_UTILS_H
|
||||
|
||||
void ctr_invalidate_ICache(void);
|
||||
void ctr_flush_DCache(void);
|
||||
|
||||
void ctr_flush_invalidate_cache(void);
|
||||
|
||||
int ctr_svchack_init(void);
|
||||
|
||||
#include <stdio.h>
|
||||
#define DEBUG_HOLD() do{printf("%s@%s:%d.\n",__FUNCTION__, __FILE__, __LINE__);fflush(stdout);wait_for_input();}while(0)
|
||||
|
||||
void wait_for_input(void);
|
||||
|
||||
#endif // _3DS_UTILS_H
|
1421
platform/libretro/libretro.c
Normal file
1421
platform/libretro/libretro.c
Normal file
File diff suppressed because it is too large
Load diff
1926
platform/libretro/libretro.h
Normal file
1926
platform/libretro/libretro.h
Normal file
File diff suppressed because it is too large
Load diff
47
platform/libretro/msvc/msvc-2003-xbox1.bat
Normal file
47
platform/libretro/msvc/msvc-2003-xbox1.bat
Normal file
|
@ -0,0 +1,47 @@
|
|||
@SET VSINSTALLDIR=C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE
|
||||
@SET VCINSTALLDIR=C:\Program Files\Microsoft Visual Studio .NET 2003
|
||||
@SET FrameworkDir=C:\WINDOWS\Microsoft.NET\Framework
|
||||
@SET FrameworkVersion=v1.1.4322
|
||||
@SET FrameworkSDKDir=C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1
|
||||
@rem Root of Visual Studio common files.
|
||||
|
||||
@if "%VSINSTALLDIR%"=="" goto Usage
|
||||
@if "%VCINSTALLDIR%"=="" set VCINSTALLDIR=%VSINSTALLDIR%
|
||||
|
||||
@rem
|
||||
@rem Root of Visual Studio ide installed files.
|
||||
@rem
|
||||
@set DevEnvDir=%VSINSTALLDIR%
|
||||
|
||||
@rem
|
||||
@rem Root of Visual C++ installed files.
|
||||
@rem
|
||||
@set MSVCDir=%VCINSTALLDIR%\VC7
|
||||
|
||||
@rem
|
||||
@echo Setting environment for using Microsoft Visual Studio .NET 2003 tools.
|
||||
@echo (If you have another version of Visual Studio or Visual C++ installed and wish
|
||||
@echo to use its tools from the command line, run vcvars32.bat for that version.)
|
||||
@rem
|
||||
|
||||
@REM %VCINSTALLDIR%\Common7\Tools dir is added only for real setup.
|
||||
|
||||
@set PATH=%DevEnvDir%;%MSVCDir%\BIN;%VCINSTALLDIR%\Common7\Tools;%VCINSTALLDIR%\Common7\Tools\bin\prerelease;%VCINSTALLDIR%\Common7\Tools\bin;%FrameworkSDKDir%\bin;%FrameworkDir%\%FrameworkVersion%;%PATH%;
|
||||
@set INCLUDE=%MSVCDir%\ATLMFC\INCLUDE;%MSVCDir%\INCLUDE;%FrameworkSDKDir%\include;%INCLUDE%;%XDK%\xbox\include
|
||||
@set LIB=%MSVCDir%\ATLMFC\LIB;%MSVCDir%\LIB;%MSVCDir%\PlatformSDK\lib;%XDK%\lib;%XDK%\xbox\lib;%LIB%
|
||||
|
||||
@goto end
|
||||
|
||||
:Usage
|
||||
|
||||
@echo. VSINSTALLDIR variable is not set.
|
||||
@echo.
|
||||
@echo SYNTAX: %0
|
||||
|
||||
@goto end
|
||||
|
||||
:end
|
||||
|
||||
devenv /clean Release_LTCG msvc-2003-xbox1.sln
|
||||
devenv /build Release_LTCG msvc-2003-xbox1.sln
|
||||
exit
|
124
platform/libretro/msvc/msvc-2010-360.bat
Normal file
124
platform/libretro/msvc/msvc-2010-360.bat
Normal file
|
@ -0,0 +1,124 @@
|
|||
@echo off
|
||||
|
||||
@echo Setting environment for using Microsoft Visual Studio 2010 x86 tools.
|
||||
|
||||
@call :GetVSCommonToolsDir
|
||||
@if "%VS100COMNTOOLS%"=="" goto error_no_VS100COMNTOOLSDIR
|
||||
|
||||
@call "%VS100COMNTOOLS%VCVarsQueryRegistry.bat" 32bit No64bit
|
||||
|
||||
@if "%VSINSTALLDIR%"=="" goto error_no_VSINSTALLDIR
|
||||
@if "%FrameworkDir32%"=="" goto error_no_FrameworkDIR32
|
||||
@if "%FrameworkVersion32%"=="" goto error_no_FrameworkVer32
|
||||
@if "%Framework35Version%"=="" goto error_no_Framework35Version
|
||||
|
||||
@set FrameworkDir=%FrameworkDir32%
|
||||
@set FrameworkVersion=%FrameworkVersion32%
|
||||
|
||||
@if not "%WindowsSdkDir%" == "" (
|
||||
@set "PATH=%WindowsSdkDir%bin\NETFX 4.0 Tools;%WindowsSdkDir%bin;%PATH%"
|
||||
@set "INCLUDE=%WindowsSdkDir%include;%INCLUDE%"
|
||||
@set "LIB=%WindowsSdkDir%lib;%LIB%"
|
||||
)
|
||||
|
||||
@rem
|
||||
@rem Root of Visual Studio IDE installed files.
|
||||
@rem
|
||||
@set DevEnvDir=%VSINSTALLDIR%Common7\IDE\
|
||||
|
||||
@rem PATH
|
||||
@rem ----
|
||||
@if exist "%VSINSTALLDIR%Team Tools\Performance Tools" (
|
||||
@set "PATH=%VSINSTALLDIR%Team Tools\Performance Tools;%PATH%"
|
||||
)
|
||||
@if exist "%ProgramFiles%\HTML Help Workshop" set PATH=%ProgramFiles%\HTML Help Workshop;%PATH%
|
||||
@if exist "%ProgramFiles(x86)%\HTML Help Workshop" set PATH=%ProgramFiles(x86)%\HTML Help Workshop;%PATH%
|
||||
@if exist "%VCINSTALLDIR%VCPackages" set PATH=%VCINSTALLDIR%VCPackages;%PATH%
|
||||
@set PATH=%FrameworkDir%%Framework35Version%;%PATH%
|
||||
@set PATH=%FrameworkDir%%FrameworkVersion%;%PATH%
|
||||
@set PATH=%VSINSTALLDIR%Common7\Tools;%PATH%
|
||||
@if exist "%VCINSTALLDIR%BIN" set PATH=%VCINSTALLDIR%BIN;%PATH%
|
||||
@set PATH=%DevEnvDir%;%PATH%
|
||||
|
||||
@if exist "%VSINSTALLDIR%VSTSDB\Deploy" (
|
||||
@set "PATH=%VSINSTALLDIR%VSTSDB\Deploy;%PATH%"
|
||||
)
|
||||
|
||||
@if not "%FSHARPINSTALLDIR%" == "" (
|
||||
@set "PATH=%FSHARPINSTALLDIR%;%PATH%"
|
||||
)
|
||||
|
||||
@rem INCLUDE
|
||||
@rem -------
|
||||
@if exist "%VCINSTALLDIR%ATLMFC\INCLUDE" set INCLUDE=%VCINSTALLDIR%ATLMFC\INCLUDE;%INCLUDE%
|
||||
@if exist "%VCINSTALLDIR%INCLUDE" set INCLUDE=%VCINSTALLDIR%INCLUDE;%INCLUDE%
|
||||
|
||||
@rem LIB
|
||||
@rem ---
|
||||
@if exist "%VCINSTALLDIR%ATLMFC\LIB" set LIB=%VCINSTALLDIR%ATLMFC\LIB;%LIB%
|
||||
@if exist "%VCINSTALLDIR%LIB" set LIB=%VCINSTALLDIR%LIB;%LIB%
|
||||
|
||||
@rem LIBPATH
|
||||
@rem -------
|
||||
@if exist "%VCINSTALLDIR%ATLMFC\LIB" set LIBPATH=%VCINSTALLDIR%ATLMFC\LIB;%LIBPATH%
|
||||
@if exist "%VCINSTALLDIR%LIB" set LIBPATH=%VCINSTALLDIR%LIB;%LIBPATH%
|
||||
@set LIBPATH=%FrameworkDir%%Framework35Version%;%LIBPATH%
|
||||
@set LIBPATH=%FrameworkDir%%FrameworkVersion%;%LIBPATH%
|
||||
|
||||
@goto end
|
||||
|
||||
@REM -----------------------------------------------------------------------
|
||||
:GetVSCommonToolsDir
|
||||
@set VS100COMNTOOLS=
|
||||
@call :GetVSCommonToolsDirHelper32 HKLM > nul 2>&1
|
||||
@if errorlevel 1 call :GetVSCommonToolsDirHelper32 HKCU > nul 2>&1
|
||||
@if errorlevel 1 call :GetVSCommonToolsDirHelper64 HKLM > nul 2>&1
|
||||
@if errorlevel 1 call :GetVSCommonToolsDirHelper64 HKCU > nul 2>&1
|
||||
@exit /B 0
|
||||
|
||||
:GetVSCommonToolsDirHelper32
|
||||
@for /F "tokens=1,2*" %%i in ('reg query "%1\SOFTWARE\Microsoft\VisualStudio\SxS\VS7" /v "10.0"') DO (
|
||||
@if "%%i"=="10.0" (
|
||||
@SET "VS100COMNTOOLS=%%k"
|
||||
)
|
||||
)
|
||||
@if "%VS100COMNTOOLS%"=="" exit /B 1
|
||||
@SET "VS100COMNTOOLS=%VS100COMNTOOLS%Common7\Tools\"
|
||||
@exit /B 0
|
||||
|
||||
:GetVSCommonToolsDirHelper64
|
||||
@for /F "tokens=1,2*" %%i in ('reg query "%1\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\SxS\VS7" /v "10.0"') DO (
|
||||
@if "%%i"=="10.0" (
|
||||
@SET "VS100COMNTOOLS=%%k"
|
||||
)
|
||||
)
|
||||
@if "%VS100COMNTOOLS%"=="" exit /B 1
|
||||
@SET "VS100COMNTOOLS=%VS100COMNTOOLS%Common7\Tools\"
|
||||
@exit /B 0
|
||||
|
||||
@REM -----------------------------------------------------------------------
|
||||
:error_no_VS100COMNTOOLSDIR
|
||||
@echo ERROR: Cannot determine the location of the VS Common Tools folder.
|
||||
@goto end
|
||||
|
||||
:error_no_VSINSTALLDIR
|
||||
@echo ERROR: Cannot determine the location of the VS installation.
|
||||
@goto end
|
||||
|
||||
:error_no_FrameworkDIR32
|
||||
@echo ERROR: Cannot determine the location of the .NET Framework 32bit installation.
|
||||
@goto end
|
||||
|
||||
:error_no_FrameworkVer32
|
||||
@echo ERROR: Cannot determine the version of the .NET Framework 32bit installation.
|
||||
@goto end
|
||||
|
||||
:error_no_Framework35Version
|
||||
@echo ERROR: Cannot determine the .NET Framework 3.5 version.
|
||||
@goto end
|
||||
|
||||
:end
|
||||
|
||||
msbuild msvc-2010-360.sln /p:Configuration=Release_LTCG /target:clean
|
||||
msbuild msvc-2010-360.sln /p:Configuration=Release_LTCG
|
||||
exit
|
124
platform/libretro/msvc/msvc-2010.bat
Normal file
124
platform/libretro/msvc/msvc-2010.bat
Normal file
|
@ -0,0 +1,124 @@
|
|||
@echo off
|
||||
|
||||
@echo Setting environment for using Microsoft Visual Studio 2010 x86 tools.
|
||||
|
||||
@call :GetVSCommonToolsDir
|
||||
@if "%VS100COMNTOOLS%"=="" goto error_no_VS100COMNTOOLSDIR
|
||||
|
||||
@call "%VS100COMNTOOLS%VCVarsQueryRegistry.bat" 32bit No64bit
|
||||
|
||||
@if "%VSINSTALLDIR%"=="" goto error_no_VSINSTALLDIR
|
||||
@if "%FrameworkDir32%"=="" goto error_no_FrameworkDIR32
|
||||
@if "%FrameworkVersion32%"=="" goto error_no_FrameworkVer32
|
||||
@if "%Framework35Version%"=="" goto error_no_Framework35Version
|
||||
|
||||
@set FrameworkDir=%FrameworkDir32%
|
||||
@set FrameworkVersion=%FrameworkVersion32%
|
||||
|
||||
@if not "%WindowsSdkDir%" == "" (
|
||||
@set "PATH=%WindowsSdkDir%bin\NETFX 4.0 Tools;%WindowsSdkDir%bin;%PATH%"
|
||||
@set "INCLUDE=%WindowsSdkDir%include;%INCLUDE%"
|
||||
@set "LIB=%WindowsSdkDir%lib;%LIB%"
|
||||
)
|
||||
|
||||
@rem
|
||||
@rem Root of Visual Studio IDE installed files.
|
||||
@rem
|
||||
@set DevEnvDir=%VSINSTALLDIR%Common7\IDE\
|
||||
|
||||
@rem PATH
|
||||
@rem ----
|
||||
@if exist "%VSINSTALLDIR%Team Tools\Performance Tools" (
|
||||
@set "PATH=%VSINSTALLDIR%Team Tools\Performance Tools;%PATH%"
|
||||
)
|
||||
@if exist "%ProgramFiles%\HTML Help Workshop" set PATH=%ProgramFiles%\HTML Help Workshop;%PATH%
|
||||
@if exist "%ProgramFiles(x86)%\HTML Help Workshop" set PATH=%ProgramFiles(x86)%\HTML Help Workshop;%PATH%
|
||||
@if exist "%VCINSTALLDIR%VCPackages" set PATH=%VCINSTALLDIR%VCPackages;%PATH%
|
||||
@set PATH=%FrameworkDir%%Framework35Version%;%PATH%
|
||||
@set PATH=%FrameworkDir%%FrameworkVersion%;%PATH%
|
||||
@set PATH=%VSINSTALLDIR%Common7\Tools;%PATH%
|
||||
@if exist "%VCINSTALLDIR%BIN" set PATH=%VCINSTALLDIR%BIN;%PATH%
|
||||
@set PATH=%DevEnvDir%;%PATH%
|
||||
|
||||
@if exist "%VSINSTALLDIR%VSTSDB\Deploy" (
|
||||
@set "PATH=%VSINSTALLDIR%VSTSDB\Deploy;%PATH%"
|
||||
)
|
||||
|
||||
@if not "%FSHARPINSTALLDIR%" == "" (
|
||||
@set "PATH=%FSHARPINSTALLDIR%;%PATH%"
|
||||
)
|
||||
|
||||
@rem INCLUDE
|
||||
@rem -------
|
||||
@if exist "%VCINSTALLDIR%ATLMFC\INCLUDE" set INCLUDE=%VCINSTALLDIR%ATLMFC\INCLUDE;%INCLUDE%
|
||||
@if exist "%VCINSTALLDIR%INCLUDE" set INCLUDE=%VCINSTALLDIR%INCLUDE;%INCLUDE%
|
||||
|
||||
@rem LIB
|
||||
@rem ---
|
||||
@if exist "%VCINSTALLDIR%ATLMFC\LIB" set LIB=%VCINSTALLDIR%ATLMFC\LIB;%LIB%
|
||||
@if exist "%VCINSTALLDIR%LIB" set LIB=%VCINSTALLDIR%LIB;%LIB%
|
||||
|
||||
@rem LIBPATH
|
||||
@rem -------
|
||||
@if exist "%VCINSTALLDIR%ATLMFC\LIB" set LIBPATH=%VCINSTALLDIR%ATLMFC\LIB;%LIBPATH%
|
||||
@if exist "%VCINSTALLDIR%LIB" set LIBPATH=%VCINSTALLDIR%LIB;%LIBPATH%
|
||||
@set LIBPATH=%FrameworkDir%%Framework35Version%;%LIBPATH%
|
||||
@set LIBPATH=%FrameworkDir%%FrameworkVersion%;%LIBPATH%
|
||||
|
||||
@goto end
|
||||
|
||||
@REM -----------------------------------------------------------------------
|
||||
:GetVSCommonToolsDir
|
||||
@set VS100COMNTOOLS=
|
||||
@call :GetVSCommonToolsDirHelper32 HKLM > nul 2>&1
|
||||
@if errorlevel 1 call :GetVSCommonToolsDirHelper32 HKCU > nul 2>&1
|
||||
@if errorlevel 1 call :GetVSCommonToolsDirHelper64 HKLM > nul 2>&1
|
||||
@if errorlevel 1 call :GetVSCommonToolsDirHelper64 HKCU > nul 2>&1
|
||||
@exit /B 0
|
||||
|
||||
:GetVSCommonToolsDirHelper32
|
||||
@for /F "tokens=1,2*" %%i in ('reg query "%1\SOFTWARE\Microsoft\VisualStudio\SxS\VS7" /v "10.0"') DO (
|
||||
@if "%%i"=="10.0" (
|
||||
@SET "VS100COMNTOOLS=%%k"
|
||||
)
|
||||
)
|
||||
@if "%VS100COMNTOOLS%"=="" exit /B 1
|
||||
@SET "VS100COMNTOOLS=%VS100COMNTOOLS%Common7\Tools\"
|
||||
@exit /B 0
|
||||
|
||||
:GetVSCommonToolsDirHelper64
|
||||
@for /F "tokens=1,2*" %%i in ('reg query "%1\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\SxS\VS7" /v "10.0"') DO (
|
||||
@if "%%i"=="10.0" (
|
||||
@SET "VS100COMNTOOLS=%%k"
|
||||
)
|
||||
)
|
||||
@if "%VS100COMNTOOLS%"=="" exit /B 1
|
||||
@SET "VS100COMNTOOLS=%VS100COMNTOOLS%Common7\Tools\"
|
||||
@exit /B 0
|
||||
|
||||
@REM -----------------------------------------------------------------------
|
||||
:error_no_VS100COMNTOOLSDIR
|
||||
@echo ERROR: Cannot determine the location of the VS Common Tools folder.
|
||||
@goto end
|
||||
|
||||
:error_no_VSINSTALLDIR
|
||||
@echo ERROR: Cannot determine the location of the VS installation.
|
||||
@goto end
|
||||
|
||||
:error_no_FrameworkDIR32
|
||||
@echo ERROR: Cannot determine the location of the .NET Framework 32bit installation.
|
||||
@goto end
|
||||
|
||||
:error_no_FrameworkVer32
|
||||
@echo ERROR: Cannot determine the version of the .NET Framework 32bit installation.
|
||||
@goto end
|
||||
|
||||
:error_no_Framework35Version
|
||||
@echo ERROR: Cannot determine the .NET Framework 3.5 version.
|
||||
@goto end
|
||||
|
||||
:end
|
||||
|
||||
msbuild msvc-2010.sln /p:Configuration=Release /target:clean
|
||||
msbuild msvc-2010.sln /p:Configuration=Release
|
||||
exit
|
20
platform/libretro/msvc/msvc-2010.sln
Normal file
20
platform/libretro/msvc/msvc-2010.sln
Normal file
|
@ -0,0 +1,20 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 2010
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "msvc-2010", "msvc-2010\msvc-2010.vcxproj", "{D4156C25-0E30-4407-9198-1F51EF74AA84}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{D4156C25-0E30-4407-9198-1F51EF74AA84}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{D4156C25-0E30-4407-9198-1F51EF74AA84}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{D4156C25-0E30-4407-9198-1F51EF74AA84}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{D4156C25-0E30-4407-9198-1F51EF74AA84}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
27
platform/libretro/msvc/msvc-2010/libretro.def
Normal file
27
platform/libretro/msvc/msvc-2010/libretro.def
Normal file
|
@ -0,0 +1,27 @@
|
|||
LIBRARY "msvc-2010"
|
||||
EXPORTS
|
||||
retro_set_environment
|
||||
retro_set_video_refresh
|
||||
retro_set_audio_sample
|
||||
retro_set_audio_sample_batch
|
||||
retro_set_input_poll
|
||||
retro_set_input_state
|
||||
retro_init
|
||||
retro_deinit
|
||||
retro_api_version
|
||||
retro_get_system_info
|
||||
retro_get_system_av_info
|
||||
retro_set_controller_port_device
|
||||
retro_reset
|
||||
retro_run
|
||||
retro_serialize_size
|
||||
retro_serialize
|
||||
retro_unserialize
|
||||
retro_cheat_reset
|
||||
retro_cheat_set
|
||||
retro_load_game
|
||||
retro_load_game_special
|
||||
retro_unload_game
|
||||
retro_get_region
|
||||
retro_get_memory_data
|
||||
retro_get_memory_size
|
157
platform/libretro/msvc/msvc-2010/msvc-2010.vcxproj
Normal file
157
platform/libretro/msvc/msvc-2010/msvc-2010.vcxproj
Normal file
|
@ -0,0 +1,157 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{D4156C25-0E30-4407-9198-1F51EF74AA84}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<RootNamespace>msvc2010</RootNamespace>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)msvc-2010\$(Configuration)\</OutDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)msvc-2010\$(Configuration)\</OutDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;MSVC2010_EXPORTS;%(PreprocessorDefinitions);INLINE=_inline;_CRT_SECURE_NO_WARNINGS;EMU_F68K;_USE_CZ80;NO_ZLIB;FAMEC_NO_GOTOS</PreprocessorDefinitions>
|
||||
<CompileAs>CompileAsC</CompileAs>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\..\;$(SolutionDIr)\..\..\..\pico;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ModuleDefinitionFile>libretro.def</ModuleDefinitionFile>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;MSVC2010_EXPORTS;%(PreprocessorDefinitions);INLINE=_inline;_CRT_SECURE_NO_WARNINGS;EMU_F68K;_USE_CZ80;NO_ZLIB;FAMEC_NO_GOTOS</PreprocessorDefinitions>
|
||||
<CompileAs>CompileAsC</CompileAs>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\..\;$(SolutionDIr)\..\..\..\pico;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<ModuleDefinitionFile>libretro.def</ModuleDefinitionFile>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\cpu\cz80\cz80.c" />
|
||||
<ClCompile Include="..\..\..\..\cpu\drc\cmn.c" />
|
||||
<ClCompile Include="..\..\..\..\cpu\fame\famec.c" />
|
||||
<ClCompile Include="..\..\..\..\cpu\sh2\mame\sh2pico.c" />
|
||||
<ClCompile Include="..\..\..\..\cpu\sh2\sh2.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\32x\32x.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\32x\32x_draw.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\32x\32x_memory.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\32x\pwm.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\32x\sh2soc.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cart.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\carthw\carthw.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\carthw\svp\svp_memory.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\carthw\svp\ssp16.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\carthw\svp\svp.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\carthw_cfg.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cdc.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cdd.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cd_image.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cell_map.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cue.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\gfx.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\gfx_dma.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\mcd.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cd_memory.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cd_misc.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\pcm.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cd_sek.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\debug.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\draw.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\draw2.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\eeprom.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\media.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\memory.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\misc.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\mode4.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\patch.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\pico.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\pico\pico_memory.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\pico\pico_pico.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\pico\xpcm.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\sek.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\sms.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\sound\mix.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\sound\sn76496.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\sound\sound.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\sound\ym2612.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\state.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\videoport.c" />
|
||||
<ClCompile Include="..\..\..\..\pico\z80if.c" />
|
||||
<ClCompile Include="..\..\..\..\unzip\unzip.c" />
|
||||
<ClCompile Include="..\..\..\..\unzip\unzip_stream.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\adler32.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\compress.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\crc32.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\deflate.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\example.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\gzio.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\infback.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\inffast.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\inflate.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\inftrees.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\trees.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\uncompr.c" />
|
||||
<ClCompile Include="..\..\..\..\zlib\zutil.c" />
|
||||
<ClCompile Include="..\..\..\common\mp3.c" />
|
||||
<ClCompile Include="..\..\..\common\mp3_dummy.c" />
|
||||
<ClCompile Include="..\..\libretro.c" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
277
platform/libretro/msvc/msvc-2010/msvc-2010.vcxproj.filters
Normal file
277
platform/libretro/msvc/msvc-2010/msvc-2010.vcxproj.filters
Normal file
|
@ -0,0 +1,277 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\platform">
|
||||
<UniqueIdentifier>{13ad8d51-3614-47ce-9d0d-8eb47a4cfabe}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\platform\libretro">
|
||||
<UniqueIdentifier>{56e5d1cc-a749-46f0-9c75-e26037b4e2b3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\platform\common">
|
||||
<UniqueIdentifier>{ab1e9796-fcf3-49c2-92f2-cbce4ad50f7f}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\zlib">
|
||||
<UniqueIdentifier>{d7cd40e2-d074-4967-84ad-89488a9eed11}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\unzip">
|
||||
<UniqueIdentifier>{76c63342-13b7-413c-b44b-52ef07b4dccc}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\pico">
|
||||
<UniqueIdentifier>{04bd626c-6833-49c7-8256-dc94935efe03}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\pico\cd">
|
||||
<UniqueIdentifier>{3b94bd08-c15d-46a4-9672-094f4cafbc06}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\pico\32x">
|
||||
<UniqueIdentifier>{403b507e-7278-436e-b8a5-5a0deb70dfae}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\pico\carthw">
|
||||
<UniqueIdentifier>{27323686-5607-4502-9488-ac65c90e6969}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\pico\carthw\svp">
|
||||
<UniqueIdentifier>{2e0a2f96-c25d-473e-9456-5e25b6eb8036}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\pico\sound">
|
||||
<UniqueIdentifier>{a208ee7f-75c1-4ff9-9ed5-ea2d42832fc6}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\cpu">
|
||||
<UniqueIdentifier>{04862576-b191-4769-a0f8-bb6400cfa861}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\cpu\famec">
|
||||
<UniqueIdentifier>{337acc4a-3fe4-4547-b655-058d31318ffc}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\cpu\cz80">
|
||||
<UniqueIdentifier>{63c3bec2-54b1-4831-a420-5e1aa120738b}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\cpu\drc">
|
||||
<UniqueIdentifier>{85be1810-42b8-4ec7-bbd5-6c7d1dc5b763}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\cpu\sh2">
|
||||
<UniqueIdentifier>{055bac11-1f11-4fe7-be7b-09ebaeab74d5}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\cpu\sh2\mame">
|
||||
<UniqueIdentifier>{dd1911b8-6d08-42aa-ab21-0ba1154613e1}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\pico\pico">
|
||||
<UniqueIdentifier>{a635c355-0290-4923-84c6-8290ea8b0065}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\libretro.c">
|
||||
<Filter>Source Files\platform\libretro</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\common\mp3.c">
|
||||
<Filter>Source Files\platform\common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\common\mp3_dummy.c">
|
||||
<Filter>Source Files\platform\common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\adler32.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\compress.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\crc32.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\deflate.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\example.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\gzio.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\infback.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\inffast.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\inflate.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\inftrees.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\trees.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\uncompr.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\zlib\zutil.c">
|
||||
<Filter>Source Files\zlib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\unzip\unzip.c">
|
||||
<Filter>Source Files\unzip</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\unzip\unzip_stream.c">
|
||||
<Filter>Source Files\unzip</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cart.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\carthw_cfg.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\debug.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\draw.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\draw2.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\eeprom.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\media.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\memory.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\misc.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\mode4.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\patch.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\pico.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\sek.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\sms.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\state.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\videoport.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\z80if.c">
|
||||
<Filter>Source Files\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cd_image.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cdc.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cdd.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cell_map.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cue.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\gfx.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\gfx_dma.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\mcd.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cd_memory.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cd_misc.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\pcm.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\cd\cd_sek.c">
|
||||
<Filter>Source Files\pico\cd</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\32x\32x.c">
|
||||
<Filter>Source Files\pico\32x</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\32x\32x_memory.c">
|
||||
<Filter>Source Files\pico\32x</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\32x\pwm.c">
|
||||
<Filter>Source Files\pico\32x</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\32x\sh2soc.c">
|
||||
<Filter>Source Files\pico\32x</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\carthw\carthw.c">
|
||||
<Filter>Source Files\pico\carthw</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\carthw\svp\svp_memory.c">
|
||||
<Filter>Source Files\pico\carthw\svp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\carthw\svp\ssp16.c">
|
||||
<Filter>Source Files\pico\carthw\svp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\carthw\svp\svp.c">
|
||||
<Filter>Source Files\pico\carthw\svp</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\sound\mix.c">
|
||||
<Filter>Source Files\pico\sound</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\sound\sn76496.c">
|
||||
<Filter>Source Files\pico\sound</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\sound\sound.c">
|
||||
<Filter>Source Files\pico\sound</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\sound\ym2612.c">
|
||||
<Filter>Source Files\pico\sound</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\cpu\fame\famec.c">
|
||||
<Filter>Source Files\cpu\famec</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\cpu\cz80\cz80.c">
|
||||
<Filter>Source Files\cpu\cz80</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\cpu\drc\cmn.c">
|
||||
<Filter>Source Files\cpu\drc</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\cpu\sh2\sh2.c">
|
||||
<Filter>Source Files\cpu\sh2</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\cpu\sh2\mame\sh2pico.c">
|
||||
<Filter>Source Files\cpu\sh2\mame</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\32x\32x_draw.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\pico\pico_memory.c">
|
||||
<Filter>Source Files\pico\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\pico\pico_pico.c">
|
||||
<Filter>Source Files\pico\pico</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\pico\pico\xpcm.c">
|
||||
<Filter>Source Files\pico\pico</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
</Project>
|
1756
platform/libretro/psp/draw_amips.s
Normal file
1756
platform/libretro/psp/draw_amips.s
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue