Use pure-software cursor for VGA terminal, works better

This commit is contained in:
Kevin Lange 2015-07-12 19:15:29 +09:00
parent 514fef6b9f
commit 06b57c14f8

View File

@ -251,11 +251,7 @@ void outb(unsigned char _data, unsigned short _port) {
}
void render_cursor() {
unsigned int tmp = csr_y * 80 + csr_x;
outb(14, 0x3D4);
outb(tmp >> 8, 0x3D5);
outb(15, 0x3D4);
outb(tmp, 0x3D5);
cell_redraw_inverted(csr_x, csr_y);
}
void draw_cursor() {