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 | |
| parent | a4dd32afb6cbfaae0e452c90486060682ab1c31c (diff) | |
Cleanups and version bumpmame0155
Diffstat (limited to 'src/mess/includes')
| -rw-r--r-- | src/mess/includes/apple2.h | 4 | ||||
| -rw-r--r-- | src/mess/includes/atom.h | 10 | ||||
| -rw-r--r-- | src/mess/includes/concept.h | 2 | ||||
| -rw-r--r-- | src/mess/includes/electron.h | 4 | ||||
| -rw-r--r-- | src/mess/includes/intv.h | 4 | ||||
| -rw-r--r-- | src/mess/includes/radio86.h | 2 | ||||
| -rw-r--r-- | src/mess/includes/svi318.h | 18 |
7 files changed, 22 insertions, 22 deletions
diff --git a/src/mess/includes/apple2.h b/src/mess/includes/apple2.h index d294025ed9f..02dd0b9296b 100644 --- a/src/mess/includes/apple2.h +++ b/src/mess/includes/apple2.h @@ -26,7 +26,7 @@ #define IIC_ACIA1_TAG "acia1" #define IIC_ACIA2_TAG "acia2" -#define IICP_IWM_TAG "iwm" +#define IICP_IWM_TAG "iwm" #define LASER128_UDC_TAG "l128udc" @@ -83,7 +83,7 @@ enum machine_type_t APPLE_IIC, // Apple IIc APPLE_IICPLUS, // Apple IIc+ TK2000, // Microdigital TK2000 - TK3000, // Microdigital TK3000 + TK3000, // Microdigital TK3000 LASER128, // Laser 128/128EX/128EX2 SPACE84, // "Space 84" with flipped text mode LABA2P // lab equipment (?) II Plus with flipped text mode 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; diff --git a/src/mess/includes/concept.h b/src/mess/includes/concept.h index c1e280ea015..f5deecc63f8 100644 --- a/src/mess/includes/concept.h +++ b/src/mess/includes/concept.h @@ -21,7 +21,7 @@ #define ACIA_0_TAG "acia0" #define ACIA_1_TAG "acia1" #define KBD_ACIA_TAG "kbacia" -#define SPEAKER_TAG "spkr" +#define SPEAKER_TAG "spkr" #define A2BUS_TAG "a2bus" class concept_state : public driver_device diff --git a/src/mess/includes/electron.h b/src/mess/includes/electron.h index c98c85d2bcb..2de2f6da6a1 100644 --- a/src/mess/includes/electron.h +++ b/src/mess/includes/electron.h @@ -70,9 +70,9 @@ public: : driver_device(mconfig, type, tag), m_maincpu(*this, "maincpu"), m_cassette(*this, "cassette"), - m_beeper(*this, "beeper"), + m_beeper(*this, "beeper"), m_cart(*this, "cartslot"), - m_keybd(*this, "LINE") + m_keybd(*this, "LINE") { } ULA m_ula; diff --git a/src/mess/includes/intv.h b/src/mess/includes/intv.h index 949df7fb86d..f6161894f7f 100644 --- a/src/mess/includes/intv.h +++ b/src/mess/includes/intv.h @@ -44,7 +44,7 @@ public: m_io_options(*this, "OPTIONS"), m_io_test(*this, "TEST"), m_gfxdecode(*this, "gfxdecode"), - m_palette(*this, "palette") + m_palette(*this, "palette") { } required_device<cpu_device> m_maincpu; @@ -66,7 +66,7 @@ public: DECLARE_READ8_MEMBER(intv_right_control_r); DECLARE_READ8_MEMBER(intv_left_control_r); - + UINT8 m_bus_copy_mode; UINT8 m_backtab_row; UINT16 m_ram16[0x160]; diff --git a/src/mess/includes/radio86.h b/src/mess/includes/radio86.h index d2f5dd00e1e..584d69bc965 100644 --- a/src/mess/includes/radio86.h +++ b/src/mess/includes/radio86.h @@ -88,7 +88,7 @@ public: protected: required_device<cassette_image_device> m_cassette; - optional_device<generic_slot_device> m_cart; // for ROMDisk - only Radio86K & Orion? + optional_device<generic_slot_device> m_cart; // for ROMDisk - only Radio86K & Orion? optional_device<i8257_device> m_dma8257; required_device<i8255_device> m_ppi8255_1; optional_device<i8255_device> m_ppi8255_2; diff --git a/src/mess/includes/svi318.h b/src/mess/includes/svi318.h index f13d31e7360..682fc400ed1 100644 --- a/src/mess/includes/svi318.h +++ b/src/mess/includes/svi318.h @@ -52,7 +52,7 @@ public: m_bank3(*this, "bank3"), m_bank4(*this, "bank4") { } - + // FDC UINT8 m_driveselect; int m_drq; @@ -91,7 +91,7 @@ public: MC6845_UPDATE_ROW(crtc_update_row); memory_region *m_cart_rom; memory_region *m_bios_rom; - + protected: required_device<z80_device> m_maincpu; required_device<cassette_image_device> m_cassette; @@ -111,30 +111,30 @@ protected: optional_device<palette_device> m_palette; private: - + void set_banks(); void postload(); - + // memory banking UINT8 m_bank_switch; UINT8 m_bank_low; UINT8 m_bank_high; - + UINT8 m_bank_low_read_only; UINT8 m_bank_high1_read_only; UINT8 m_bank_high2_read_only; - + UINT8 *m_empty_bank; UINT8 *m_bank_low_ptr; UINT8 *m_bank_high1_ptr; UINT8 *m_bank_high2_ptr; - + // keyboard UINT8 m_keyboard_row; - + // centronics int m_centronics_busy; - + // SVI-806 80 column card UINT8 m_svi806_present; UINT8 m_svi806_ram_enabled; |
