mirror of
https://github.com/libretro/libretro-meowPC98.git
synced 2024-11-23 08:19:58 +00:00
30 lines
496 B
C
30 lines
496 B
C
/**
|
|
* @file font.h
|
|
* @brief CGROM and font loader
|
|
*
|
|
* @author $Author: yui $
|
|
* @date $Date: 2011/02/23 10:11:44 $
|
|
*/
|
|
|
|
#define FONTMEMORYBIND // 520KBくらいメモリ削除(ぉぃ
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef FONTMEMORYBIND
|
|
#define fontrom (mem + FONT_ADRS)
|
|
#else
|
|
extern UINT8 __font[0x84000];
|
|
#define fontrom (__font)
|
|
#endif
|
|
|
|
void font_initialize(void);
|
|
void font_setchargraph(BOOL epson);
|
|
UINT8 font_load(const OEMCHAR *filename, BOOL force);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|