diff options
author | 2013-03-06 19:24:17 +0000 | |
---|---|---|
committer | 2013-03-06 19:24:17 +0000 | |
commit | 50447aa561ee2a0f9b9edf84e72098d9e8926c91 (patch) | |
tree | 1c00f97536eecbbd0e9d14b0d1252b50b6c5612e /src/emu/cpu | |
parent | c7dc3b49f7af9428777874147ef17e08fd28f522 (diff) |
added SCUDSP cpu type, though it currently only has a disassembler (nw)
Diffstat (limited to 'src/emu/cpu')
-rw-r--r-- | src/emu/cpu/cpu.mak | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/emu/cpu/cpu.mak b/src/emu/cpu/cpu.mak index 4901d627549..d8668fbc2ab 100644 --- a/src/emu/cpu/cpu.mak +++ b/src/emu/cpu/cpu.mak @@ -2084,3 +2084,16 @@ endif $(CPUOBJ)/lc8670/lc8670.o: $(CPUSRC)/lc8670/lc8670.c \ $(CPUSRC)/lc8670/lc8670.h + +#------------------------------------------------- +# Sega SCU DSP +#------------------------------------------------- + +ifneq ($(filter SCUDSP,$(CPUS)),) +OBJDIRS += $(CPUOBJ)/scudsp +DASMOBJS += $(CPUOBJ)/scudsp/scudspdasm.o +endif + +$(CPUOBJ)/scudsp/scudspdasm.o: CPUOBJS += $(CPUOBJ)/scudsp/scudspdasm.c + + |