File:  [RetroPC.NET] / np2 / font / font.h
Revision 1.4: download - view: text, annotated - select for diffs
Mon Feb 7 23:46:10 2005 JST (20 years, 8 months ago) by yui
Branches: MAIN
CVS tags: HEAD
use UINT8 (T.Yui)


#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);
UINT8 font_load(const char *filename, BOOL force);

#ifdef __cplusplus
}
#endif


RetroPC.NET-CVS <cvs@retropc.net>