1
0
mirror of https://github.com/jborza/emu6502.git synced 2025-02-19 07:30:57 +00:00

gitignore + vs2019 solution

This commit is contained in:
jborza 2019-04-14 12:37:17 +02:00
parent 8f218de40d
commit c4cdce70c5
3 changed files with 44 additions and 2 deletions

5
.gitignore vendored
View File

@ -50,3 +50,8 @@ modules.order
Module.symvers
Mkfile.old
dkms.conf
# Visual Studio 2019
/.vs/
/Debug
/Release

31
emu6502.sln Normal file
View File

@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28803.156
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "emu6502", "emu6502.vcxproj", "{DA763E7C-CD88-4DE0-824E-39C7290F69E3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DA763E7C-CD88-4DE0-824E-39C7290F69E3}.Debug|x64.ActiveCfg = Debug|x64
{DA763E7C-CD88-4DE0-824E-39C7290F69E3}.Debug|x64.Build.0 = Debug|x64
{DA763E7C-CD88-4DE0-824E-39C7290F69E3}.Debug|x86.ActiveCfg = Debug|Win32
{DA763E7C-CD88-4DE0-824E-39C7290F69E3}.Debug|x86.Build.0 = Debug|Win32
{DA763E7C-CD88-4DE0-824E-39C7290F69E3}.Release|x64.ActiveCfg = Release|x64
{DA763E7C-CD88-4DE0-824E-39C7290F69E3}.Release|x64.Build.0 = Release|x64
{DA763E7C-CD88-4DE0-824E-39C7290F69E3}.Release|x86.ActiveCfg = Release|Win32
{DA763E7C-CD88-4DE0-824E-39C7290F69E3}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {89958CA4-6874-4254-A138-B733DA389D80}
EndGlobalSection
EndGlobal

View File

@ -89,7 +89,7 @@
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>WIN32;_CRT_SECURE_NO_WARNINGS;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
@ -121,7 +121,7 @@
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>WIN32;_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
@ -152,11 +152,17 @@
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="cpu.c" />
<ClCompile Include="disassembler.c" />
<ClCompile Include="emu6502.c" />
<ClCompile Include="test6502.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="cpu.h" />
<ClInclude Include="disassembler.h" />
<ClInclude Include="flags.h" />
<ClInclude Include="opcodes.h" />
<ClInclude Include="state.h" />
<ClInclude Include="test6502.h" />
<ClInclude Include="types.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />