summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/prof80mmu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/prof80mmu.c')
-rw-r--r--src/mess/machine/prof80mmu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/prof80mmu.c b/src/mess/machine/prof80mmu.c
index 1acad1a90b8..720fef9abd4 100644
--- a/src/mess/machine/prof80mmu.c
+++ b/src/mess/machine/prof80mmu.c
@@ -103,7 +103,7 @@ READ8_MEMBER( prof80_mmu_device::program_r )
{
offset |= 0xf0000;
}
-
+
return this->space(AS_PROGRAM).read_byte(offset);
}
@@ -123,6 +123,6 @@ WRITE8_MEMBER( prof80_mmu_device::program_w )
{
offset |= 0xf0000;
}
-
+
this->space(AS_PROGRAM).write_byte(offset, data);
}