summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/eeprom.cpp
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2016-03-28 18:52:50 +0200
committer Angelo Salese <angelosa@users.noreply.github.com>2016-03-28 18:52:50 +0200
commit17d42f39374080b1e2a3ba352316ccf4d2c606d2 (patch)
treecf86305b9c51f9f22824adbc02208f7f0d8eb281 /src/devices/machine/eeprom.cpp
parent4ecb27529717f07f4fc777493d8c0f6caeab0a5b (diff)
Newline for some eeprom.cpp messages, nw
Diffstat (limited to 'src/devices/machine/eeprom.cpp')
-rw-r--r--src/devices/machine/eeprom.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/eeprom.cpp b/src/devices/machine/eeprom.cpp
index 53b92a0ee0d..042e4535918 100644
--- a/src/devices/machine/eeprom.cpp
+++ b/src/devices/machine/eeprom.cpp
@@ -146,7 +146,7 @@ void eeprom_base_device::static_set_timing(device_t &device, timing_type type, c
UINT32 eeprom_base_device::read(offs_t address)
{
if (!ready())
- logerror("EEPROM: Read performed before previous operation completed!");
+ logerror("EEPROM: Read performed before previous operation completed!\n");
return internal_read(address);
}
@@ -158,7 +158,7 @@ UINT32 eeprom_base_device::read(offs_t address)
void eeprom_base_device::write(offs_t address, UINT32 data)
{
if (!ready())
- logerror("EEPROM: Write performed before previous operation completed!");
+ logerror("EEPROM: Write performed before previous operation completed!\n");
internal_write(address, data);
m_completion_time = machine().time() + m_operation_time[WRITE_TIME];
}
@@ -173,7 +173,7 @@ void eeprom_base_device::write(offs_t address, UINT32 data)
void eeprom_base_device::write_all(UINT32 data)
{
if (!ready())
- logerror("EEPROM: Write all performed before previous operation completed!");
+ logerror("EEPROM: Write all performed before previous operation completed!\n");
for (offs_t address = 0; address < (1 << m_address_bits); address++)
internal_write(address, internal_read(address) & data);
m_completion_time = machine().time() + m_operation_time[WRITE_ALL_TIME];
@@ -187,7 +187,7 @@ void eeprom_base_device::write_all(UINT32 data)
void eeprom_base_device::erase(offs_t address)
{
if (!ready())
- logerror("EEPROM: Erase performed before previous operation completed!");
+ logerror("EEPROM: Erase performed before previous operation completed!\n");
internal_write(address, ~0);
m_completion_time = machine().time() + m_operation_time[ERASE_TIME];
}
@@ -200,7 +200,7 @@ void eeprom_base_device::erase(offs_t address)
void eeprom_base_device::erase_all()
{
if (!ready())
- logerror("EEPROM: Erase all performed before previous operation completed!");
+ logerror("EEPROM: Erase all performed before previous operation completed!\n");
for (offs_t address = 0; address < (1 << m_address_bits); address++)
internal_write(address, ~0);
m_completion_time = machine().time() + m_operation_time[ERASE_ALL_TIME];