summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/nec/nec.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-10-20 23:17:20 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-10-20 23:17:24 -0400
commite84674d5777a6c8bdf61e9a06017bc7f577a38ce (patch)
tree2ad7d92f108ffa1ab2e79ca232a9f538f4f97aea /src/devices/cpu/nec/nec.h
parent9cb25537bdb00ec0468fc9a262d5bb7138fc8c1c (diff)
Separate V50/V53 common peripherals and former device from V33 base; add V40 type for future use
Diffstat (limited to 'src/devices/cpu/nec/nec.h')
-rw-r--r--src/devices/cpu/nec/nec.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/cpu/nec/nec.h b/src/devices/cpu/nec/nec.h
index fc402a5c397..932f9fc583a 100644
--- a/src/devices/cpu/nec/nec.h
+++ b/src/devices/cpu/nec/nec.h
@@ -21,6 +21,8 @@ enum
class nec_common_device : public cpu_device
{
+ friend class device_v5x_interface;
+
protected:
// construction/destruction
nec_common_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, bool is_16bit, uint8_t prefetch_size, uint8_t prefetch_cycles, uint32_t chip_type, address_map_constructor internal_port_map = address_map_constructor());
@@ -49,6 +51,10 @@ protected:
// device_disasm_interface overrides
virtual std::unique_ptr<util::disasm_interface> create_disassembler() override;
+ void set_int_line(int state);
+ void set_nmi_line(int state);
+ void set_poll_line(int state);
+
private:
address_space_config m_program_config;
address_space_config m_io_config;