summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/nes_slot.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-06-19 23:14:46 -0400
committer AJR <ajrhacker@users.noreply.github.com>2021-06-19 23:14:46 -0400
commit1dbe2e7fa9aa9cfc7e260837511b9e86da5ea07f (patch)
tree36042ea3b2199cfa7f84efe97d32f46170558d7b /src/devices/bus/nes/nes_slot.h
parent4d2c305b27d3acd331dec316306eed627717a3cf (diff)
nes_slot: Deprecate some functionality that should really be eliminated
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;