fix cycle latency, broke first pixel
Some checks failed
Verilator Unit Tests / Test (push) Failing after 5m13s

This commit is contained in:
saji 2024-05-24 01:23:49 -05:00
parent 70de66231b
commit 905f61c814

View file

@ -116,12 +116,12 @@ module hub75e (
end
2'b00: begin // falling edge
// load pixel 2
panel_rgb1 <= ram_rgb_slice;
pixnum <= pixnum - 1;
pixrow <= 0;
end
2'b01: begin // midpoint of low clk
panel_rgb1 <= ram_rgb_slice;
// decrement pixnum
pixnum <= pixnum - 1;
pixrow <= 0;
end
default: begin
end