diff options
author | 2013-09-17 06:47:03 +0000 | |
---|---|---|
committer | 2013-09-17 06:47:03 +0000 | |
commit | 96aa5e1c086b4927456dc88b925d8ec112f0482e (patch) | |
tree | f59d136c51d4a065f39e3ab0d73981526c4d156b /src/emu/machine/74153.c | |
parent | a7d12daf5b4c3374e8ad47a003ac7fff73d5c8fc (diff) |
Cleanups and version bumpmame0150
Diffstat (limited to 'src/emu/machine/74153.c')
-rw-r--r-- | src/emu/machine/74153.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/machine/74153.c b/src/emu/machine/74153.c index a5e5de8ec56..9d21cfc6387 100644 --- a/src/emu/machine/74153.c +++ b/src/emu/machine/74153.c @@ -52,13 +52,13 @@ ttl74153_device::ttl74153_device(const machine_config &mconfig, const char *tag, m_input_lines[1][1] = 0; m_input_lines[1][2] = 0; m_input_lines[1][3] = 0; - + for (int i = 0; i < 2; i++) m_enable[i] = 0; - + for (int i = 0; i < 2; i++) m_output[i] = 0; - + for (int i = 0; i < 2; i++) m_last_output[i] = 0; } @@ -75,7 +75,7 @@ void ttl74153_device::device_config_complete() const ttl74153_config *intf = reinterpret_cast<const ttl74153_config *>(static_config()); if (intf != NULL) *static_cast<ttl74153_config *>(this) = *intf; - + // or initialize to defaults if none provided else { |