diff options
Diffstat (limited to 'src/devices/bus/bbc/rom/dfs.cpp')
-rw-r--r-- | src/devices/bus/bbc/rom/dfs.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/bbc/rom/dfs.cpp b/src/devices/bus/bbc/rom/dfs.cpp index 8a3aac6d588..7395b31dae9 100644 --- a/src/devices/bus/bbc/rom/dfs.cpp +++ b/src/devices/bus/bbc/rom/dfs.cpp @@ -2,7 +2,7 @@ // copyright-holders:Nigel Barnes /*************************************************************************** - BBC Micro MRM E00 DFS emulation + BBC Micro E00 DFS emulation Comprises of 8K ROM and 2K/4K? RAM on a carrier board, with flying lead to RW line to enable writing to RAM. @@ -17,7 +17,7 @@ // DEVICE DEFINITIONS //************************************************************************** -DEFINE_DEVICE_TYPE(BBC_MRME00, bbc_mrme00_device, "bbc_mrme00", "BBC Micro MRM E00 DFS") +DEFINE_DEVICE_TYPE(BBC_DFSE00, bbc_dfse00_device, "bbc_dfse00", "BBC Micro E00 DFS") //************************************************************************** // LIVE DEVICE @@ -27,8 +27,8 @@ DEFINE_DEVICE_TYPE(BBC_MRME00, bbc_mrme00_device, "bbc_mrme00", "BBC Micro MRM E // bbc_rom_device - constructor //------------------------------------------------- -bbc_mrme00_device::bbc_mrme00_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : device_t(mconfig, BBC_MRME00, tag, owner, clock) +bbc_dfse00_device::bbc_dfse00_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) + : device_t(mconfig, BBC_DFSE00, tag, owner, clock) , device_bbc_rom_interface(mconfig, *this) { } @@ -37,7 +37,7 @@ bbc_mrme00_device::bbc_mrme00_device(const machine_config &mconfig, const char * // device_start - device-specific startup //------------------------------------------------- -void bbc_mrme00_device::device_start() +void bbc_dfse00_device::device_start() { } @@ -45,7 +45,7 @@ void bbc_mrme00_device::device_start() // read //------------------------------------------------- -uint8_t bbc_mrme00_device::read(offs_t offset) +uint8_t bbc_dfse00_device::read(offs_t offset) { if (offset < get_rom_size()) return get_rom_base()[offset & (get_rom_size() - 1)]; @@ -57,7 +57,7 @@ uint8_t bbc_mrme00_device::read(offs_t offset) // write //------------------------------------------------- -void bbc_mrme00_device::write(offs_t offset, uint8_t data) +void bbc_dfse00_device::write(offs_t offset, uint8_t data) { get_ram_base()[offset & (get_ram_size() - 1)] = data; } |