From 1dbe2e7fa9aa9cfc7e260837511b9e86da5ea07f Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 19 Jun 2021 23:14:46 -0400 Subject: nes_slot: Deprecate some functionality that should really be eliminated --- src/devices/bus/nes/nes_slot.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/bus/nes/nes_slot.h b/src/devices/bus/nes/nes_slot.h index acdfed33164..a207a26e869 100644 --- a/src/devices/bus/nes/nes_slot.h +++ b/src/devices/bus/nes/nes_slot.h @@ -237,9 +237,9 @@ protected: device_nes_cart_interface(const machine_config &mconfig, device_t &device); DECLARE_WRITE_LINE_MEMBER(set_irq_line); - void hold_irq_line(); + [[deprecated("IRQs should be cleared explicitly")]] void hold_irq_line(); void reset_cpu(); - void poke(offs_t offset, uint8_t data); + [[deprecated("devices should stop poking into memory spaces where they don't belong")]] void poke(offs_t offset, uint8_t data); // internal state uint8_t *m_prg; -- cgit v1.2.3