summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emumem_heun.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/emumem_heun.h')
-rw-r--r--src/emu/emumem_heun.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/emumem_heun.h b/src/emu/emumem_heun.h
index 4d102267f5f..bfd099f0934 100644
--- a/src/emu/emumem_heun.h
+++ b/src/emu/emumem_heun.h
@@ -14,7 +14,7 @@ template<int Width, int AddrShift> class handler_entry_read_unmapped : public ha
public:
using uX = typename emu::detail::handler_entry_size<Width>::uX;
- handler_entry_read_unmapped(address_space *space) : handler_entry_read<Width, AddrShift>(space, 0) {}
+ handler_entry_read_unmapped(address_space *space) : handler_entry_read<Width, AddrShift>(space, handler_entry::F_UNMAP) {}
~handler_entry_read_unmapped() = default;
uX read(offs_t offset, uX mem_mask) const override;
@@ -27,7 +27,7 @@ template<int Width, int AddrShift> class handler_entry_write_unmapped : public h
public:
using uX = typename emu::detail::handler_entry_size<Width>::uX;
- handler_entry_write_unmapped(address_space *space) : handler_entry_write<Width, AddrShift>(space, 0) {}
+ handler_entry_write_unmapped(address_space *space) : handler_entry_write<Width, AddrShift>(space, handler_entry::F_UNMAP) {}
~handler_entry_write_unmapped() = default;
void write(offs_t offset, uX data, uX mem_mask) const override;