summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/z88_rom.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
commit0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch)
tree234109de1123b13f217494af4b3f8efad346d5cc /src/mess/machine/z88_rom.c
parent111157ca09a9ff60fe4a9ba49173c315e94314fa (diff)
Cleanups and version bumpmame0148
Diffstat (limited to 'src/mess/machine/z88_rom.c')
-rw-r--r--src/mess/machine/z88_rom.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mess/machine/z88_rom.c b/src/mess/machine/z88_rom.c
index 26970fd55a6..d4e937651be 100644
--- a/src/mess/machine/z88_rom.c
+++ b/src/mess/machine/z88_rom.c
@@ -30,13 +30,13 @@ const device_type Z88_256K_ROM = &device_creator<z88_256k_rom_device>;
//-------------------------------------------------
z88_32k_rom_device::z88_32k_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, Z88_32K_ROM, "Z88 32KB ROM", tag, owner, clock),
+ : device_t(mconfig, Z88_32K_ROM, "Z88 32KB ROM", tag, owner, clock),
device_z88cart_interface( mconfig, *this )
{
}
z88_32k_rom_device::z88_32k_rom_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, type, name, tag, owner, clock),
+ : device_t(mconfig, type, name, tag, owner, clock),
device_z88cart_interface( mconfig, *this )
{
}
@@ -46,7 +46,7 @@ z88_32k_rom_device::z88_32k_rom_device(const machine_config &mconfig, device_typ
//-------------------------------------------------
z88_128k_rom_device::z88_128k_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : z88_32k_rom_device(mconfig, Z88_128K_ROM, "Z88 128KB ROM", tag, owner, clock)
+ : z88_32k_rom_device(mconfig, Z88_128K_ROM, "Z88 128KB ROM", tag, owner, clock)
{
}
@@ -55,7 +55,7 @@ z88_128k_rom_device::z88_128k_rom_device(const machine_config &mconfig, const ch
//-------------------------------------------------
z88_256k_rom_device::z88_256k_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : z88_32k_rom_device(mconfig, Z88_256K_ROM, "Z88 256KB ROM", tag, owner, clock)
+ : z88_32k_rom_device(mconfig, Z88_256K_ROM, "Z88 256KB ROM", tag, owner, clock)
{
}
@@ -85,4 +85,3 @@ READ8_MEMBER(z88_32k_rom_device::read)
{
return m_rom[offset & (get_cart_size() - 1)];
}
-