summaryrefslogtreecommitdiffstats
path: root/src/devices/pic/base/pic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/pic/base/pic.h')
-rw-r--r--src/devices/pic/base/pic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/pic/base/pic.h b/src/devices/pic/base/pic.h
index 17fb96a..4005bae 100644
--- a/src/devices/pic/base/pic.h
+++ b/src/devices/pic/base/pic.h
@@ -121,7 +121,7 @@ public:
uint nbBitsWord(MemoryRangeType type) const { return _architecture.data().nbBits[type.type()]; }
uint nbBytesWord(MemoryRangeType type) const { return nbBitsToNbBytes(nbBitsWord(type)); }
uint nbCharsWord(MemoryRangeType type) const { return nbBitsToNbChars(nbBitsWord(type)); }
- BitValue tqmask(MemoryRangeType type) const { return uint(1 << nbBitsWord(type))-1; }
+ BitValue mask(MemoryRangeType type) const { return uint(1 << nbBitsWord(type))-1; }
BitValue userIdRecommendedMask() const { return _userIdRecommendedMask; }
const Config &config() const { return *_config; }
Architecture architecture() const { return _architecture; }