From ccace48d5af8f6870d356cc55fe0f0982dcd591a Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 15 Sep 2025 14:54:10 -0400 Subject: [PATCH] Declare clock rate, at least. --- Machines/Acorn/BBCMicro/BBCMicro.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Machines/Acorn/BBCMicro/BBCMicro.cpp b/Machines/Acorn/BBCMicro/BBCMicro.cpp index 202c4b527..a876a9345 100644 --- a/Machines/Acorn/BBCMicro/BBCMicro.cpp +++ b/Machines/Acorn/BBCMicro/BBCMicro.cpp @@ -24,6 +24,8 @@ public: const Analyser::Static::Acorn::BBCMicroTarget &target, const ROMMachine::ROMFetcher &rom_fetcher ) { + set_clock_rate(2'000'000); + (void)target; (void)rom_fetcher; }