diff options
author | 2014-10-15 07:19:47 +0000 | |
---|---|---|
committer | 2014-10-15 07:19:47 +0000 | |
commit | c93ed344fbd26a9c2c49bdbc99014d8dc0cbe9ef (patch) | |
tree | a5017b8341bdadc5bcd1185ae49fe4c0a85424b8 /src/mess/includes/atom.h | |
parent | a4dd32afb6cbfaae0e452c90486060682ab1c31c (diff) |
Cleanups and version bumpmame0155
Diffstat (limited to 'src/mess/includes/atom.h')
-rw-r--r-- | src/mess/includes/atom.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mess/includes/atom.h b/src/mess/includes/atom.h index e80a9353336..93bc57485b9 100644 --- a/src/mess/includes/atom.h +++ b/src/mess/includes/atom.h @@ -108,9 +108,9 @@ public: /* devices */ int m_previous_i8271_int_state; TIMER_DEVICE_CALLBACK_MEMBER(cassette_output_tick); - + int load_cart(device_image_interface &image, generic_slot_device *slot); - DECLARE_DEVICE_IMAGE_LOAD_MEMBER(cart_load) { return load_cart(image, m_cart); } + DECLARE_DEVICE_IMAGE_LOAD_MEMBER(cart_load) { return load_cart(image, m_cart); } DECLARE_QUICKLOAD_LOAD_MEMBER(atom_atm); }; @@ -121,7 +121,7 @@ public: : atom_state(mconfig, type, tag), m_e0(*this, "rom_e0"), m_e1(*this, "rom_e1") - { + { } virtual void machine_start(); @@ -132,10 +132,10 @@ public: DECLARE_READ8_MEMBER(dos_r); DECLARE_DRIVER_INIT(atomeb); - + /* eprom state */ int m_eprom; - + generic_slot_device *m_ext[16]; required_device<generic_slot_device> m_e0; required_device<generic_slot_device> m_e1; |