mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 08:39:13 +01:00
2352cf0fed
Enable the SET40 sign extension stuff. Try to separate the "core" from the "interpreter" logically, a little bit. It's still a bit of a fuzzy border. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3128 8ced0084-cf51-0410-be5f-012b33b47a6e
28 lines
559 B
Python
28 lines
559 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
"assemble.cpp",
|
|
"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",
|
|
"DSPCodeUtil.cpp",
|
|
"LabelMap.cpp",
|
|
"DSPCore.cpp",
|
|
"DSPTables.cpp",
|
|
]
|
|
|
|
acenv = env.Clone()
|
|
acenv.Append(CXXFLAGS = [ '-fPIC' ])
|
|
|
|
acenv.StaticLibrary(env['local_libs'] + 'dspcore', files, LIBS = [ 'common'] )
|