--- hatari/src/debug/log.c 2019/04/09 08:49:25 1.1.1.2 +++ hatari/src/debug/log.c 2019/04/09 08:53:03 1.1.1.4 @@ -1,8 +1,8 @@ /* * Hatari - log.c * - * This file is distributed under the GNU Public License, version 2 or at - * your option any later version. Read the file gpl.txt for details. + * This file is distributed under the GNU General Public License, version 2 + * or at your option any later version. Read the file gpl.txt for details. * * Logger functions. * @@ -29,7 +29,7 @@ const char Log_fileid[] = "Hatari log.c #include "file.h" #include "vdi.h" - +#if ENABLE_TRACING static struct { Uint64 Level; const char *Name; @@ -67,6 +67,8 @@ TraceOptions[] = { { TRACE_FDC , "fdc" } , + { TRACE_ACIA , "acia" } , + { TRACE_IKBD_CMDS , "ikbd_cmds" } , { TRACE_IKBD_ACIA , "ikbd_acia" } , { TRACE_IKBD_EXEC , "ikbd_exec" } , @@ -101,8 +103,14 @@ TraceOptions[] = { { TRACE_DSP_STATE , "dsp_state" }, { TRACE_DSP_ALL , "dsp_all" }, + { TRACE_DSP_SYMBOLS , "dsp_symbols" }, + { TRACE_CPU_SYMBOLS , "cpu_symbols" }, + + { TRACE_NVRAM , "nvram" } , + { TRACE_ALL , "all" } }; +#endif /* ENABLE_TRACING */ Uint64 LogTraceFlags = TRACE_NONE;