]> 4ch.mooo.com Git - 16.git/blob - src/mmtest.c
i do not know why it messes up so much on far heap
[16.git] / src / mmtest.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 <dos.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
33 #define FILERL
34 //#define FILEINIT
35
36 void
37 main(int argc, char *argv[])
38 {
39         static mminfo_t mm; mminfotype mmi;
40         static const __segment segu;
41         static memptr   bigbuffer;
42         static char *bakapee;
43         word baka;
44         //static page_t screen;
45
46         //mmi.segu=FP_SEG(segu);
47
48         printf("&main()=%Fp\n", *argv[0]);
49         printf("&segu=%p\n", (segu));
50         //printf("mmi.segu=%p\n", (mmi.segu));
51
52         bakapee = _nmalloc(64);
53 //      memset(bakapee, 0, 64);
54         mm.mmstarted=0;
55
56         if(argv[1]) bakapee = argv[1];
57         else bakapee = "data/koishi~~.pcx";
58
59         textInit();\r
60
61         /* setup camera and screen~ */
62         //bug!!!\r
63         //screen = modexDefaultPage();\r
64         /*screen.width += (16*2);\r
65         screen.height += (16*2);*/
66
67         printf("main()=%Fp      start MM\n", *argv[0]);
68         MM_Startup(&mm, &mmi);
69         printf("                done!\n");
70         /*if(FP_SEG(*argv[0])==0)
71         {
72                 MM_Report(&screen, &mm, &mmi);
73                 MM_Shutdown(&mm);
74                 printf("&main()=%Fp\n", *argv[0]);
75                 printf("&main() == %u\n", FP_SEG(*argv[0]));
76                 exit(-5);
77         }*/
78         printf("&main()=%Fp\n", *argv[0]);
79         printf("&segu=%p\n", (segu));
80         //printf("mmi.segu=%p\n", (mmi.segu));
81 #ifdef FILERL
82 #ifdef FILEINIT
83         printf("                read\n");
84         if(CA_ReadFile(bakapee, &bigbuffer, &mm))
85 #else
86         printf("                load\n");
87         if(CA_LoadFile(bakapee, &bigbuffer, &mm, &mmi))
88 #endif
89                 baka=1;
90         else
91                 baka=0;
92 #endif
93         //hmm functions in cache system use the buffered stuff
94         printf("size of big buffer~=%lu\n", _bmsize(segu, bigbuffer));
95         printf("dark purple = purgable\n");
96         printf("medium blue = non purgable\n");
97         printf("red = locked\n");
98         getch();
99         //++++modexEnter();
100         //++++modexShowPage(&screen);
101         MM_ShowMemory(/*&screen, */&mm);
102         //getch();
103         MM_DumpData(&mm);
104         //++++modexLeave();
105         MM_Report(&mm, &mmi);
106         printf("                stop!\n");
107 #ifdef FILERL
108         MM_FreePtr(&bigbuffer, &mm);
109 #endif
110         MM_Shutdown(&mm);
111         printf("                done!\n");
112 #ifdef FILERL
113         free(bakapee);
114         if(baka) printf("\nyay!\n");
115         else printf("\npoo!\n");
116 #endif
117 }