]> 4ch.mooo.com Git - 16.git/blob - src/exmmtest.c
== major changes and experimentation and improvements here and there! ww ==
[16.git] / src / exmmtest.c
1 /* Project 16 Source Code~
2  * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669
3  *
4  * This file is part of Project 16.
5  *
6  * Project 16 is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Project 16 is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,
19  * Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  */
22 /*
23         exmm test
24 */
25 #include <stdio.h>
26 #include <bios.h>
27
28 #include "src/lib/16_head.h"
29 #include "src/lib/16_ca.h"
30 #include "src/lib/16_mm.h"
31 //#include "src/lib/modex16.h"
32 #pragma hdrstop\r
33 \r
34 #pragma warn -pro\r
35 #pragma warn -use
36
37 //file load or read definition
38 //#define FILERL
39 //#define FILEREAD
40
41 void
42 main(int argc, char *argv[])
43 {
44         mminfo_t mm; mminfotype mmi;
45         memptr bigbuffer;
46 #ifdef FILERL
47         char *bakapee;
48 //      int bakapeehandle;
49         word baka;
50 #endif
51         //static page_t screen;
52
53         //mmi.segu=FP_SEG(segu);
54
55         printf("&main()=        %Fp\n", *argv[0]);
56         printf("bigbuffer=      %Fp\n", bigbuffer);
57         printf("&bigbuffer=     %Fp\n", &bigbuffer);
58         printf("bigbuffer=      %04x\n", bigbuffer);
59         printf("&bigbuffer=     %04x\n", &bigbuffer);
60
61 #ifdef FILERL
62         bakapee = malloc(64);
63 //      memset(bakapee, 0, 64);
64 #endif
65         mm.mmstarted=0;
66
67 #ifdef FILERL
68         if(argv[1]) bakapee = argv[1];
69         else bakapee = "data/koishi~~.pcx";
70 #endif
71
72         textInit();\r
73
74         /* setup camera and screen~ */
75         //bug!!!\r
76         //screen = modexDefaultPage();\r
77         /*screen.width += (16*2);\r
78         screen.height += (16*2);*/
79
80         printf("main()=%Fp      start MM\n", *argv[0]);
81         MM_Startup(&mm, &mmi);
82         //PM_Startup();\r
83         //PM_UnlockMainMem();\r
84         CA_Startup();
85         printf("                done!\n");
86         /*if(FP_SEG(*argv[0])==0)
87         {
88                 MM_Report(&screen, &mm, &mmi);
89                 MM_Shutdown(&mm);
90                 printf("&main()=%Fp\n", *argv[0]);
91                 printf("&main() == %u\n", FP_SEG(*argv[0]));
92                 exit(-5);
93         }*/
94         printf("&main()=        %Fp\n", *argv[0]);
95         printf("bigbuffer=      %Fp\n", bigbuffer);
96         printf("&bigbuffer=     %Fp\n", &bigbuffer);
97         printf("bigbuffer=      %04x\n", bigbuffer);
98         printf("&bigbuffer=     %04x\n", &bigbuffer);
99 #ifdef FILERL
100 //      bakapeehandle = open(bakapee,O_RDONLY | O_BINARY, S_IREAD);
101 //      printf("size of big buffer~=%u\n", _bmsize(segu, bigbuffer));
102 //      if(CA_FarRead(bakapeehandle,(void far *)&bigbuffer,sizeof(bigbuffer),&mm))
103 #ifdef FILEREAD
104         printf("                read\n");
105         if(CA_ReadFile(bakapee, &bigbuffer, &mm))
106 #else
107         printf("                load\n");
108         if(CA_LoadFile(bakapee, &bigbuffer, &mm, &mmi))
109 #endif
110                 baka=1;
111         else
112                 baka=0;
113 //      close(bakapeehandle);
114         //hmm functions in cache system use the buffered stuff
115 //      printf("size of big buffer~=%u\n", _bmsize(segu, bigbuffer));
116 #endif
117         printf("dark purple = purgable\n");
118         printf("medium blue = non purgable\n");
119         printf("red = locked\n");
120 //      getch();
121         //++++modexEnter();
122         //++++modexShowPage(&screen);
123         MM_ShowMemory(/*&screen, */&mm);
124         //getch();
125         MM_DumpData(&mm);
126         //++++modexLeave();
127         MM_Report(&mm, &mmi);
128         printf("                stop!\n");
129 #ifdef FILERL
130         MM_FreePtr(&bigbuffer, &mm);
131 #endif
132         //PM_Shutdown();
133         CA_Shutdown();
134         MM_Shutdown(&mm);
135         printf("                done!\n");
136 #ifdef FILERL
137         free(bakapee);
138         if(baka) printf("\nyay!\n");
139         else printf("\npoo!\n");
140 #endif
141         //printf("_bios_memsize=%u\n", _bios_memsize());
142         printf("bigbuffer=      %Fp\n", bigbuffer);
143         printf("&bigbuffer=     %Fp\n", &bigbuffer);
144         printf("bigbuffer=      %04x\n", bigbuffer);
145         printf("&bigbuffer=     %04x\n", &bigbuffer);
146         printf("\n\n");
147         printf("Total free:                     %lu\n", (dword)(GetFreeSize()));
148         printf("Total near free:                %lu\n", (dword)(GetNearFreeSize()));
149         printf("Total far free:                 %lu\n", (dword)(GetFarFreeSize()));
150         getch();
151         printf("\n");
152         heapdump();
153         printf("core left:                      %lu\n", (dword)_coreleft());
154         printf("far core left:                  %lu\n", (dword)_farcoreleft());
155         //printf("based core left:                      %lu\n", (dword)_basedcoreleft());
156         //printf("huge core left:                       %lu\n", (dword)_hugecoreleft());
157 }