From d202157a589d1cd93125929cc419b1d1e7a79868 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 20 Mar 2026 12:55:43 +0000 Subject: [PATCH] Reduce dot interval to 25 ms --- emu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emu.js b/emu.js index c9943d4..11f497d 100644 --- a/emu.js +++ b/emu.js @@ -8,10 +8,10 @@ const RXTAIL = 0x10c; const SYSREADY = 0x110; const SYSINTER = 0x114; -const DOT_INTERVAL_MS = 120; const PERIPHS_SIZE = 0x200; const POLL_INTERVAL_MS = 5; +const DOT_INTERVAL_MS = 25; const COLS = 80; const TAB_WIDTH = 8;