summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/fd1094.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/fd1094.c')
-rw-r--r--src/mame/machine/fd1094.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/fd1094.c b/src/mame/machine/fd1094.c
index 652ed749756..9a282971447 100644
--- a/src/mame/machine/fd1094.c
+++ b/src/mame/machine/fd1094.c
@@ -712,7 +712,7 @@ void fd1094_device::device_start()
// if address 0 is mapped to ROM, assume this is a state memory mapping and
// use the internal state change callback
- if (space(AS_PROGRAM)->get_read_ptr(0) != NULL)
+ if (space(AS_PROGRAM).get_read_ptr(0) != NULL)
m_state_change = state_change_delegate(FUNC(fd1094_device::default_state_change), this);
// determine length and configure our cache
@@ -961,7 +961,7 @@ void fd1094_device::decrypt(offs_t baseaddr, UINT32 size, const UINT16 *srcptr,
void fd1094_device::default_state_change(UINT8 state)
{
- space(AS_PROGRAM)->set_decrypted_region(0x000000, m_srcbytes - 1, m_cache.decrypted_opcodes(state));
+ space(AS_PROGRAM).set_decrypted_region(0x000000, m_srcbytes - 1, m_cache.decrypted_opcodes(state));
}