summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/hd66421.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/hd66421.c')
-rw-r--r--src/mess/video/hd66421.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/video/hd66421.c b/src/mess/video/hd66421.c
index 843b9ed66f1..f3c322f17da 100644
--- a/src/mess/video/hd66421.c
+++ b/src/mess/video/hd66421.c
@@ -92,7 +92,7 @@ const address_space_config *hd66421_device::memory_space_config(address_spacenum
inline UINT8 hd66421_device::readbyte(offs_t address)
{
- return space()->read_byte(address);
+ return space().read_byte(address);
}
@@ -102,7 +102,7 @@ inline UINT8 hd66421_device::readbyte(offs_t address)
inline void hd66421_device::writebyte(offs_t address, UINT8 data)
{
- space()->write_byte(address, data);
+ space().write_byte(address, data);
}