diff options
author | 2015-12-26 10:27:03 +0100 | |
---|---|---|
committer | 2015-12-26 10:27:03 +0100 | |
commit | a546ea128238feaa616451ed7b7f4fe389dd1460 (patch) | |
tree | 7ef7ce818fbf2ca1b6460d7c30554072c4056793 /src/devices/machine/ncr5380.cpp | |
parent | 2d00b8653dcaf9222721bc9fd995c1c1cc739c83 (diff) |
cleanup (nw)
Diffstat (limited to 'src/devices/machine/ncr5380.cpp')
-rw-r--r-- | src/devices/machine/ncr5380.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/ncr5380.cpp b/src/devices/machine/ncr5380.cpp index 175e9130c1c..fe62190d40f 100644 --- a/src/devices/machine/ncr5380.cpp +++ b/src/devices/machine/ncr5380.cpp @@ -137,7 +137,7 @@ void ncr5380_device::device_stop() UINT8 ncr5380_device::ncr5380_read_reg(UINT32 offset) { int reg = offset & 7; - UINT8 rv = 0; + UINT8 rv; switch( reg ) { |