summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-11-05 06:59:51 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-11-05 06:59:51 +0000
commit44d5c1b8ab2ef3c06e831f901d0ab95262073bd7 (patch)
treebfdb73de82a28464c3b2c3098ad77a745b67759e /src/mess/includes
parent50cdc0f4ae9f07d666341cf3f60c253a71e6f016 (diff)
Cleanups and version bumpmame0151
Diffstat (limited to 'src/mess/includes')
-rw-r--r--src/mess/includes/apple2.h2
-rw-r--r--src/mess/includes/at.h6
-rw-r--r--src/mess/includes/bbc.h6
-rw-r--r--src/mess/includes/compis.h48
-rw-r--r--src/mess/includes/einstein.h6
-rw-r--r--src/mess/includes/mtx.h4
-rw-r--r--src/mess/includes/nascom1.h6
-rw-r--r--src/mess/includes/rmnimbus.h2
-rw-r--r--src/mess/includes/thomson.h6
9 files changed, 43 insertions, 43 deletions
diff --git a/src/mess/includes/apple2.h b/src/mess/includes/apple2.h
index f27d0769035..fafd40c8a52 100644
--- a/src/mess/includes/apple2.h
+++ b/src/mess/includes/apple2.h
@@ -81,7 +81,7 @@ enum machine_type_t
TK2000, // Microdigital TK2000
LASER128, // Laser 128/128EX/128EX2
SPACE84, // "Space 84" with flipped text mode
- LABA2P // lab equipment (?) II Plus with flipped text mode
+ LABA2P // lab equipment (?) II Plus with flipped text mode
};
enum bank_disposition_t
diff --git a/src/mess/includes/at.h b/src/mess/includes/at.h
index 32f1d024aca..001e57c1833 100644
--- a/src/mess/includes/at.h
+++ b/src/mess/includes/at.h
@@ -50,11 +50,11 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu") { }
required_device<cpu_device> m_maincpu;
-
+
DECLARE_DRIVER_INIT(at586);
-
+
UINT8 m_at_offset1;
-
+
enum {
TYPE_586
};
diff --git a/src/mess/includes/bbc.h b/src/mess/includes/bbc.h
index e0c05a560f1..00e7a5d65e5 100644
--- a/src/mess/includes/bbc.h
+++ b/src/mess/includes/bbc.h
@@ -75,15 +75,15 @@ public:
int m_SWRAMtype; // this stores the DIP switch setting for the SWRAM type being used
int m_Speech; // this stores the CONF setting for Speech enabled/disabled
int m_Master; // if 0 then we are emulating a BBC B style machine
- // if 1 then we are emulating a BBC Master style machine
+ // if 1 then we are emulating a BBC Master style machine
int m_ACCCON_IRR; // IRQ inputs
int m_rombank; // This is the latch that holds the sideways ROM bank to read
int m_userport; // This stores the sideways RAM latch type.
- // Acorn and others use the bbc_rombank latch to select the write bank to be used.(type 0)
- // Solidisc use the BBC's userport to select the write bank to be used (type 1)
+ // Acorn and others use the bbc_rombank latch to select the write bank to be used.(type 0)
+ // Solidisc use the BBC's userport to select the write bank to be used (type 1)
int m_pagedRAM; // BBC B+ memory handling
int m_vdusel; // BBC B+ memory handling
diff --git a/src/mess/includes/compis.h b/src/mess/includes/compis.h
index aab605126ee..813bdb40e75 100644
--- a/src/mess/includes/compis.h
+++ b/src/mess/includes/compis.h
@@ -32,41 +32,41 @@
#include "machine/z80dart.h"
#include "video/upd7220.h"
-#define I80186_TAG "ic1"
-#define I80130_TAG "ic15"
-#define I8251A_TAG "ic59"
-#define I8253_TAG "ic60"
+#define I80186_TAG "ic1"
+#define I80130_TAG "ic15"
+#define I8251A_TAG "ic59"
+#define I8253_TAG "ic60"
#define I8274_TAG "ic65"
-#define MM58174A_TAG "ic66"
-#define I8255_TAG "ic69"
+#define MM58174A_TAG "ic66"
+#define I8255_TAG "ic69"
#define RS232_A_TAG "rs232a"
#define RS232_B_TAG "rs232b"
#define CASSETTE_TAG "cassette"
#define CENTRONICS_TAG "centronics"
-#define ISBX_0_TAG "isbx0"
-#define ISBX_1_TAG "isbx1"
-#define SCREEN_TAG "screen"
+#define ISBX_0_TAG "isbx0"
+#define ISBX_1_TAG "isbx1"
+#define SCREEN_TAG "screen"
class compis_state : public driver_device
{
public:
compis_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_maincpu(*this, I80186_TAG),
- m_osp(*this, I80130_TAG),
- m_pit(*this, I8253_TAG),
- m_ppi(*this, I8255_TAG),
- m_mpsc(*this, I8274_TAG),
- m_centronics(*this, CENTRONICS_TAG),
- m_uart(*this, I8251A_TAG),
- m_rtc(*this, MM58174A_TAG),
- m_crtc(*this, "upd7220"),
- m_cassette(*this, CASSETTE_TAG),
- m_isbx0(*this, ISBX_0_TAG),
- m_isbx1(*this, ISBX_1_TAG),
- m_ram(*this, RAM_TAG),
- m_video_ram(*this, "video_ram"),
- m_s8(*this, "S8")
+ m_maincpu(*this, I80186_TAG),
+ m_osp(*this, I80130_TAG),
+ m_pit(*this, I8253_TAG),
+ m_ppi(*this, I8255_TAG),
+ m_mpsc(*this, I8274_TAG),
+ m_centronics(*this, CENTRONICS_TAG),
+ m_uart(*this, I8251A_TAG),
+ m_rtc(*this, MM58174A_TAG),
+ m_crtc(*this, "upd7220"),
+ m_cassette(*this, CASSETTE_TAG),
+ m_isbx0(*this, ISBX_0_TAG),
+ m_isbx1(*this, ISBX_1_TAG),
+ m_ram(*this, RAM_TAG),
+ m_video_ram(*this, "video_ram"),
+ m_s8(*this, "S8")
{ }
required_device<i80186_cpu_device> m_maincpu;
diff --git a/src/mess/includes/einstein.h b/src/mess/includes/einstein.h
index 39ac2a613bf..252d1a44e18 100644
--- a/src/mess/includes/einstein.h
+++ b/src/mess/includes/einstein.h
@@ -1,9 +1,9 @@
/***************************************************************************
- Tatung Einstein
+ Tatung Einstein
- license: MAME
- copyright-holders: Kevin Thacker, Dirk Best, Phill Harvey-Smith
+ license: MAME
+ copyright-holders: Kevin Thacker, Dirk Best, Phill Harvey-Smith
***************************************************************************/
diff --git a/src/mess/includes/mtx.h b/src/mess/includes/mtx.h
index 2b84f0f2a0e..30e3eedf6e8 100644
--- a/src/mess/includes/mtx.h
+++ b/src/mess/includes/mtx.h
@@ -2,8 +2,8 @@
Memotech MTX 500, MTX 512 and RS 128
- license: MAME
- copyright-holders: (Original Author?), Dirk Best, Curt Coder
+ license: MAME
+ copyright-holders: (Original Author?), Dirk Best, Curt Coder
*************************************************************************/
diff --git a/src/mess/includes/nascom1.h b/src/mess/includes/nascom1.h
index b2724449665..9e03e39d068 100644
--- a/src/mess/includes/nascom1.h
+++ b/src/mess/includes/nascom1.h
@@ -1,9 +1,9 @@
/***************************************************************************
- Nascom 1 and Nascom 2
+ Nascom 1 and Nascom 2
- license: MAME
- copyright-holders: (Original Author?), Dirk Best
+ license: MAME
+ copyright-holders: (Original Author?), Dirk Best
***************************************************************************/
diff --git a/src/mess/includes/rmnimbus.h b/src/mess/includes/rmnimbus.h
index 0048db8cf63..6b6e6892d19 100644
--- a/src/mess/includes/rmnimbus.h
+++ b/src/mess/includes/rmnimbus.h
@@ -410,7 +410,7 @@ public:
required_device<er59256_device> m_eeprom;
UINT32 m_debug_machine;
-// i186_state m_i186;
+// i186_state m_i186;
keyboard_t m_keyboard;
nimbus_drives_t m_nimbus_drives;
ipc_interface_t m_ipc_interface;
diff --git a/src/mess/includes/thomson.h b/src/mess/includes/thomson.h
index 52b1b10694c..b9d14a0c301 100644
--- a/src/mess/includes/thomson.h
+++ b/src/mess/includes/thomson.h
@@ -115,9 +115,9 @@ public:
DECLARE_DEVICE_IMAGE_LOAD_MEMBER( to7_cartridge );
DECLARE_DEVICE_IMAGE_LOAD_MEMBER( mo5_cartridge );
-
+
optional_device<mc6854_device> m_mc6854;
-
+
DECLARE_WRITE8_MEMBER( to7_set_cassette_motor );
DECLARE_WRITE8_MEMBER( mo5_set_cassette_motor );
DECLARE_WRITE_LINE_MEMBER( thom_dev_irq_0 );
@@ -322,7 +322,7 @@ protected:
required_device<mea8000_device> m_mea8000;
required_device<ram_device> m_ram;
optional_device<mc6846_device> m_mc6846;
-
+
/* bank logging and optimisations */
int m_old_cart_bank;
int m_old_cart_bank_was_read_only;