diff options
Diffstat (limited to 'src/emu/memarray.h')
| -rw-r--r-- | src/emu/memarray.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/memarray.h b/src/emu/memarray.h index 14b70217276..173af39955d 100644 --- a/src/emu/memarray.h +++ b/src/emu/memarray.h @@ -70,7 +70,7 @@ public: // entry-level readers and writers UINT32 read(int index) { return (this->*m_read_entry)(index); } void write(int index, UINT32 data) { (this->*m_write_entry)(index, data); } - + // byte/word/dword-level readers and writers UINT8 read8(offs_t offset) { return reinterpret_cast<UINT8 *>(m_base)[offset]; } UINT16 read16(offs_t offset) { return reinterpret_cast<UINT16 *>(m_base)[offset]; } |
