summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes')
-rw-r--r--src/mess/includes/abc1600.h4
-rw-r--r--src/mess/includes/bw12.h4
-rw-r--r--src/mess/includes/ep64.h54
-rw-r--r--src/mess/includes/gba.h2
-rw-r--r--src/mess/includes/hx20.h80
-rw-r--r--src/mess/includes/mac.h4
-rw-r--r--src/mess/includes/pc1512.h2
-rw-r--r--src/mess/includes/sg1000.h4
-rw-r--r--src/mess/includes/sms.h14
-rw-r--r--src/mess/includes/superslave.h36
-rw-r--r--src/mess/includes/tandy2k.h2
-rw-r--r--src/mess/includes/v1050.h2
-rw-r--r--src/mess/includes/victor9k.h6
-rw-r--r--src/mess/includes/vixen.h2
-rw-r--r--src/mess/includes/wangpc.h2
15 files changed, 109 insertions, 109 deletions
diff --git a/src/mess/includes/abc1600.h b/src/mess/includes/abc1600.h
index 77aa70b4fa4..6de9a606fff 100644
--- a/src/mess/includes/abc1600.h
+++ b/src/mess/includes/abc1600.h
@@ -42,8 +42,8 @@
#define BUS0X_TAG "bus0x"
#define BUS1_TAG "bus1"
#define BUS2_TAG "bus2"
-#define RS232_A_TAG "rs232a"
-#define RS232_B_TAG "rs232b"
+#define RS232_A_TAG "rs232a"
+#define RS232_B_TAG "rs232b"
diff --git a/src/mess/includes/bw12.h b/src/mess/includes/bw12.h
index cf5df7ac5f0..445526819ea 100644
--- a/src/mess/includes/bw12.h
+++ b/src/mess/includes/bw12.h
@@ -28,8 +28,8 @@
#define AY3600PRO002_TAG "ic74"
#define CENTRONICS_TAG "centronics"
#define FLOPPY_TIMER_TAG "motor_off"
-#define RS232_A_TAG "rs232a"
-#define RS232_B_TAG "rs232b"
+#define RS232_A_TAG "rs232a"
+#define RS232_B_TAG "rs232b"
#define BW12_VIDEORAM_MASK 0x7ff
#define BW12_CHARROM_MASK 0xfff
diff --git a/src/mess/includes/ep64.h b/src/mess/includes/ep64.h
index 39e522d7cbd..9a9a04dd47c 100644
--- a/src/mess/includes/ep64.h
+++ b/src/mess/includes/ep64.h
@@ -24,38 +24,38 @@
#include "video/nick.h"
#define Z80_TAG "u1"
-#define DAVE_TAG "u3"
-#define NICK_TAG "u4"
-#define CENTRONICS_TAG "centronics"
-#define RS232_TAG "rs232"
-#define CASSETTE1_TAG "cassette1"
-#define CASSETTE2_TAG "cassette2"
-#define SCREEN_TAG "screen"
+#define DAVE_TAG "u3"
+#define NICK_TAG "u4"
+#define CENTRONICS_TAG "centronics"
+#define RS232_TAG "rs232"
+#define CASSETTE1_TAG "cassette1"
+#define CASSETTE2_TAG "cassette2"
+#define SCREEN_TAG "screen"
class ep64_state : public driver_device
{
public:
ep64_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_maincpu(*this, Z80_TAG),
- m_dave(*this, DAVE_TAG),
- m_nick(*this, NICK_TAG),
- m_centronics(*this, CENTRONICS_TAG),
- m_rs232(*this, RS232_TAG),
- m_cassette1(*this, CASSETTE1_TAG),
- m_cassette2(*this, CASSETTE2_TAG),
- m_ram(*this, RAM_TAG),
- m_rom(*this, Z80_TAG),
- m_y0(*this, "Y0"),
- m_y1(*this, "Y1"),
- m_y2(*this, "Y2"),
- m_y3(*this, "Y3"),
- m_y4(*this, "Y4"),
- m_y5(*this, "Y5"),
- m_y6(*this, "Y6"),
- m_y7(*this, "Y7"),
- m_y8(*this, "Y8"),
- m_y9(*this, "Y9")
+ m_maincpu(*this, Z80_TAG),
+ m_dave(*this, DAVE_TAG),
+ m_nick(*this, NICK_TAG),
+ m_centronics(*this, CENTRONICS_TAG),
+ m_rs232(*this, RS232_TAG),
+ m_cassette1(*this, CASSETTE1_TAG),
+ m_cassette2(*this, CASSETTE2_TAG),
+ m_ram(*this, RAM_TAG),
+ m_rom(*this, Z80_TAG),
+ m_y0(*this, "Y0"),
+ m_y1(*this, "Y1"),
+ m_y2(*this, "Y2"),
+ m_y3(*this, "Y3"),
+ m_y4(*this, "Y4"),
+ m_y5(*this, "Y5"),
+ m_y6(*this, "Y6"),
+ m_y7(*this, "Y7"),
+ m_y8(*this, "Y8"),
+ m_y9(*this, "Y9")
{ }
required_device<cpu_device> m_maincpu;
@@ -80,7 +80,7 @@ public:
virtual void machine_start();
virtual void machine_reset();
-
+
DECLARE_READ8_MEMBER( rd0_r );
DECLARE_WRITE8_MEMBER( wr0_w );
DECLARE_READ8_MEMBER( rd1_r );
diff --git a/src/mess/includes/gba.h b/src/mess/includes/gba.h
index daebffeb782..05a14c78f6a 100644
--- a/src/mess/includes/gba.h
+++ b/src/mess/includes/gba.h
@@ -265,7 +265,7 @@ public:
inline void update_mask(UINT8* mask, int mode, int submode, UINT32* obj_win, UINT8 inwin0, UINT8 inwin1, UINT8 in0_mask, UINT8 in1_mask, UINT8 out_mask);
void draw_modes(int mode, int submode, int y, UINT32* line0, UINT32* line1, UINT32* line2, UINT32* line3, UINT32* lineOBJ, UINT32* lineOBJWin, UINT32* lineMix, int bpp);
-
+
protected:
required_memory_region m_region_maincpu;
required_ioport m_io_in0;
diff --git a/src/mess/includes/hx20.h b/src/mess/includes/hx20.h
index ee322551233..fb491236630 100644
--- a/src/mess/includes/hx20.h
+++ b/src/mess/includes/hx20.h
@@ -14,52 +14,52 @@
#include "sound/speaker.h"
#include "rendlay.h"
-#define HD6301V1_MAIN_TAG "8g"
-#define HD6301V1_SLAVE_TAG "6d"
-#define MC146818_TAG "6g"
-#define UPD7227_0_TAG "lcdc0"
-#define UPD7227_1_TAG "lcdc1"
-#define UPD7227_2_TAG "lcdc2"
-#define UPD7227_3_TAG "lcdc3"
-#define UPD7227_4_TAG "lcdc4"
-#define UPD7227_5_TAG "lcdc5"
-#define SPEAKER_TAG "speaker"
-#define CASSETTE_TAG "cassette"
-#define RS232_TAG "rs232"
-#define SCREEN_TAG "screen"
+#define HD6301V1_MAIN_TAG "8g"
+#define HD6301V1_SLAVE_TAG "6d"
+#define MC146818_TAG "6g"
+#define UPD7227_0_TAG "lcdc0"
+#define UPD7227_1_TAG "lcdc1"
+#define UPD7227_2_TAG "lcdc2"
+#define UPD7227_3_TAG "lcdc3"
+#define UPD7227_4_TAG "lcdc4"
+#define UPD7227_5_TAG "lcdc5"
+#define SPEAKER_TAG "speaker"
+#define CASSETTE_TAG "cassette"
+#define RS232_TAG "rs232"
+#define SCREEN_TAG "screen"
class hx20_state : public driver_device
{
public:
hx20_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_maincpu(*this, HD6301V1_MAIN_TAG),
- m_subcpu(*this, HD6301V1_SLAVE_TAG),
- m_rtc(*this, MC146818_TAG),
- m_lcdc0(*this, UPD7227_0_TAG),
- m_lcdc1(*this, UPD7227_1_TAG),
- m_lcdc2(*this, UPD7227_2_TAG),
- m_lcdc3(*this, UPD7227_3_TAG),
- m_lcdc4(*this, UPD7227_4_TAG),
- m_lcdc5(*this, UPD7227_5_TAG),
- m_speaker(*this, SPEAKER_TAG),
- m_cassette(*this, CASSETTE_TAG),
- m_rs232(*this, RS232_TAG),
- m_sio(*this, "sio"),
- m_ksc0(*this, "KSC0"),
- m_ksc1(*this, "KSC1"),
- m_ksc2(*this, "KSC2"),
- m_ksc3(*this, "KSC3"),
- m_ksc4(*this, "KSC4"),
- m_ksc5(*this, "KSC5"),
- m_ksc6(*this, "KSC6"),
- m_ksc7(*this, "KSC7"),
- m_sw6(*this, "SW6"),
- m_slave_rx(1),
- m_slave_tx(1),
- m_slave_flag(1),
- m_rtc_irq(CLEAR_LINE),
- m_kbrequest(1)
+ m_maincpu(*this, HD6301V1_MAIN_TAG),
+ m_subcpu(*this, HD6301V1_SLAVE_TAG),
+ m_rtc(*this, MC146818_TAG),
+ m_lcdc0(*this, UPD7227_0_TAG),
+ m_lcdc1(*this, UPD7227_1_TAG),
+ m_lcdc2(*this, UPD7227_2_TAG),
+ m_lcdc3(*this, UPD7227_3_TAG),
+ m_lcdc4(*this, UPD7227_4_TAG),
+ m_lcdc5(*this, UPD7227_5_TAG),
+ m_speaker(*this, SPEAKER_TAG),
+ m_cassette(*this, CASSETTE_TAG),
+ m_rs232(*this, RS232_TAG),
+ m_sio(*this, "sio"),
+ m_ksc0(*this, "KSC0"),
+ m_ksc1(*this, "KSC1"),
+ m_ksc2(*this, "KSC2"),
+ m_ksc3(*this, "KSC3"),
+ m_ksc4(*this, "KSC4"),
+ m_ksc5(*this, "KSC5"),
+ m_ksc6(*this, "KSC6"),
+ m_ksc7(*this, "KSC7"),
+ m_sw6(*this, "SW6"),
+ m_slave_rx(1),
+ m_slave_tx(1),
+ m_slave_flag(1),
+ m_rtc_irq(CLEAR_LINE),
+ m_kbrequest(1)
{ }
required_device<cpu_device> m_maincpu;
diff --git a/src/mess/includes/mac.h b/src/mess/includes/mac.h
index 3b73637c322..bdde2f17f0d 100644
--- a/src/mess/includes/mac.h
+++ b/src/mess/includes/mac.h
@@ -152,7 +152,7 @@ class mac_sound_device : public device_t,
public:
mac_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
~mac_sound_device() {}
-
+
void enable_sound(int on);
void set_sound_buffer(int buffer);
void set_volume(int volume);
@@ -167,7 +167,7 @@ protected:
virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples);
private:
// internal state
-
+
ram_device *m_ram;
model_t m_mac_model;
diff --git a/src/mess/includes/pc1512.h b/src/mess/includes/pc1512.h
index e7af4cd7488..20198e543fe 100644
--- a/src/mess/includes/pc1512.h
+++ b/src/mess/includes/pc1512.h
@@ -36,7 +36,7 @@
#define SPEAKER_TAG "speaker"
#define ISA_BUS_TAG "isa"
#define SCREEN_TAG "screen"
-#define RS232_TAG "rs232"
+#define RS232_TAG "rs232"
class pc1512_state : public driver_device
{
diff --git a/src/mess/includes/sg1000.h b/src/mess/includes/sg1000.h
index 5cd5ec82b5b..6a341774d4f 100644
--- a/src/mess/includes/sg1000.h
+++ b/src/mess/includes/sg1000.h
@@ -29,8 +29,8 @@
#define UPD9255_1_TAG "upd9255_1"
#define CENTRONICS_TAG "centronics"
#define TMS9918A_TAG "tms9918a"
-#define RS232_TAG "rs232"
-#define CARTSLOT_TAG "slot"
+#define RS232_TAG "rs232"
+#define CARTSLOT_TAG "slot"
INPUT_PORTS_EXTERN( sk1100 );
diff --git a/src/mess/includes/sms.h b/src/mess/includes/sms.h
index 2dafd6a0022..10bfb3088b9 100644
--- a/src/mess/includes/sms.h
+++ b/src/mess/includes/sms.h
@@ -102,7 +102,7 @@ public:
device_t *m_left_lcd;
device_t *m_right_lcd;
address_space *m_space;
-
+
UINT8 m_bios_page_count;
UINT8 m_fm_detect;
UINT8 m_ctrl_reg;
@@ -113,11 +113,11 @@ public:
UINT8 m_input_port0;
UINT8 m_input_port1;
UINT8 m_gg_sio[5];
-
+
// [0] for 0x400-0x3fff, [1] for 0x4000-0x7fff, [2] for 0x8000-0xffff, [3] for 0x0000-0x0400
int m_bank_enabled[4];
UINT8 m_bios_page[4];
-
+
// for gamegear LCD persistence hack
bitmap_rgb32 m_prev_bitmap;
@@ -168,7 +168,7 @@ public:
UINT8 m_frame_sscope_state;
// these are only used by the Store Display unit, but we keep them here temporarily to avoid the need of separate start/reset
- UINT8 m_store_control;
+ UINT8 m_store_control;
int m_current_cartridge;
sega8_cart_slot_device *m_slots[16];
sega8_card_slot_device *m_cards[16];
@@ -241,7 +241,7 @@ public:
: sms_state(mconfig, type, tag),
m_control_cpu(*this, "control")
{ }
-
+
required_device<cpu_device> m_control_cpu;
DECLARE_READ8_MEMBER(sms_store_cart_select_r);
@@ -251,13 +251,13 @@ public:
DECLARE_READ8_MEMBER(sms_store_control_r);
DECLARE_WRITE8_MEMBER(sms_store_control_w);
DECLARE_DRIVER_INIT(smssdisp);
-
+
DECLARE_READ8_MEMBER(store_read_0000);
DECLARE_READ8_MEMBER(store_read_4000);
DECLARE_READ8_MEMBER(store_read_8000);
DECLARE_READ8_MEMBER(store_cart_peek);
DECLARE_WRITE8_MEMBER(store_write_cart);
-
+
DECLARE_WRITE_LINE_MEMBER(sms_store_int_callback);
};
diff --git a/src/mess/includes/superslave.h b/src/mess/includes/superslave.h
index ae6c8aab441..eb98b59ea8d 100644
--- a/src/mess/includes/superslave.h
+++ b/src/mess/includes/superslave.h
@@ -13,12 +13,12 @@
#include "machine/z80dart.h"
#include "machine/z80pio.h"
-#define Z80_TAG "u45"
-#define Z80DART_0_TAG "u14"
-#define Z80DART_1_TAG "u30"
-#define Z80PIO_TAG "u43"
-#define AM9519_TAG "u13"
-#define BR1941_TAG "u12"
+#define Z80_TAG "u45"
+#define Z80DART_0_TAG "u14"
+#define Z80DART_1_TAG "u30"
+#define Z80PIO_TAG "u43"
+#define AM9519_TAG "u13"
+#define BR1941_TAG "u12"
#define RS232_A_TAG "rs232a"
#define RS232_B_TAG "rs232b"
#define RS232_C_TAG "rs232c"
@@ -29,18 +29,18 @@ class superslave_state : public driver_device
public:
superslave_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_maincpu(*this, Z80_TAG),
- m_dart0(*this, Z80DART_0_TAG),
- m_dart1(*this, Z80DART_1_TAG),
- m_dbrg(*this, BR1941_TAG),
- m_ram(*this, RAM_TAG),
- m_rs232a(*this, RS232_A_TAG),
- m_rs232b(*this, RS232_B_TAG),
- m_rs232c(*this, RS232_C_TAG),
- m_rs232d(*this, RS232_D_TAG),
- m_rom(*this, Z80_TAG),
- m_memctrl(0x01),
- m_cmd(0x01)
+ m_maincpu(*this, Z80_TAG),
+ m_dart0(*this, Z80DART_0_TAG),
+ m_dart1(*this, Z80DART_1_TAG),
+ m_dbrg(*this, BR1941_TAG),
+ m_ram(*this, RAM_TAG),
+ m_rs232a(*this, RS232_A_TAG),
+ m_rs232b(*this, RS232_B_TAG),
+ m_rs232c(*this, RS232_C_TAG),
+ m_rs232d(*this, RS232_D_TAG),
+ m_rom(*this, Z80_TAG),
+ m_memctrl(0x01),
+ m_cmd(0x01)
{ }
required_device<cpu_device> m_maincpu;
diff --git a/src/mess/includes/tandy2k.h b/src/mess/includes/tandy2k.h
index 37269840b2c..bb4f9f2a016 100644
--- a/src/mess/includes/tandy2k.h
+++ b/src/mess/includes/tandy2k.h
@@ -35,7 +35,7 @@
#define WD1010_TAG "u18"
#define WD1100_11_TAG "u12"
#define CENTRONICS_TAG "centronics"
-#define RS232_TAG "rs232"
+#define RS232_TAG "rs232"
class tandy2k_state : public driver_device
{
diff --git a/src/mess/includes/v1050.h b/src/mess/includes/v1050.h
index ad6fe0d69a3..19f7175ca7e 100644
--- a/src/mess/includes/v1050.h
+++ b/src/mess/includes/v1050.h
@@ -43,7 +43,7 @@
#define TIMER_ACK_TAG "timer_ack"
#define TIMER_RST_TAG "timer_rst"
#define SASIBUS_TAG "sasi"
-#define RS232_TAG "rs232"
+#define RS232_TAG "rs232"
#define V1050_VIDEORAM_SIZE 0x8000
#define V1050_VIDEORAM_MASK 0x7fff
diff --git a/src/mess/includes/victor9k.h b/src/mess/includes/victor9k.h
index cc1fac5ab56..81f9360e6d7 100644
--- a/src/mess/includes/victor9k.h
+++ b/src/mess/includes/victor9k.h
@@ -43,8 +43,8 @@
#define M6522_4_TAG "1f"
#define M6522_5_TAG "1k"
#define M6522_6_TAG "1h"
-#define DAC0808_0_TAG "5b"
-#define DAC0808_1_TAG "5c"
+#define DAC0808_0_TAG "5b"
+#define DAC0808_1_TAG "5c"
#define CENTRONICS_TAG "centronics"
#define RS232_A_TAG "rs232a"
#define RS232_B_TAG "rs232b"
@@ -203,7 +203,7 @@ public:
int m_rdy1;
int m_ds0;
int m_ds1;
- UINT8 m_lms; /* motor speed */
+ UINT8 m_lms; /* motor speed */
int m_st[2]; /* stepper phase */
int m_stp[2]; /* stepper enable */
int m_drive; /* selected drive */
diff --git a/src/mess/includes/vixen.h b/src/mess/includes/vixen.h
index a63461593ce..bfbca9959c3 100644
--- a/src/mess/includes/vixen.h
+++ b/src/mess/includes/vixen.h
@@ -20,7 +20,7 @@
#define P8251A_TAG "c3"
#define DISCRETE_TAG "discrete"
#define SCREEN_TAG "screen"
-#define RS232_TAG "rs232"
+#define RS232_TAG "rs232"
class vixen_state : public driver_device
{
diff --git a/src/mess/includes/wangpc.h b/src/mess/includes/wangpc.h
index c3eab3d15e9..5a75ce50f3a 100644
--- a/src/mess/includes/wangpc.h
+++ b/src/mess/includes/wangpc.h
@@ -36,7 +36,7 @@
#define SCN2661_TAG "scn2661"
#define UPD765_TAG "upd765"
#define CENTRONICS_TAG "centronics"
-#define RS232_TAG "rs232"
+#define RS232_TAG "rs232"
class wangpc_state : public driver_device
{