blob: ee36a0f831c95eef57f154aa4572a1222ec4af73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "vterm.h"
#include <camellia/execbuf.h>
#include <camellia/syscalls.h>
#include <string.h>
struct framebuf fb;
struct rect dirty;
void scroll(void) {
size_t row_len = fb.pitch * font.h;
memmove(fb.b, fb.b + row_len, fb.len - row_len);
memset(fb.b + fb.len - row_len, 0, row_len);
cursor.y--;
dirty.x1 = 0; dirty.y1 = 0;
dirty.x2 = ~0; dirty.y2 = ~0;
}
|