Commit 167c5898b87724ec5b3775f5cb829079d5cb7895

Authored by wdenk
1 parent 55978deb0c

Initial revision

Showing 2 changed files with 45 additions and 0 deletions Side-by-side Diff

  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 +
  9 +#ifndef _VIDEO_H_
  10 +#define _VIDEO_H_
  11 +
  12 +/* Video functions */
  13 +
  14 +int video_init (void *videobase);
  15 +void video_putc (const char c);
  16 +void video_puts (const char *s);
  17 +void video_printf (const char *fmt, ...);
  18 +
  19 +#endif
include/video_easylogo.h
  1 +/*
  2 +** video easylogo
  3 +** ==============
  4 +** (C) 2000 by Paolo Scaffardi (arsenio@tin.it)
  5 +** AIRVENT SAM s.p.a - RIMINI(ITALY)
  6 +**
  7 +** This utility is still under construction!
  8 +*/
  9 +
  10 +#ifndef _EASYLOGO_H_
  11 +#define _EASYLOGO_H_
  12 +
  13 +#if 0
  14 +#define ENABLE_ASCII_BANNERS
  15 +#endif
  16 +
  17 +typedef struct {
  18 + unsigned char *data;
  19 + int width;
  20 + int height;
  21 + int bpp;
  22 + int pixel_size;
  23 + int size;
  24 +} fastimage_t ;
  25 +
  26 +#endif /* _EASYLOGO_H_ */