diff options
author | wdenk <wdenk> | 2001-11-03 22:21:15 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2001-11-03 22:21:15 +0000 |
commit | 167c5898b87724ec5b3775f5cb829079d5cb7895 (patch) | |
tree | 4293eb86b1f0c338e91ebfaae0e03063df671571 /include/video.h | |
parent | 55978deb0c78baeb73f07e3dff0b6e5cfe833e35 (diff) | |
download | u-boot-imx-167c5898b87724ec5b3775f5cb829079d5cb7895.zip u-boot-imx-167c5898b87724ec5b3775f5cb829079d5cb7895.tar.gz u-boot-imx-167c5898b87724ec5b3775f5cb829079d5cb7895.tar.bz2 |
Initial revision
Diffstat (limited to 'include/video.h')
-rw-r--r-- | include/video.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/video.h b/include/video.h new file mode 100644 index 0000000..efcc682 --- /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 |