diff options
| author | 2022-11-07 22:18:49 -0500 | |
|---|---|---|
| committer | 2022-11-07 22:18:49 -0500 | |
| commit | da85ebae03454a3c35063199e8249ea86a318db0 (patch) | |
| tree | 72ecdc828ac5b779e8ac4e853e2521df1175717f | |
| parent | 0e1c444a0d6ec3a1bffd7cdea4f0739487358402 (diff) | |
Clean up image loading handlers (mostly prototypes for long-dead ones)
| -rw-r--r-- | src/mame/coleco/coleco.h | 1 | ||||
| -rw-r--r-- | src/mame/miltonbradley/vectrex.h | 1 | ||||
| -rw-r--r-- | src/mame/nintendo/snes.h | 2 | ||||
| -rw-r--r-- | src/mame/tvgames/spg2xx_jakks_gkr.cpp | 7 |
4 files changed, 0 insertions, 11 deletions
diff --git a/src/mame/coleco/coleco.h b/src/mame/coleco/coleco.h index adfdcc0b4cb..95d4b6027ab 100644 --- a/src/mame/coleco/coleco.h +++ b/src/mame/coleco/coleco.h @@ -54,7 +54,6 @@ public: TIMER_CALLBACK_MEMBER(paddle_pulse_callback); TIMER_DEVICE_CALLBACK_MEMBER(paddle_update_callback); DECLARE_WRITE_LINE_MEMBER(coleco_vdp_interrupt); - DECLARE_DEVICE_IMAGE_LOAD_MEMBER(czz50_cart); uint8_t coleco_paddle_read(int port, int joy_mode, uint8_t joy_status); uint8_t coleco_scan_paddles(uint8_t *joy_status0, uint8_t *joy_status1); diff --git a/src/mame/miltonbradley/vectrex.h b/src/mame/miltonbradley/vectrex.h index 2f45331f00a..adf12def1f1 100644 --- a/src/mame/miltonbradley/vectrex.h +++ b/src/mame/miltonbradley/vectrex.h @@ -70,7 +70,6 @@ protected: void via_pa_w(uint8_t data); DECLARE_WRITE_LINE_MEMBER(via_ca2_w); DECLARE_WRITE_LINE_MEMBER(via_cb2_w); - DECLARE_DEVICE_IMAGE_LOAD_MEMBER(cart_load); DECLARE_WRITE_LINE_MEMBER(via_irq); void vectrex_base(machine_config &config); diff --git a/src/mame/nintendo/snes.h b/src/mame/nintendo/snes.h index 6669b7b12d3..4e33492e90a 100644 --- a/src/mame/nintendo/snes.h +++ b/src/mame/nintendo/snes.h @@ -428,8 +428,6 @@ protected: TIMER_CALLBACK_MEMBER(snes_scanline_tick); TIMER_CALLBACK_MEMBER(snes_hblank_tick); DECLARE_WRITE_LINE_MEMBER(snes_extern_irq_w); - DECLARE_DEVICE_IMAGE_LOAD_MEMBER(load_snes_cart); - DECLARE_DEVICE_IMAGE_LOAD_MEMBER(load_sufami_cart); void snes_init_timers(); void scpu_irq_refresh(); }; diff --git a/src/mame/tvgames/spg2xx_jakks_gkr.cpp b/src/mame/tvgames/spg2xx_jakks_gkr.cpp index 48fd59422d9..1d0284e49ae 100644 --- a/src/mame/tvgames/spg2xx_jakks_gkr.cpp +++ b/src/mame/tvgames/spg2xx_jakks_gkr.cpp @@ -58,8 +58,6 @@ private: void jakks_porta_key_io_w(uint16_t data); bool m_porta_key_mode; - DECLARE_DEVICE_IMAGE_LOAD_MEMBER(cart_load_gamekey); - optional_device<jakks_gamekey_slot_device> m_cart; memory_region *m_cart_region; @@ -444,11 +442,6 @@ void jakks_gkr_state::machine_start() } } -DEVICE_IMAGE_LOAD_MEMBER(jakks_gkr_state::cart_load_gamekey) -{ - return m_cart->call_load(); -} - void jakks_gkr_state::jakks_gkr(machine_config &config) { SPG24X(config, m_maincpu, XTAL(27'000'000), m_screen); |
