Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #647 from lioncash/disasm
Common: Introduce the new Gekko disassembler to Common.
  • Loading branch information
delroth committed Aug 4, 2014
2 parents 05a9f5b + 0718937 commit 6befa34
Show file tree
Hide file tree
Showing 21 changed files with 2,552 additions and 2,433 deletions.
4 changes: 1 addition & 3 deletions Externals/Bochs_disasm/Bochs_disasm.vcxproj
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
Expand Down Expand Up @@ -48,12 +48,10 @@
<ClInclude Include="config.h" />
<ClInclude Include="disasm.h" />
<ClInclude Include="dis_tables.h" />
<ClInclude Include="PowerPCDisasm.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="dis_decode.cpp" />
<ClCompile Include="dis_groups.cpp" />
<ClCompile Include="PowerPCDisasm.cpp" />
<ClCompile Include="resolve.cpp" />
<ClCompile Include="syntax.cpp" />
</ItemGroup>
Expand Down
11 changes: 5 additions & 6 deletions Externals/Bochs_disasm/CMakeLists.txt
@@ -1,11 +1,10 @@
set(SRCS dis_decode.cpp
dis_groups.cpp
resolve.cpp
syntax.cpp
PowerPCDisasm.cpp)
set(SRCS dis_decode.cpp
dis_groups.cpp
resolve.cpp
syntax.cpp)

if(WIN32)
set(SRCS ${SRCS} stdafx.cpp)
set(SRCS ${SRCS} stdafx.cpp)
endif(WIN32)

add_library(bdisasm STATIC ${SRCS})

0 comments on commit 6befa34

Please sign in to comment.