mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
NSCSI: disable debug
The default debug settings are filling up error.log pretty quick when booting SCSI machines like hp9k_3xx. Disable debug in the default settings, it can still be enabled if some dev/user wants to debug NSCSI.
This commit is contained in:
parent
ce9f2f8a28
commit
19c17c87eb
@ -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"
|
||||
|
||||
|
@ -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")
|
||||
|
@ -8,7 +8,7 @@
|
||||
#define LOG_COMMAND (1U << 1)
|
||||
#define LOG_DATA (1U << 2)
|
||||
|
||||
#define VERBOSE (LOG_GENERAL)
|
||||
#define VERBOSE 0
|
||||
|
||||
#include "logmacro.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user