diff options
| author | hrydgard <hrydgard@gmail.com> | 2009-04-12 10:21:40 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2009-04-12 10:21:40 +0000 |
| commit | e8b9e93465ec9e78de823c1480439f9efb2a8012 (patch) | |
| tree | b8e70742317f9e558111d1324ecdc824df1837ad /Source/Core/DSPCore/Src/SConscript | |
| parent | 2b2c2afa3cb7f5e556f719069052feb703b2c1e6 (diff) | |
DSP: Move the LLE core to a library. Added DSP assembler from gdtool, start cleaning it up. Create a new program called "DSPTool" which will become a more up to date replacement for gdtool from the devkitpro, automatically incorporating all our findings as we make them. This program depends on the new library. It can *ALMOST* roundtrip (asm->disasm->asm) hermes' DSP mixer at this point. Sorry about the unfinished Sconscript work - I'll fix it soon if nobody else does it first.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2955 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/SConscript')
| -rw-r--r-- | Source/Core/DSPCore/Src/SConscript | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Source/Core/DSPCore/Src/SConscript b/Source/Core/DSPCore/Src/SConscript new file mode 100644 index 0000000000..c4a00c16ee --- /dev/null +++ b/Source/Core/DSPCore/Src/SConscript @@ -0,0 +1,24 @@ +# -*- python -*- + +Import('env') + +files = [ + "disassemble.cpp",
+ "gdsp_aram.cpp",
+ "gdsp_condition_codes.cpp",
+ "gdsp_ext_op.cpp",
+ "gdsp_interface.cpp",
+ "gdsp_interpreter.cpp",
+ "gdsp_memory.cpp",
+ "gdsp_registers.cpp",
+ "DSPAnalyzer.cpp",
+ "DSPInterpreter.cpp",
+ "DSPJit.cpp",
+ "DSPHost.cpp",
+ "DSPTables.cpp",
+ ] + +acenv = env.Clone() +acenv.Append(CXXFLAGS = [ '-fPIC' ]) + +acenv.StaticLibrary('dspcore', files) |
