From d24a1e174ba09608c5609c43a0713c376e368386 Mon Sep 17 00:00:00 2001 From: nino-porcino Date: Sun, 16 Jan 2022 23:45:16 +0100 Subject: [PATCH] typo --- rtl/clock.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/clock.v b/rtl/clock.v index 9ec01bc..cfdcae7 100644 --- a/rtl/clock.v +++ b/rtl/clock.v @@ -40,7 +40,7 @@ localparam REFRESH_DIVISOR = 65; // counts 65 clock ticks (one complete scanlin end end - // the ram refresh cycle is activated by the horizontal counter on every 10 character + // the ram refresh cycle is activated by the horizontal counter on every 10 characters wire RF = counter_refresh == 25 || counter_refresh == 35 || counter_refresh == 45 || counter_refresh == 55; assign cpu_clken = counter_cpu == 0 && !RF;