From 8b0b606eb5a97768e6a1a7aecca43124e8f30681 Mon Sep 17 00:00:00 2001 From: mooglyguy Date: Sun, 30 Dec 2018 13:21:39 +0100 Subject: [PATCH] Removed no longer use MCFG macros in DSPP core, nw --- src/devices/cpu/dspp/dspp.h | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/devices/cpu/dspp/dspp.h b/src/devices/cpu/dspp/dspp.h index 4d8688ae41c..9ebf08f6f6e 100644 --- a/src/devices/cpu/dspp/dspp.h +++ b/src/devices/cpu/dspp/dspp.h @@ -388,23 +388,6 @@ public: // TODO #define DSPPDRC_COMPATIBLE_OPTIONS (DSPPDRC_STRICT_VERIFY | DSPPDRC_FLUSH_PC) #define DSPPDRC_FASTEST_OPTIONS (0) - - -/*************************************************************************** - DEVICE CONFIGURATION MACROS -***************************************************************************/ - -#define MCFG_DSPP_INT_HANDLER(_devcb) \ - devcb = &dspp_device::set_int_handler(*device, DEVCB_##_devcb); - -#define MCFG_DSPP_DMA_READ_HANDLER(_devcb) \ - devcb = &dspp_device::set_dma_read_handler(*device, DEVCB_##_devcb); - -#define MCFG_DSPP_DMA_WRITE_HANDLER(_devcb) \ - devcb = &dspp_device::set_dma_write_handler(*device, DEVCB_##_devcb); - - - // device type definition DECLARE_DEVICE_TYPE(DSPP, dspp_device);