summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/mc6854.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
commit0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch)
tree234109de1123b13f217494af4b3f8efad346d5cc /src/mess/machine/mc6854.h
parent111157ca09a9ff60fe4a9ba49173c315e94314fa (diff)
Cleanups and version bumpmame0148
Diffstat (limited to 'src/mess/machine/mc6854.h')
-rw-r--r--src/mess/machine/mc6854.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mess/machine/mc6854.h b/src/mess/machine/mc6854.h
index cd66c796611..e2c5ee3909c 100644
--- a/src/mess/machine/mc6854.h
+++ b/src/mess/machine/mc6854.h
@@ -55,27 +55,27 @@ extern const device_type MC6854;
struct mc6854_interface
{
- devcb_write_line out_irq_func; /* interrupt request */
+ devcb_write_line out_irq_func; /* interrupt request */
- /* low-level, bit-based interface */
- devcb_read_line in_rxd_func; /* receive bit */
- devcb_write_line out_txd_func; /* transmit bit */
+ /* low-level, bit-based interface */
+ devcb_read_line in_rxd_func; /* receive bit */
+ devcb_write_line out_txd_func; /* transmit bit */
- /* high-level, frame-based interface */
- void ( * out_frame ) ( device_t *device, UINT8* data, int length );
+ /* high-level, frame-based interface */
+ void ( * out_frame ) ( device_t *device, UINT8* data, int length );
- /* control lines */
- devcb_write_line out_rts_func; /* 1 = transmitting, 0 = idle */
- devcb_write_line out_dtr_func; /* 1 = data transmit ready, 0 = busy */
+ /* control lines */
+ devcb_write_line out_rts_func; /* 1 = transmitting, 0 = idle */
+ devcb_write_line out_dtr_func; /* 1 = data transmit ready, 0 = busy */
};
#define MCFG_MC6854_ADD(_tag, _intrf) \
- MCFG_DEVICE_ADD(_tag, MC6854, 0) \
- MCFG_DEVICE_CONFIG(_intrf)
+ MCFG_DEVICE_ADD(_tag, MC6854, 0) \
+ MCFG_DEVICE_CONFIG(_intrf)
-#define MCFG_MC6854_REMOVE(_tag) \
- MCFG_DEVICE_REMOVE(_tag)
+#define MCFG_MC6854_REMOVE(_tag) \
+ MCFG_DEVICE_REMOVE(_tag)
/* ---------- functions ------------ */