Skip to content

Commit

Permalink
Supress x conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
SagarDevAchar authored Aug 31, 2024
1 parent a7c736e commit bd35834
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/text_demosiine.v
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module text_demosiine(
endcase
end

assign overlay_active = (demosiine_off_x < 7'd47) & demosiine_active;
assign overlay_active = (demosiine_off_x < 7'd46) & demosiine_active;

wire _unused = &{x[2:0], y[2:0]};
endmodule
2 changes: 1 addition & 1 deletion src/text_sda.v
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module text_sda(
endcase
end

assign overlay_active = (sda_off_x < 7'd61) & sda_active;
assign overlay_active = (sda_off_x < 7'd60) & sda_active;

wire _unused = &{x[2:0], y[2:0]};
endmodule
2 changes: 1 addition & 1 deletion src/text_tt08.v
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module text_tt08(
endcase
end

assign overlay_active = (tt08_off_x < 6'd23) & tt08_active;
assign overlay_active = (tt08_off_x < 6'd22) & tt08_active;

wire _unused = &{x[2:0], y[2:0]};
endmodule

0 comments on commit bd35834

Please sign in to comment.