1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-17 06:29:28 +00:00

Add SCC source.

This commit is contained in:
Thomas Harte 2024-01-19 10:47:21 -05:00
parent 70a753d8a8
commit 119b45001c

View File

@ -15,6 +15,7 @@ namespace Log {
enum class Source {
WDFDC,
SCSI,
SCC,
};
constexpr bool is_enabled(Source source) {
@ -25,6 +26,8 @@ constexpr bool is_enabled(Source source) {
// Allow for compile-time source-level enabling and disabling of different sources.
switch(source) {
default: return true;
case Source::SCC: return false;
}
}
@ -32,6 +35,7 @@ constexpr const char *prefix(Source source) {
switch(source) {
case Source::WDFDC: return "WD FDC";
case Source::SCSI: return "SCSI";
case Source::SCC: return "SCC";
}
}