]> 4ch.mooo.com Git - 16.git/blob - src/exmmtest.c
ok i need to remove heap walk from the borland c stuff and the allocation of things! ww
[16.git] / src / exmmtest.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669\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         exmm test\r
24 */\r
25 #include <stdio.h>\r
26 #include <bios.h>\r
27 \r
28 #include "src/lib/16_head.h"\r
29 #include "src/lib/16_ca.h"\r
30 #include "src/lib/16_mm.h"\r
31 #include "src/lib/16_hc.h"\r
32 //#include "src/lib/modex16.h"\r
33 #pragma hdrstop\r
34 \r
35 #pragma warn -pro\r
36 #pragma warn -use\r
37 \r
38 //file load or read definition\r
39 #define FILERL\r
40 //#define FILEREAD\r
41 \r
42 void\r
43 main(int argc, char *argv[])\r
44 {\r
45         mminfo_t mm; mminfotype mmi;\r
46 #ifdef __WATCOMC__\r
47         __segment sega;\r
48         void __based(sega)* bigbuffer;\r
49 #endif\r
50 #ifdef __BORLANDC__\r
51         void memptr* bigbuffer;\r
52 #endif\r
53 #ifdef FILERL\r
54         char *bakapee;\r
55         word baka;\r
56 #endif\r
57         //static page_t screen;\r
58 \r
59         printf("&main()=        %Fp\n", *argv[0]);\r
60         printf("bigbuffer=      %Fp\n", bigbuffer);\r
61         printf("&bigbuffer=     %Fp\n", &bigbuffer);\r
62         printf("bigbuffer=      %04x\n", bigbuffer);\r
63         printf("&bigbuffer=     %04x\n", &bigbuffer);\r
64 \r
65 #ifdef FILERL\r
66         bakapee = malloc(64);\r
67 #endif\r
68         mm.mmstarted=0;\r
69 \r
70 #ifdef FILERL\r
71         if(argv[1]) bakapee = argv[1];\r
72         else bakapee = "data/koishi~.pcx";\r
73 #endif\r
74 \r
75         textInit();\r
76 \r
77         /* setup camera and screen~ */\r
78         //bug!!!\r
79         //screen = modexDefaultPage();\r
80         /*screen.width += (16*2);\r
81         screen.height += (16*2);*/\r
82 \r
83         printf("main()=%Fp      start MM\n", *argv[0]);\r
84         MM_Startup(&mm, &mmi);\r
85         //PM_Startup();\r
86         //PM_UnlockMainMem();\r
87         CA_Startup();\r
88         printf("                done!\n");\r
89         printf("&main()=        %Fp\n", *argv[0]);\r
90         printf("bigbuffer=      %Fp\n", bigbuffer);\r
91         printf("&bigbuffer=     %Fp\n", &bigbuffer);\r
92         printf("bigbuffer=      %04x\n", bigbuffer);\r
93         printf("&bigbuffer=     %04x\n", &bigbuffer);\r
94 //      getch();\r
95 #ifdef FILERL\r
96 //      bakapeehandle = open(bakapee,O_RDONLY | O_BINARY, S_IREAD);\r
97 //      printf("size of big buffer~=%u\n", _bmsize(segu, bigbuffer));\r
98 //      if(CA_FarRead(bakapeehandle,(void far *)&bigbuffer,sizeof(bigbuffer),&mm))\r
99 #ifdef FILEREAD\r
100         printf("                read\n");\r
101         if(CA_ReadFile(bakapee, &bigbuffer, &mm))\r
102 #else\r
103         printf("                load\n");\r
104         if(CA_LoadFile(bakapee, &bigbuffer, &mm, &mmi))\r
105 #endif\r
106                 baka=1;\r
107         else\r
108                 baka=0;\r
109 //      close(bakapeehandle);\r
110         //hmm functions in cache system use the buffered stuff\r
111         printf("size of big buffer~=%u\n", _bmsize(sega, bigbuffer));\r
112 #endif\r
113         printf("dark purple = purgable\n");\r
114         printf("medium blue = non purgable\n");\r
115         printf("red = locked\n");\r
116         getch();\r
117         //++++modexEnter();\r
118         //++++modexShowPage(&screen);\r
119         MM_ShowMemory(/*&screen, */&mm);\r
120         //getch();\r
121         MM_DumpData(&mm);\r
122         //++++modexLeave();\r
123         MM_Report(&mm, &mmi);\r
124         printf("                stop!\n");\r
125 #ifdef FILERL\r
126         MM_FreePtr(&bigbuffer, &mm);\r
127 #endif\r
128         //PM_Shutdown();\r
129         CA_Shutdown();\r
130         MM_Shutdown(&mm);\r
131         printf("                done!\n");\r
132 #ifdef FILERL\r
133         free(bakapee);\r
134         if(baka) printf("\nyay!\n");\r
135         else printf("\npoo!\n");\r
136 #endif\r
137         printf("bigbuffer=      %Fp\n", bigbuffer);\r
138         printf("&bigbuffer=     %Fp\n", &bigbuffer);\r
139         printf("bigbuffer=      %04x\n", bigbuffer);\r
140         printf("&bigbuffer=     %04x\n", &bigbuffer);\r
141         /*printf("\n\n");\r
142         printf("Total free:                     %lu\n", (dword)(GetFreeSize()));\r
143         printf("Total near free:                %lu\n", (dword)(GetNearFreeSize()));\r
144         printf("Total far free:                 %lu\n", (dword)(GetFarFreeSize()));\r
145         getch();*/\r
146         printf("\n");\r
147         heapdump();\r
148         //printf("core left:                    %lu\n", (dword)_coreleft());\r
149         //printf("far core left:                        %lu\n", (dword)_farcoreleft());\r
150         //printf("based core left:                      %lu\n", (dword)_basedcoreleft());\r
151         //printf("huge core left:                       %lu\n", (dword)_hugecoreleft());\r
152 }\r