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