blob: 9519ceaf98bf1da91404d1aa21df15b1dd667f9e [file] [log] [blame]
wdenk167c5892001-11-03 22:21:15 +00001/*
2** MPC823 Video Controller
3** =======================
4** (C) 2000 by Paolo Scaffardi (arsenio@tin.it)
5** AIRVENT SAM s.p.a - RIMINI(ITALY)
6**
7*/
8
9#ifndef _VIDEO_H_
10#define _VIDEO_H_
11
12/* Video functions */
13
14int video_init (void *videobase);
15void video_putc (const char c);
16void video_puts (const char *s);
wdenk167c5892001-11-03 22:21:15 +000017
18#endif