summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emumem_hedr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/emumem_hedr.h')
-rw-r--r--src/emu/emumem_hedr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/emumem_hedr.h b/src/emu/emumem_hedr.h
index 87fff01635e..b30dfb95637 100644
--- a/src/emu/emumem_hedr.h
+++ b/src/emu/emumem_hedr.h
@@ -8,7 +8,7 @@
template<int HighBits, int Width, int AddrShift, int Endian> class handler_entry_read_dispatch : public handler_entry_read<Width, AddrShift, Endian>
{
public:
- using uX = typename handler_entry_size<Width>::uX;
+ using uX = typename emu::detail::handler_entry_size<Width>::uX;
using inh = handler_entry_read<Width, AddrShift, Endian>;
using mapping = typename inh::mapping;
@@ -36,7 +36,7 @@ public:
void enumerate_references(handler_entry::reflist &refs) const override;
protected:
- static constexpr u32 LowBits = handler_entry_dispatch_lowbits(HighBits, Width, AddrShift);
+ static constexpr u32 LowBits = emu::detail::handler_entry_dispatch_lowbits(HighBits, Width, AddrShift);
static constexpr u32 BITCOUNT = HighBits > LowBits ? HighBits - LowBits : 0;
static constexpr u32 COUNT = 1 << BITCOUNT;
static constexpr offs_t BITMASK = make_bitmask<offs_t>(BITCOUNT);