summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/archimedes/podule/io_we.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/archimedes/podule/io_we.cpp')
-rw-r--r--src/devices/bus/archimedes/podule/io_we.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/archimedes/podule/io_we.cpp b/src/devices/bus/archimedes/podule/io_we.cpp
index e7916c15b21..40d5092d824 100644
--- a/src/devices/bus/archimedes/podule/io_we.cpp
+++ b/src/devices/bus/archimedes/podule/io_we.cpp
@@ -169,7 +169,7 @@ void arc_bbcio_we_device::device_reset()
int arc_bbcio_we_device::get_analogue_input(int channel_number)
{
- return (0xff - m_analog->ch_r(channel_number)) << 8;
+ return m_analog->ch_r(channel_number) << 8;
}
void arc_bbcio_we_device::upd7002_eoc(int state)