15 lines
200 B
C
15 lines
200 B
C
#ifndef VIDEO_H
|
|
#define VIDEO_H
|
|
|
|
#include <types.h>
|
|
|
|
#define VGA_SIZE 4000
|
|
|
|
s8 *vga_vidmem = (s8 *)0xb8000;
|
|
s8 vga_unused = 0;
|
|
|
|
void vga_write(s8 *, s32, s8);
|
|
void vga_clearscreen(void);
|
|
|
|
#endif
|