From 569cfaf5911919bbfab269fb7a32ec683a8d6b98 Mon Sep 17 00:00:00 2001 From: "Howard M. Harte" Date: Fri, 20 Mar 2015 19:19:29 -0700 Subject: [PATCH] AltairZ80: mfdc: Only display ROM write attempt error messages when debug is enabled --- AltairZ80/mfdc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AltairZ80/mfdc.c b/AltairZ80/mfdc.c index 96a107a2..e46a8105 100644 --- a/AltairZ80/mfdc.c +++ b/AltairZ80/mfdc.c @@ -2,8 +2,8 @@ * * * $Id: mfdc.c 1995 2008-07-15 03:59:13Z hharte $ * * * - * Copyright (c) 2007-2008 Howard M. Harte. * - * http://www.hartetec.com * + * Copyright (c) 2007-2015 Howard M. Harte. * + * hharte@magicandroidapps.com * * * * Permission is hereby granted, free of charge, to any person obtaining * * a copy of this software and associated documentation files (the * @@ -353,7 +353,7 @@ static int32 mdskdev(const int32 Addr, const int32 rw, const int32 data) if(rw == 0) { /* Read boot ROM */ return(mfdc_rom[Addr & 0xFF]); } else { - sim_printf("MFDC: Attempt to write to boot ROM." NLP); + sim_debug(VERBOSE_MSG, &mfdc_dev, "MFDC: " ADDRESS_FORMAT " Attempt to write to boot ROM." NLP, PCX); return (-1); } break;