added vga

This commit is contained in:
spikey 2024-02-17 14:34:30 -05:00
parent 4a0ac0efb7
commit f9d537c3ac
2 changed files with 11 additions and 0 deletions

10
include/video.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef VIDEO_H
#define VIDEO_H
#define VGA_START 0xB8000
#define SIZE 4000
void vga_write(char *, char, short);
void vga_clearscreen();
#endif

1
src/video.c Normal file
View File

@ -0,0 +1 @@