summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2022-06-05 13:54:41 -0400
committer arbee <rb6502@users.noreply.github.com>2022-06-05 13:54:41 -0400
commit6c474b6699118dc84ee52428a23ebf79268f861f (patch)
treea9c2a5e78eaed05f2759bc478e83894483c811d7 /src/devices/machine
parentbb841af5c2e7dc5512b98fe90693834365ba4e52 (diff)
at28c64b.cpp: Remove unnecessary debug logging. [R. Belmont]
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/at28c64b.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/devices/machine/at28c64b.cpp b/src/devices/machine/at28c64b.cpp
index e3b33128be8..7187a3cd093 100644
--- a/src/devices/machine/at28c64b.cpp
+++ b/src/devices/machine/at28c64b.cpp
@@ -96,10 +96,8 @@ void at28c64b_device::nvram_default()
}
/* populate from a memory region if present */
- printf("checking for default\n");
if (m_default_data.found())
{
- printf("Got default data\n");
for( offs_t offs = 0; offs < AT28C64B_DATA_BYTES; offs++ )
space(AS_PROGRAM).write_byte(offs, m_default_data[offs]);
}