diff options
author | 2013-01-28 15:00:44 +0000 | |
---|---|---|
committer | 2013-01-28 15:00:44 +0000 | |
commit | fc33a3716ee600ae040a2dcb3c5cc42f4f2fb288 (patch) | |
tree | 3cf839eb16b187ba69880aa12ba38685db6ad3c4 /src/mess/machine/e01.h | |
parent | 9cdbd18a0e66f9edb1d99994581b994db92d34dd (diff) |
(MESS) Tagmap lookup cleanup. (nw)
Diffstat (limited to 'src/mess/machine/e01.h')
-rw-r--r-- | src/mess/machine/e01.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mess/machine/e01.h b/src/mess/machine/e01.h index 21c8aacc440..3093191c0cc 100644 --- a/src/mess/machine/e01.h +++ b/src/mess/machine/e01.h @@ -37,6 +37,8 @@ public: TYPE_E01S }; + DECLARE_READ8_MEMBER( read ); + DECLARE_WRITE8_MEMBER( write ); DECLARE_READ8_MEMBER( ram_select_r ); DECLARE_WRITE8_MEMBER( floppy_w ); DECLARE_READ8_MEMBER( network_irq_disable_r ); @@ -88,6 +90,7 @@ protected: required_device<scsicb_device> m_scsibus; required_device<floppy_connector> m_floppy0; required_device<floppy_connector> m_floppy1; + required_memory_region m_rom; inline void update_interrupts(); inline void network_irq_enable(int enabled); @@ -102,8 +105,8 @@ protected: int m_fdc_irq; bool m_fdc_drq; int m_adlc_irq; - int m_clk_en; + bool m_ram_en; int m_variant; |