From 020e2d1b32c77ad69ab7fa2072cf8bb17c860e9b Mon Sep 17 00:00:00 2001 From: SpinDizzy Date: Sat, 13 Mar 2021 08:17:11 +0000 Subject: [PATCH] DSB2 clock speed from 4MHz to 11MHz. --- Src/Model3/DSB.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Model3/DSB.h b/Src/Model3/DSB.h index cfdf9c5..1edf00f 100644 --- a/Src/Model3/DSB.h +++ b/Src/Model3/DSB.h @@ -318,8 +318,8 @@ private: // M68K CPU M68KCtx M68K; - static const int k_framePeriod = 4000000/60; - static const int k_timerPeriod = 4000000/1000; // 1KHz timer + static const int k_framePeriod = 11000000/60; + static const int k_timerPeriod = 11000000/1000; // 1KHz timer int m_cyclesElapsedThisFrame; int m_nextTimerInterruptCycles; };