1
0
mirror of https://github.com/mist-devel/mist-board.git synced 2026-01-27 20:27:12 +00:00

Fixed PAL mode for scandoubler

This commit is contained in:
phoboz
2016-12-26 23:26:51 +01:00
parent 826c36bebd
commit 17af519790

View File

@@ -54,17 +54,10 @@ begin
end if;
end process;
process (vcount)
begin
if vcount>=5 and vcount<309 then
in_vbl <= '0';
else
in_vbl <= '1';
end if;
end process;
in_vbl <= '1' when vcount<5 else '0';
x <= hcount-164;
y9 <= vcount-64 when vcount<256 else (others=>'1');
y9 <= vcount-64;
y <= y9(7 downto 0);
--vblank <= '1' when hcount=0 and vcount=0 else '0';
--hblank <= '1' when hcount=0 else '0';