summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/adsp2100
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-12-16 16:30:28 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-12-16 16:30:28 +0000
commit563054754076103db72e8db3da9e31d2dcff585b (patch)
tree93192f6bfa8fb666ec97b201fbb2bc3b9e710c60 /src/emu/cpu/adsp2100
parent98c40f06dbdd764d8c1ee1409f1103ec6ec68f45 (diff)
More device normalization:
cpu_get_info_* -> device_get_info_* cpu_set_info_* -> device_set_info_* cpu_reset -> device_reset Removed the cputype_get_* macros as they are not necessary. Removed cpuintrf_init() which is no longer necessary.
Diffstat (limited to 'src/emu/cpu/adsp2100')
-rw-r--r--src/emu/cpu/adsp2100/adsp2100.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/adsp2100/adsp2100.h b/src/emu/cpu/adsp2100/adsp2100.h
index b69bb8fac73..0a67c4c8ef7 100644
--- a/src/emu/cpu/adsp2100/adsp2100.h
+++ b/src/emu/cpu/adsp2100/adsp2100.h
@@ -166,17 +166,17 @@ extern UINT16 adsp2181_idma_data_r(const device_config *device);
INLINE void adsp21xx_set_rx_handler(const device_config *device, adsp21xx_rx_func handler)
{
- cpu_set_info_fct(device, CPUINFO_PTR_ADSP2100_RX_HANDLER, (genf *)handler);
+ device_set_info_fct(device, CPUINFO_PTR_ADSP2100_RX_HANDLER, (genf *)handler);
}
INLINE void adsp21xx_set_tx_handler(const device_config *device, adsp21xx_tx_func handler)
{
- cpu_set_info_fct(device, CPUINFO_PTR_ADSP2100_TX_HANDLER, (genf *)handler);
+ device_set_info_fct(device, CPUINFO_PTR_ADSP2100_TX_HANDLER, (genf *)handler);
}
INLINE void adsp21xx_set_timer_handler(const device_config *device, adsp21xx_timer_func handler)
{
- cpu_set_info_fct(device, CPUINFO_PTR_ADSP2100_TIMER_HANDLER, (genf *)handler);
+ device_set_info_fct(device, CPUINFO_PTR_ADSP2100_TIMER_HANDLER, (genf *)handler);
}