1 /* Project 16 Source Code~
\r
2 * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover
\r
4 * This file is part of Project 16.
\r
6 * Project 16 is free software; you can redistribute it and/or modify
\r
7 * it under the terms of the GNU General Public License as published by
\r
8 * the Free Software Foundation; either version 3 of the License, or
\r
9 * (at your option) any later version.
\r
11 * Project 16 is distributed in the hope that it will be useful,
\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 * GNU General Public License for more details.
\r
16 * You should have received a copy of the GNU General Public License
\r
17 * along with this program. If not, see <http://www.gnu.org/licenses/>, or
\r
18 * write to the Free Software Foundation, Inc., 51 Franklin Street,
\r
19 * Fifth Floor, Boston, MA 02110-1301 USA.
\r
23 #include "src/lib/16text.h"
\r
25 /* this array holds the rom font descriptors */
\r
27 fontdata_t romFontsData;
\r
29 static void getRomFontAddr(char fontNum, int index) {
\r
37 MOV AX, 0x1130 ;I can haz font info plz?
\r
38 MOV BH, fontNum ; where ur fontNum
\r
40 MOV AX, ES ;save teh segmentz
\r
41 MOV BX, BP ;and all the base!
\r
42 POP BP ;u can haz ur frame back!
\r
43 MOV fontSeg, AX ;Storage
\r
44 MOV fontOff, BX ;Storage
\r
48 romFonts[index].seg = fontSeg;
\r
49 romFonts[index].off = fontOff;
\r
53 /* This function initializes the text engine */
\r
55 getRomFontAddr(0x02, ROM_FONT_8x14);
\r
56 getRomFontAddr(0x03, ROM_FONT_8x8_LOW);
\r
57 getRomFontAddr(0x04, ROM_FONT_8x8_HIGH);
\r
58 getRomFontAddr(0x06, ROM_FONT_8x16);
\r
59 romFonts[ROM_FONT_8x14].charSize=14;
\r
60 romFonts[ROM_FONT_8x8_LOW].charSize=8;
\r
61 romFonts[ROM_FONT_8x8_HIGH].charSize=8;
\r
62 romFonts[ROM_FONT_8x16].charSize=16;
\r