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