summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/nes_slot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes/nes_slot.h')
-rw-r--r--src/devices/bus/nes/nes_slot.h4
1 files 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;