OSDN Git Service

FIXED farcoreleft() is a VERY important part of the farheap of MM. it is much larger...
[proj16/16.git] / src / lib / 16_tail_.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
3  *\r
4  * This file is part of Project 16.\r
5  *\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
10  *\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
15  *\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
20  *\r
21  */\r
22 /*\r
23  * 16 tail library\r
24  */\r
25 \r
26 #include "src/lib/16_tail.h"\r
27 #include "src/lib/16_vl.h"\r
28 \r
29 //===========================================================================\r
30 \r
31 /*\r
32 ====================\r
33 =\r
34 = TL_DosLibStartup\r
35 =\r
36 ====================\r
37 */\r
38 \r
39 void TL_DosLibStartup(global_game_variables_t *gvar)\r
40 {\r
41         if(gvar->DLStarted)\r
42                 return;\r
43 \r
44         // DOSLIB: check our environment\r
45         probe_dos();\r
46 \r
47         // DOSLIB: what CPU are we using?\r
48         // NTS: I can see from the makefile Sparky4 intends this to run on 8088 by the -0 switch in CFLAGS.\r
49         //        So this code by itself shouldn't care too much what CPU it's running on. Except that other\r
50         //        parts of this project (DOSLIB itself) rely on CPU detection to know what is appropriate for\r
51         //        the CPU to carry out tasks. --J.C.\r
52         cpu_probe();\r
53 \r
54         // DOSLIB: check for VGA\r
55         if (!probe_vga()) {\r
56                 printf("VGA probe failed\n");\r
57                 return;\r
58         }\r
59         // hardware must be VGA or higher!\r
60         if (!(vga_state.vga_flags & VGA_IS_VGA)) {\r
61                 printf("This program requires VGA or higher graphics hardware\n");\r
62                 return;\r
63         }\r
64 \r
65         if (_DEBUG_INIT() == 0) {\r
66 #ifdef DEBUGSERIAL\r
67                 //printf("WARNING: Failed to initialize DEBUG output\n");\r
68 #endif\r
69         }\r
70         _DEBUG("Serial debug output started\n"); // NTS: All serial output must end messages with newline, or DOSBox-X will not emit text to log\r
71         _DEBUGF("Serial debug output printf test %u %u %u\n",1U,2U,3U);\r
72 \r
73         textInit();\r
74         gvar->DLStarted = true;\r
75 }\r
76 \r
77 //===========================================================================\r
78 \r
79 /*\r
80 ====================\r
81 =\r
82 = TL_VidInit\r
83 =\r
84 ====================\r
85 */\r
86 \r
87 void    TL_VidInit(global_game_variables_t *gvar)\r
88 {\r
89         start_timer(gvar);      //i do not remeber why this is here wwww i think it should be somewhere else www\r
90 \r
91         if(!gvar->DLStarted) TL_DosLibStartup(gvar);\r
92 \r
93         // get old video mode\r
94         //in.h.ah = 0xf;\r
95         //int86(0x10, &in, &out);\r
96         if(!gvar->video.old_mode) gvar->video.old_mode = VL_vgaGetMode();//out.h.al;\r
97         gvar->video.VL_Initiated = 1;\r
98 }\r