Reduce dot interval to 25 ms

This commit is contained in:
2026-03-20 12:55:43 +00:00
parent 97fc43bf93
commit d202157a58

2
emu.js
View File

@@ -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;