From: wdenk Date: Sat, 3 Nov 2001 22:21:15 +0000 (+0000) Subject: Das U-Boot: Universal Boot Loader X-Git-Tag: U_BOOT_0_1_0~219 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=811182acf2fbadc1d6236c157d84da84d3335ffc;p=u-boot Das U-Boot: Universal Boot Loader --- diff --git a/include/video.h b/include/video.h new file mode 100644 index 0000000000..efcc682a29 --- /dev/null +++ b/include/video.h @@ -0,0 +1,19 @@ +/* +** MPC823 Video Controller +** ======================= +** (C) 2000 by Paolo Scaffardi (arsenio@tin.it) +** AIRVENT SAM s.p.a - RIMINI(ITALY) +** +*/ + +#ifndef _VIDEO_H_ +#define _VIDEO_H_ + +/* Video functions */ + +int video_init (void *videobase); +void video_putc (const char c); +void video_puts (const char *s); +void video_printf (const char *fmt, ...); + +#endif diff --git a/include/video_easylogo.h b/include/video_easylogo.h new file mode 100644 index 0000000000..1e0081881f --- /dev/null +++ b/include/video_easylogo.h @@ -0,0 +1,26 @@ +/* +** video easylogo +** ============== +** (C) 2000 by Paolo Scaffardi (arsenio@tin.it) +** AIRVENT SAM s.p.a - RIMINI(ITALY) +** +** This utility is still under construction! +*/ + +#ifndef _EASYLOGO_H_ +#define _EASYLOGO_H_ + +#if 0 +#define ENABLE_ASCII_BANNERS +#endif + +typedef struct { + unsigned char *data; + int width; + int height; + int bpp; + int pixel_size; + int size; +} fastimage_t ; + +#endif /* _EASYLOGO_H_ */