liberis
|
00001 /* 00002 liberis -- A set of libraries for controlling the NEC PC-FX 00003 00004 Copyright (C) 2011 Alex Marshall "trap15" <trap15@raidenii.net> 00005 00006 # This code is licensed to you under the terms of the MIT license; 00007 # see file LICENSE or http://www.opensource.org/licenses/mit-license.php 00008 */ 00009 00014 #ifndef _LIBERIS_ROMFONT_H_ 00015 #define _LIBERIS_ROMFONT_H_ 00016 00017 #include <eris/types.h> 00018 00021 typedef enum { 00022 ROMFONT_KANJI_16x16 = 0, 00023 ROMFONT_KANJI_12x12 = 1, 00024 ROMFONT_ANK_8x16 = 2, 00025 ROMFONT_ANK_6x12 = 3, 00026 ROMFONT_ANK_8x8 = 4, 00027 ROMFONT_ANK_8x12 = 5, 00028 } romfont_type; 00029 00038 u8* eris_romfont_get(u32 sjis, romfont_type type); 00039 00040 #endif 00041