nes_slot: Deprecate some functionality that should really be eliminated

This commit is contained in:
AJR 2021-06-19 23:14:46 -04:00
parent 4d2c305b27
commit 1dbe2e7fa9

View File

@ -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;