Advertisement
Guest User

this code made Quartus freak out

a guest
Jan 4th, 2020
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. linebuffer[xOffset+3]       = colors[0] ? linebuffer[xOffset+3] : cram[ (cramLine << 4) + colors[0] ];
  2. linebuffer[xOffset+2]       = colors[1] ? linebuffer[xOffset+2] : cram[ (cramLine << 4) + colors[1] ];
  3. linebuffer[xOffset+1]       = colors[2] ? linebuffer[xOffset+1] : cram[ (cramLine << 4) + colors[2] ];
  4. linebuffer[xOffset]         = colors[3] ? linebuffer[xOffset]   : cram[ (cramLine << 4) + colors[3] ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement