From a28b9913f70c868bb93c1a0970ed34d8314a2974 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Fri, 31 Aug 2018 13:40:01 +0700 Subject: [PATCH] Dump microcode info to log file. --- src/GBI.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/GBI.cpp b/src/GBI.cpp index 81681288..e6997f3d 100644 --- a/src/GBI.cpp +++ b/src/GBI.cpp @@ -362,6 +362,7 @@ void GBIInfo::loadMicrocode(u32 uc_start, u32 uc_dstart, u16 uc_dsize) current.NoN = info.NoN; current.negativeY = info.negativeY; current.fast3DPersp = info.fast3DPerspNorm; + LOG(LOG_VERBOSE, "Load microcode type: %d crc: 0x%08x romname: %s\n", current.type, uc_crc, RSP.romname); _makeCurrent(¤t); return; } @@ -442,6 +443,7 @@ void GBIInfo::loadMicrocode(u32 uc_start, u32 uc_dstart, u16 uc_dsize) if (type != NONE) { current.type = type; + LOG(LOG_VERBOSE, "Load microcode type: %d crc: 0x%08x romname: %s\n", current.type, uc_crc, RSP.romname); _makeCurrent(¤t); return; }