Commit extra files I forgot to "svn add" from the previous commit :(

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>


git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@697 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Mark Cave-Ayland
2010-03-14 20:19:46 +00:00
committed by Mark Cave-Ayland
parent bf897f1619
commit d60e3b62a4
3 changed files with 40 additions and 0 deletions

11
include/packages/video.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef VIDEO_SUBR_H
#define VIDEO_SUBR_H
/* packages/video.c */
int video_get_res(int *w, int *h);
void draw_pixel(int x, int y, int colind);
void set_color(int ind, unsigned long color);
void video_scroll(int height);
void init_video(unsigned long fb, int width, int height, int depth, int rb);
#endif /* VIDEO_SUBR_H */