diff options
author | 2022-06-05 13:54:41 -0400 | |
---|---|---|
committer | 2022-06-05 13:54:41 -0400 | |
commit | 6c474b6699118dc84ee52428a23ebf79268f861f (patch) | |
tree | a9c2a5e78eaed05f2759bc478e83894483c811d7 | |
parent | bb841af5c2e7dc5512b98fe90693834365ba4e52 (diff) |
at28c64b.cpp: Remove unnecessary debug logging. [R. Belmont]
-rw-r--r-- | src/devices/machine/at28c64b.cpp | 2 |
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]); } |