]> Joshua Wise's Git repositories - fpgaboy.git/blobdiff - Framebuffer.v
Latest shit, I can't remember
[fpgaboy.git] / Framebuffer.v
index ea0a1a54636db79ac4d655047ae81a468be72f2a..35cb9d83c80d957f02bac68d65950c8ddd1d00b5 100644 (file)
@@ -46,7 +46,7 @@ module Framebuffer(
        
        reg [2:0] failandloss;
        assign {vgar, vgag, vgab} =
-               ((vgax > `XOFS) && (vgax < (`XOFS + 161)) && (vgay > `YOFS) && (vgay < (`YOFS + 144))) ? {failandloss[2],2'b0,failandloss[1],2'b0,failandloss[0],1'b0} :
+               ((vgax > `XOFS) && (vgax < (`XOFS + 161)) && (vgay > `YOFS) && (vgay < (`YOFS + 144))) ? {failandloss[2],failandloss[1],1'b0,failandloss[2],failandloss[1],1'b0,failandloss[0],1'b0} :
                ((vgax < 640) && (vgay < 480)) ? 8'b00000000 :
                8'b00000000;
        
This page took 0.022166 seconds and 4 git commands to generate.