From 52b801717f856e6a708a4106c585a49c6115bd67 Mon Sep 17 00:00:00 2001 From: Juergen Buchmueller Date: Sat, 13 Aug 2016 16:14:04 +0200 Subject: [PATCH] alto2: oops - disable a2ram printfs --- src/devices/cpu/alto2/a2ram.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/devices/cpu/alto2/a2ram.cpp b/src/devices/cpu/alto2/a2ram.cpp index 085b81ea497..14fe24dd21e 100644 --- a/src/devices/cpu/alto2/a2ram.cpp +++ b/src/devices/cpu/alto2/a2ram.cpp @@ -7,9 +7,9 @@ *****************************************************************************/ #include "alto2cpu.h" -#define DEBUG_WRTRAM 1 //!< define to 1 to print CRAM writes -#define DEBUG_RDRAM 1 //!< define to 1 to print CRAM reads -#define DEBUG_BRANCH 1 //!< define to 1 to print branching to ROM/RAM +#define DEBUG_WRTRAM 0 //!< define to 1 to print CRAM writes +#define DEBUG_RDRAM 0 //!< define to 1 to print CRAM reads +#define DEBUG_BRANCH 0 //!< define to 1 to print branching to ROM/RAM //! direct read access to the microcode CRAM #define RD_CRAM(addr) (*reinterpret_cast(m_ucode_cram.get() + addr * 4))