Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4176 → Rev 4177

/trunk/kernel/genarch/include/fb/font-8x16.h
35,13 → 35,14
#ifndef KERN_FONT_8X16_H_
#define KERN_FONT_8X16_H_
 
#define FONT_GLYPHS 256
#define FONT_WIDTH 8
#define FONT_SCANLINES 16
#define FONT_GLYPHS 2898
#define FONT_WIDTH 8
#define FONT_SCANLINES 16
 
#include <arch/types.h>
#include <typedefs.h>
 
extern uint8_t fb_font[FONT_GLYPHS * FONT_SCANLINES];
extern uint16_t fb_font_glyph(const wchar_t ch);
extern uint8_t fb_font[FONT_GLYPHS][FONT_SCANLINES];
 
#endif