Merge pull request #4120 from hp9k/disable_nscsi_debug

NSCSI: disable debug
This commit is contained in:
R. Belmont 2018-10-11 07:49:31 -04:00 committed by GitHub
commit 2b2a84afe2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
#define LOG_DATA (1U << 3)
//#define VERBOSE (LOG_GENERAL | LOG_STATE | LOG_CONTROL | LOG_DATA)
#define VERBOSE (LOG_GENERAL)
#define VERBOSE 0
#include "logmacro.h"

View File

@ -3,7 +3,7 @@
#include "emu.h"
#include "machine/nscsi_cd.h"
#define VERBOSE 1
#define VERBOSE 0
#include "logmacro.h"
DEFINE_DEVICE_TYPE(NSCSI_CDROM, nscsi_cdrom_device, "scsi_cdrom", "SCSI CD-ROM")

View File

@ -8,7 +8,7 @@
#define LOG_COMMAND (1U << 1)
#define LOG_DATA (1U << 2)
#define VERBOSE (LOG_GENERAL)
#define VERBOSE 0
#include "logmacro.h"