OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [initial/] [orpmon/] [include/] [screen.h] - Rev 1765

Compare with Previous | Blame | View Log

#ifndef SCREEN_H
#define SCREEN_H
 
#if CRT_ENABLED
#define RESX 640
#define RESY 480
#define CHAR_WIDTH 8
#define CHAR_HEIGHT 12
#define COLOR_BLACK 0x00
#define COLOR_WHITE 0xFF
 
#define CHARSX (RESX/CHAR_WIDTH)
#define CHARSY (RESY/CHAR_HEIGHT)
 
#define CRT_REG        (CRT_BASE_ADD + 0)
#define CRT_PALLETE    (CRT_BASE_ADD + 0x400)
#define CRT_BUFFER_REG (CRT_BASE_ADD + 4)
#define PUT_PIXEL(x, y, color) (*(((unsigned char *)FB_BASE_ADD) + (y) * RESY + (x)) = (color))
#define SET_PALLETE(i, r, g, b) (*(((unsigned long *)CRT_PALLETE) + (i) * 4) = ((r) << 4) | ((g) << 8) | ((b) << 12))
 
void put_char_xy (int x, int y, char c);
void put_char (char c);
void put_string (char *s);
void screen_clear (void);
void screen_init (void);
void screen_putc (char); 
 
extern unsigned long fg_color;
extern unsigned long bg_color;
extern int cx;
extern int cy;
 
#endif /* CRT_ENABLED */
#endif
 
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.