2024-02-17 20:34:30 +01:00
|
|
|
#ifndef VIDEO_H
|
|
|
|
#define VIDEO_H
|
|
|
|
|
2024-02-17 23:19:28 +01:00
|
|
|
#include <types.h>
|
|
|
|
|
2024-02-17 20:34:30 +01:00
|
|
|
#define SIZE 4000
|
|
|
|
|
2024-02-17 23:19:28 +01:00
|
|
|
s8 *vga_vidmem = (s8 *)0xb8000;
|
|
|
|
|
|
|
|
void vga_write(s8 *, s8);
|
2024-02-17 20:34:30 +01:00
|
|
|
void vga_clearscreen();
|
|
|
|
|
|
|
|
#endif
|