It's going to be a rainy weekend, so more than enough time to do some more assembly. I'd like to build a small proof of concept for page flipping, but I'm not really sure about what's the best way to do it.
Basically, you use two pages, and show one page while you draw the next frame on the other page, right? As far as I see it, there are two possibilities to do this:
1. Always show page 0 and always use page 1 for drawing the next frame. When it's done, you copy the contents of page 1 to page 0 (during the vertical retrace, I guess), and then you start drawing on page 1 again;
2. You show page 0 while you draw page 1. When that's done, you switch the display to page 1 and start drawing on page 0, etc.
Which of these would be the best option? Or is there a better way to do it? I'll figure out the code by myself, I just need some pointers in the right direction. Thanks!