This commit is contained in:
nino-porcino 2022-01-16 23:45:16 +01:00
parent c226e0101e
commit d24a1e174b
1 changed files with 1 additions and 1 deletions

View File

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