diff options
Diffstat (limited to 'src/devices/machine/latch8.cpp')
-rw-r--r-- | src/devices/machine/latch8.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/machine/latch8.cpp b/src/devices/machine/latch8.cpp index ca6d2c9f789..3c12ea10129 100644 --- a/src/devices/machine/latch8.cpp +++ b/src/devices/machine/latch8.cpp @@ -40,8 +40,7 @@ READ8_MEMBER( latch8_device::read ) { uint8_t res; - // FIXME: AM_MIRROR(0xff) doesn't work properly - //assert(offset == 0); + assert(offset == 0); res = m_value; if (m_has_read) |