Skip to content

Commit

Permalink
cps1: try BFF as blank color (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
gyurco committed Aug 6, 2024
1 parent e3a1680 commit de363f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cores/cps1/hdl/jtcps1_colmix.v
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ end
localparam [13:0] BLANK_PXL = { 2'b11, 12'hBFF }; // according to DL-0921 RE but it doesn't look
// good on CPS1/CPS1.5 games. CPS2 is fine with that
`else
localparam [13:0] BLANK_PXL = ~14'd0;
// try BFF anyway on CPS1
localparam [13:0] BLANK_PXL = { 2'b11, 12'hBFF };
`endif

// This take 6 clock cycles to process the 6 layers
Expand Down

0 comments on commit de363f2

Please sign in to comment.