1
0
mirror of https://github.com/mist-devel/mist-board.git synced 2026-02-05 23:54:41 +00:00

[C16] Forgot to invert csync from scandoubler output

This commit is contained in:
Gyorgy Szombathelyi
2019-05-04 14:36:45 +02:00
parent e16e9b23e9
commit 1ce2a26d96

View File

@@ -546,7 +546,7 @@ assign VGA_B = ypbpr ? pb : blue;
// output is driven from the sync signals generated by the scan doubler. In
// 15khz mode the VS signal is used as the RGB detect signal on the SCART
// connector and thus needs to be driven to 1
assign VGA_HS = tv15khz?c16_cs:ypbpr ? (video_hs ^ video_vs) : video_hs;
assign VGA_HS = tv15khz ? c16_cs:(ypbpr ? ~(video_hs ^ video_vs) : video_hs);
assign VGA_VS = (tv15khz || ypbpr)?1'b1:video_vs;
wire video_hs, video_vs;