video.h 358 B

12345678910111213141516171819
  1. /*
  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. #ifndef _VIDEO_H_
  9. #define _VIDEO_H_
  10. /* Video functions */
  11. int video_init (void *videobase);
  12. void video_putc (const char c);
  13. void video_puts (const char *s);
  14. void video_printf (const char *fmt, ...);
  15. #endif