summaryrefslogtreecommitdiffstats
path: root/src/devices/mem24/prog/mem24_prog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/mem24/prog/mem24_prog.cpp')
-rw-r--r--src/devices/mem24/prog/mem24_prog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/mem24/prog/mem24_prog.cpp b/src/devices/mem24/prog/mem24_prog.cpp
index 338c217..82c596c 100644
--- a/src/devices/mem24/prog/mem24_prog.cpp
+++ b/src/devices/mem24/prog/mem24_prog.cpp
@@ -32,8 +32,8 @@ bool Programmer::Mem24DeviceSpecific::write(const Device::Array &data)
bool Programmer::Mem24DeviceSpecific::verifyByte(uint index, BitValue d, const VerifyData &vdata)
{
BitValue v = static_cast<const Mem24::Memory &>(vdata.memory).byte(index);
- v = v.tqmaskWith(0xFF);
- d = d.tqmaskWith(0xFF);
+ v = v.maskWith(0xFF);
+ d = d.maskWith(0xFF);
if ( v==d ) return true;
Address address = index;
if ( vdata.actions & BlankCheckVerify )