diff options
author | 2009-03-25 19:39:41 +0000 | |
---|---|---|
committer | 2009-03-25 19:39:41 +0000 | |
commit | a35ef58b54fdead56bf3c21f898fce33d18687a1 (patch) | |
tree | b32156cb8894bb779d4bb999db786e9b18d9b5fe /src/emu/cpu/tms32025 | |
parent | 2e94113cb6ca351a75f38573730dd44d477e86b6 (diff) |
CPU cores are now enabled on a per cpu core family basis instead of per cpu core variant. As a result CPUDEFS is no longer needed in the makefile.
Diffstat (limited to 'src/emu/cpu/tms32025')
-rw-r--r-- | src/emu/cpu/tms32025/tms32025.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/emu/cpu/tms32025/tms32025.c b/src/emu/cpu/tms32025/tms32025.c index f3756ada905..507c41a7d68 100644 --- a/src/emu/cpu/tms32025/tms32025.c +++ b/src/emu/cpu/tms32025/tms32025.c @@ -1796,7 +1796,6 @@ static CPU_RESET( tms32025 ) cpustate->datamap[7] = &cpustate->intRAM[0x380]; /* B1 */ } -#if (HAS_TMS32026) static CPU_RESET( tms32026 ) { tms32025_state *cpustate = get_safe_token(device); @@ -1821,7 +1820,6 @@ static CPU_RESET( tms32026 ) cpustate->datamap[14] = &cpustate->intRAM[0x700]; /* B3 */ cpustate->datamap[15] = &cpustate->intRAM[0x780]; /* B3 */ } -#endif /**************************************************************************** @@ -2436,7 +2434,6 @@ CPU_GET_INFO( tms32025 ) } -#if (HAS_TMS32026) /************************************************************************** * CPU-specific set_info **************************************************************************/ @@ -2454,4 +2451,3 @@ CPU_GET_INFO( tms32026 ) default: CPU_GET_INFO_CALL(tms32025); break; } } -#endif |