1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-01 11:16:16 +00:00

Be more disciplined about errant accesses.

This commit is contained in:
Thomas Harte
2024-03-28 21:31:07 -04:00
parent 0ddbc67b1f
commit 2a14557478
2 changed files with 19 additions and 3 deletions

View File

@@ -31,6 +31,7 @@ enum class Source {
AtariST,
AtariSTDMAController,
CommodoreStaticAnalyser,
CMOSRTC,
DirectAccessDevice,
Enterprise,
i8272,
@@ -100,6 +101,7 @@ constexpr const char *prefix(Source source) {
case Source::AtariST: return "AtariST";
case Source::AtariSTDMAController: return "DMA";
case Source::CommodoreStaticAnalyser: return "Commodore Static Analyser";
case Source::CMOSRTC: return "CMOSRTC";
case Source::DirectAccessDevice: return "Direct Access Device";
case Source::Enterprise: return "Enterprise";
case Source::i8272: return "i8272";