diff --git a/Components/1770/1770.cpp b/Components/1770/1770.cpp index 3fb7eb33b..4884c8c61 100644 --- a/Components/1770/1770.cpp +++ b/Components/1770/1770.cpp @@ -103,7 +103,7 @@ uint8_t WD1770::read(int address) { if(status_.type == Status::One) status |= (status_.spin_up ? Flag::SpinUp : 0); } -// LOG("Returned status " << PADHEX(2) << int(status) << " of type " << 1+int(status_.type)); +// logger.info().append("Returned status %02x of type %d", status, 1+int(status_.type)); return status; } case 1: diff --git a/Outputs/Log.hpp b/Outputs/Log.hpp index 0340e6994..34b59b4bf 100644 --- a/Outputs/Log.hpp +++ b/Outputs/Log.hpp @@ -13,9 +13,33 @@ namespace Log { // But I prefer C files to C++ streams, so here it is for now. enum class Source { - WDFDC, - SCSI, + ADB, + Amiga, + AmigaDisk, + AmigaCopper, + AmigaChipset, + AmigaBlitter, + AtariST, + DirectAccessDevice, + Enterprise, + i8272, + IntelligentKeyboard, + IWM, + M50740, + Macintosh, + MasterSystem, + MFP68901, + MSX, + NCR5380, + OpenGL, SCC, + SCSI, + StaticAnalyser, + SZX, + TapeUEF, + TMS9918, + TZX, + WDFDC, }; constexpr bool is_enabled(Source source) { @@ -27,15 +51,19 @@ constexpr bool is_enabled(Source source) { switch(source) { default: return true; + // The following are all things I'm not actively working on. + case Source::NCR5380: case Source::SCC: return false; } } constexpr const char *prefix(Source source) { switch(source) { - case Source::WDFDC: return "WD FDC"; - case Source::SCSI: return "SCSI"; - case Source::SCC: return "SCC"; + case Source::StaticAnalyser: return "Analyser"; + case Source::WDFDC: return "WD FDC"; + case Source::SCSI: return "SCSI"; + case Source::SCC: return "SCC"; + case Source::NCR5380: return "5380"; } }