summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/concept.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/concept.h')
-rw-r--r--src/mame/includes/concept.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/mame/includes/concept.h b/src/mame/includes/concept.h
index 8471f0c7eb6..e9f90eeba2c 100644
--- a/src/mame/includes/concept.h
+++ b/src/mame/includes/concept.h
@@ -41,9 +41,6 @@ public:
m_videoram(*this,"videoram")
{ }
- void concept(machine_config &config);
-
-private:
required_device<cpu_device> m_maincpu;
required_device<mos6551_device> m_acia0;
required_device<mos6551_device> m_acia1;
@@ -57,8 +54,8 @@ private:
uint8_t m_pending_interrupts;
bool m_clock_enable;
uint8_t m_clock_address;
- DECLARE_READ8_MEMBER(io_r);
- DECLARE_WRITE8_MEMBER(io_w);
+ DECLARE_READ16_MEMBER(concept_io_r);
+ DECLARE_WRITE16_MEMBER(concept_io_w);
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
@@ -70,9 +67,8 @@ private:
DECLARE_WRITE8_MEMBER(via_out_b);
DECLARE_WRITE_LINE_MEMBER(via_out_cb2);
DECLARE_WRITE_LINE_MEMBER(via_irq_func);
- DECLARE_WRITE_LINE_MEMBER(ioc_interrupt);
void concept_set_interrupt(int level, int state);
-
+ void concept(machine_config &config);
void concept_memmap(address_map &map);
};