aboutsummaryrefslogtreecommitdiff
path: root/include/02.vga/deo7
blob: 2fbf259c231b9c384e1cc41ae2230b9bace5df6e (plain)
1
2
3
4
5
6
void movescreen()
{
    terminal_row--;
    for(size_t i=0;i<VGA_HEIGHT;i++) for(size_t j=0;j<VGA_WIDTH;j++)
        terminal_buffer[i*VGA_WIDTH+j]=terminal_buffer[(i+1)*VGA_WIDTH+j];
}