mirror of
https://github.com/Gehstock/Mist_FPGA.git
synced 2026-03-10 04:24:25 +00:00
Midway MCR2: fix ypbpr
This commit is contained in:
@@ -316,8 +316,8 @@ satans_hollow satans_hollow(
|
||||
|
||||
wire vs_out;
|
||||
wire hs_out;
|
||||
assign VGA_HS = ((~no_csync & scandoublerD) || ypbpr)? cs : hs_out;
|
||||
assign VGA_VS = ((~no_csync & scandoublerD) || ypbpr)? 1'b1 : vs_out;
|
||||
assign VGA_HS = (~no_csync & scandoublerD & ~ypbpr)? cs : hs_out;
|
||||
assign VGA_VS = (~no_csync & scandoublerD & ~ypbpr)? 1'b1 : vs_out;
|
||||
|
||||
mist_video #(.COLOR_DEPTH(3), .SD_HCNT_WIDTH(10)) mist_video(
|
||||
.clk_sys ( clk_sys ),
|
||||
|
||||
Reference in New Issue
Block a user