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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user