소스 검색

Initial revision

wdenk 22 년 전
부모
커밋
167c5898b8
2개의 변경된 파일45개의 추가작업 그리고 0개의 파일을 삭제
  1. 19 0
      include/video.h
  2. 26 0
      include/video_easylogo.h

+ 19 - 0
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

+ 26 - 0
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_ */