summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine')
-rw-r--r--src/emu/machine/6526cia.c2
-rw-r--r--src/emu/machine/74123.c2
-rw-r--r--src/emu/machine/7474.c4
-rw-r--r--src/emu/machine/7474.h4
-rw-r--r--src/emu/machine/8237dma.c2
-rw-r--r--src/emu/machine/devhelpr.h2
-rw-r--r--src/emu/machine/eeprom.c6
-rw-r--r--src/emu/machine/f3853.c26
-rw-r--r--src/emu/machine/f3853.h8
-rw-r--r--src/emu/machine/i2cmem.c2
-rw-r--r--src/emu/machine/timekpr.c8
-rw-r--r--src/emu/machine/timekpr.h8
-rw-r--r--src/emu/machine/z80dart.c14
13 files changed, 44 insertions, 44 deletions
diff --git a/src/emu/machine/6526cia.c b/src/emu/machine/6526cia.c
index 71d91b4bcb0..6c809fe1751 100644
--- a/src/emu/machine/6526cia.c
+++ b/src/emu/machine/6526cia.c
@@ -507,7 +507,7 @@ TIMER_CALLBACK( mos6526_device::clock_tod_callback )
/*-------------------------------------------------
- cnt_w
+ cnt_w
-------------------------------------------------*/
void mos6526_device::cnt_w(UINT8 state)
diff --git a/src/emu/machine/74123.c b/src/emu/machine/74123.c
index 2101c184c01..1ddafa17589 100644
--- a/src/emu/machine/74123.c
+++ b/src/emu/machine/74123.c
@@ -172,7 +172,7 @@ int ttl74123_device::timer_running()
/*-------------------------------------------------
- TIMER_CALLBACK( output_callback )
+ TIMER_CALLBACK( output_callback )
-------------------------------------------------*/
TIMER_CALLBACK( ttl74123_device::output_callback )
diff --git a/src/emu/machine/7474.c b/src/emu/machine/7474.c
index ca42b052e96..84193267d87 100644
--- a/src/emu/machine/7474.c
+++ b/src/emu/machine/7474.c
@@ -176,7 +176,7 @@ void ttl7474_device::device_reset()
void ttl7474_device::update()
{
- if (!m_preset && m_clear) /* line 1 in truth table */
+ if (!m_preset && m_clear) /* line 1 in truth table */
{
m_output = 1;
m_output_comp = 0;
@@ -191,7 +191,7 @@ void ttl7474_device::update()
m_output = 1;
m_output_comp = 1;
}
- else if (!m_last_clock && m_clk) /* line 4 in truth table */
+ else if (!m_last_clock && m_clk) /* line 4 in truth table */
{
m_output = m_d;
m_output_comp = !m_d;
diff --git a/src/emu/machine/7474.h b/src/emu/machine/7474.h
index 405bc65d35e..a4ed2b270ab 100644
--- a/src/emu/machine/7474.h
+++ b/src/emu/machine/7474.h
@@ -139,7 +139,7 @@ private:
/* inputs */
UINT8 m_clear; /* pin 1/13 */
UINT8 m_preset; /* pin 4/10 */
- UINT8 m_clk; /* pin 3/11 */
+ UINT8 m_clk; /* pin 3/11 */
UINT8 m_d; /* pin 2/12 */
/* outputs */
@@ -173,4 +173,4 @@ READ_LINE_DEVICE_HANDLER( ttl7474_output_r );
READ_LINE_DEVICE_HANDLER( ttl7474_output_comp_r ); /* NOT strictly the same as !ttl7474_output_r() */
-#endif /* __TTL7474_H__ */ \ No newline at end of file
+#endif /* __TTL7474_H__ */
diff --git a/src/emu/machine/8237dma.c b/src/emu/machine/8237dma.c
index f5d23ddbe31..d7fee2977b4 100644
--- a/src/emu/machine/8237dma.c
+++ b/src/emu/machine/8237dma.c
@@ -284,7 +284,7 @@ void i8237_device::i8237_timerproc()
/* Check if a new DMA request has been received. */
/* Bit 6 of the command register determines whether the DREQ signals are active
- high or active low. */
+ high or active low. */
UINT16 pending_request = ( ( m_command & 0x40 ) ? ~m_drq : m_drq ) & ~m_mask;
if ( pending_request & 0x0f )
diff --git a/src/emu/machine/devhelpr.h b/src/emu/machine/devhelpr.h
index 96f5a1b281e..8d35dc7a295 100644
--- a/src/emu/machine/devhelpr.h
+++ b/src/emu/machine/devhelpr.h
@@ -69,4 +69,4 @@
virtual void device_reset(); \
};
-#endif // __DEVHELPR_H__ \ No newline at end of file
+#endif // __DEVHELPR_H__
diff --git a/src/emu/machine/eeprom.c b/src/emu/machine/eeprom.c
index ea5a692ec8f..6be7f010694 100644
--- a/src/emu/machine/eeprom.c
+++ b/src/emu/machine/eeprom.c
@@ -107,7 +107,7 @@ device_t *eeprom_device_config::alloc_device(running_machine &machine) const
//-------------------------------------------------
-// static_set_interface - configuration helper
+// static_set_interface - configuration helper
// to set the interface
//-------------------------------------------------
@@ -133,7 +133,7 @@ void eeprom_device_config::static_set_default_data(device_config *device, const
{
eeprom_device_config *eeprom = downcast<eeprom_device_config *>(device);
if (eeprom->m_data_bits != 8) mame_printf_warning("16-bit EEPROM set with 8-bit data\n");
-// assert(eeprom->m_data_bits == 8);
+// assert(eeprom->m_data_bits == 8);
eeprom->m_default_data = data;
eeprom->m_default_data_size = size;
}
@@ -142,7 +142,7 @@ void eeprom_device_config::static_set_default_data(device_config *device, const
{
eeprom_device_config *eeprom = downcast<eeprom_device_config *>(device);
if (eeprom->m_data_bits != 16) mame_printf_warning("8-bit EEPROM set with 16-bit data\n");
-// assert(eeprom->m_data_bits == 16);
+// assert(eeprom->m_data_bits == 16);
eeprom->m_default_data = reinterpret_cast<const UINT8 *>(data);
eeprom->m_default_data_size = size;
}
diff --git a/src/emu/machine/f3853.c b/src/emu/machine/f3853.c
index 8e689381296..3ee448e47bf 100644
--- a/src/emu/machine/f3853.c
+++ b/src/emu/machine/f3853.c
@@ -1,22 +1,22 @@
/**********************************************************************
- Fairchild F3853 SRAM interface with integrated interrupt
- controller and timer (SMI)
+ Fairchild F3853 SRAM interface with integrated interrupt
+ controller and timer (SMI)
- This chip is a timer shift register, basically the same as in the
- F3851.
+ This chip is a timer shift register, basically the same as in the
+ F3851.
- Based on a datasheet obtained from www.freetradezone.com
+ Based on a datasheet obtained from www.freetradezone.com
- The SMI does not have DC0 and DC1, only DC0; as a result, it does
- not respond to the main CPU's DC0/DC1 swap instruction. This may
- lead to two devices responding to the same DC0 address and
- attempting to place their bytes on the data bus simultaneously!
+ The SMI does not have DC0 and DC1, only DC0; as a result, it does
+ not respond to the main CPU's DC0/DC1 swap instruction. This may
+ lead to two devices responding to the same DC0 address and
+ attempting to place their bytes on the data bus simultaneously!
- 8-bit shift register:
- Feedback in0 = !((out3 ^ out4) ^ (out5 ^ out7))
- Interrupts are at 0xfe
- 0xff stops the register (0xfe is never reached)
+ 8-bit shift register:
+ Feedback in0 = !((out3 ^ out4) ^ (out5 ^ out7))
+ Interrupts are at 0xfe
+ 0xff stops the register (0xfe is never reached)
**********************************************************************/
diff --git a/src/emu/machine/f3853.h b/src/emu/machine/f3853.h
index 716d8bb518c..74640a78470 100644
--- a/src/emu/machine/f3853.h
+++ b/src/emu/machine/f3853.h
@@ -1,10 +1,10 @@
/**********************************************************************
- Fairchild F3853 SRAM interface with integrated interrupt
- controller and timer
+ Fairchild F3853 SRAM interface with integrated interrupt
+ controller and timer
- This chip is a timer shift register, basically the same as in the
- F3851.
+ This chip is a timer shift register, basically the same as in the
+ F3851.
**********************************************************************/
diff --git a/src/emu/machine/i2cmem.c b/src/emu/machine/i2cmem.c
index 94efd738d1b..ee5ed8fb9f7 100644
--- a/src/emu/machine/i2cmem.c
+++ b/src/emu/machine/i2cmem.c
@@ -110,7 +110,7 @@ device_t *i2cmem_device_config::alloc_device( running_machine &machine ) const
//-------------------------------------------------
-// static_set_interface - set the device
+// static_set_interface - set the device
// configuration
//-------------------------------------------------
diff --git a/src/emu/machine/timekpr.c b/src/emu/machine/timekpr.c
index 7a774f0d46d..f5bb8960723 100644
--- a/src/emu/machine/timekpr.c
+++ b/src/emu/machine/timekpr.c
@@ -3,10 +3,10 @@
timekpr.h
Various ST Microelectronics timekeeper SRAM implementations:
- - M48T02
- - M48T35
- - M48T58
- - MK48T08
+ - M48T02
+ - M48T35
+ - M48T58
+ - MK48T08
***************************************************************************/
diff --git a/src/emu/machine/timekpr.h b/src/emu/machine/timekpr.h
index e62919ed325..ad9df486356 100644
--- a/src/emu/machine/timekpr.h
+++ b/src/emu/machine/timekpr.h
@@ -3,10 +3,10 @@
timekpr.h
Various ST Microelectronics timekeeper SRAM implementations:
- - M48T02
- - M48T35
- - M48T58
- - MK48T08
+ - M48T02
+ - M48T35
+ - M48T58
+ - MK48T08
***************************************************************************/
diff --git a/src/emu/machine/z80dart.c b/src/emu/machine/z80dart.c
index dd653ce16c8..0e66bfc93d2 100644
--- a/src/emu/machine/z80dart.c
+++ b/src/emu/machine/z80dart.c
@@ -5,11 +5,11 @@
Copyright (c) 2008, The MESS Team.
Visit http://mamedev.org for licensing and usage restrictions.
- The z80dart/z80sio itself is based on an older intel serial chip, the i8274 MPSC
- (see http://doc.chipfind.ru/pdf/intel/8274.pdf), which also has almost identical
- behavior, except lacks the interrupt daisy chaining and has its own interrupt/dma
- scheme which uses write register 2 on channel A, that register which is unused on
- the z80dart and z80sio.
+ The z80dart/z80sio itself is based on an older intel serial chip, the i8274 MPSC
+ (see http://doc.chipfind.ru/pdf/intel/8274.pdf), which also has almost identical
+ behavior, except lacks the interrupt daisy chaining and has its own interrupt/dma
+ scheme which uses write register 2 on channel A, that register which is unused on
+ the z80dart and z80sio.
***************************************************************************/
@@ -21,8 +21,8 @@
- wr0 reset tx interrupt pending
- wait/ready
- 1.5 stop bits
- - synchronous mode (Z80-SIO/1,2)
- - SDLC mode (Z80-SIO/1,2)
+ - synchronous mode (Z80-SIO/1,2)
+ - SDLC mode (Z80-SIO/1,2)
*/