1 /* Project 16 Source Code~
\r
2 * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669
\r
4 * This file is part of Project 16.
\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
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
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
25 //#include <stdio.h>
\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
38 //file load or read definition
\r
42 global_game_variables_t gvar;
\r
45 main(int argc, char *argv[])
\r
47 mminfo_t mm; mminfotype mmi;
\r
50 void __based(sega)* bigbuffer;
\r
56 //static byte bakapee[64];
\r
60 //static page_t screen;
\r
65 //printf("&main()= %Fp\n", *argv[0]);
\r
66 //printf("bigbuffer= %Fp\n", bigbuffer);
\r
67 //printf("&bigbuffer= %Fp\n", &bigbuffer);
\r
68 //printf("bigbuffer= %04x\n", bigbuffer);
\r
69 //printf("&bigbuffer= %04x\n", &bigbuffer);
\r
72 bakapee = malloc(64);
\r
77 // printf("filename!: ");
\r
78 // scanf("%[^\n]", &bakapee);
\r
79 if(argv[1]) bakapee = argv[1];
\r
80 else bakapee = "data/koishi~.pcx";
\r
85 // setup camera and screen~
\r
87 //screen = modexDefaultPage();
\r
88 //screen.width += (16*2);
\r
89 //screen.height += (16*2);
\r
91 // printf("main()=%Fp start MM\n", *argv[0]);
\r
92 MM_Startup(&mm, &mmi);
\r
94 //PM_UnlockMainMem();
\r
96 // printf(" done!\n");
\r
97 //printf("&main()= %Fp\n", *argv[0]);
\r
98 //printf("bigbuffer= %Fp\n", bigbuffer);
\r
99 //printf("&bigbuffer= %Fp\n", &bigbuffer);
\r
100 //printf("bigbuffer= %04x\n", bigbuffer);
\r
101 //printf("&bigbuffer= %04x\n", &bigbuffer);
\r
104 // bakapeehandle = open(bakapee,O_RDONLY | O_BINARY, S_IREAD);
\r
105 // printf("size of big buffer~=%u\n", _bmsize(segu, bigbuffer));
\r
106 // if(CA_FarRead(bakapeehandle,(void far *)&bigbuffer,sizeof(bigbuffer),&mm))
\r
109 if(CA_ReadFile(bakapee, &bigbuffer, &mm))
\r
112 if(CA_LoadFile(bakapee, &bigbuffer, &mm, &mmi))
\r
117 // close(bakapeehandle);
\r
118 //hmm functions in cache system use the buffered stuff
\r
120 printf("size of big buffer~=%u\n", _bmsize(sega, bigbuffer));
\r
123 printf("press any key to continue!\n");
\r
125 printf("[\n%s\n]\n", bigbuffer);
\r
126 //printf("dark purple = purgable\n");
\r
127 //printf("medium blue = non purgable\n");
\r
128 //printf("red = locked\n");
\r
129 printf("press any key to continue!\n");
\r
131 //++++modexEnter();
\r
132 //++++modexShowPage(&screen);
\r
133 MM_ShowMemory(&gvar, &mm);
\r
136 //++++modexLeave();
\r
137 //++++MM_Report(&mm, &mmi);
\r
138 // printf(" stop!\n");
\r
140 MM_FreePtr(&bigbuffer, &mm);
\r
143 CA_Shutdown(&gvar);
\r
145 // printf(" done!\n");
\r
148 if(baka) printf("\nyay!\n");
\r
149 else printf("\npoo!\n");
\r
151 printf("========================================\n");
\r
152 printf("near= %Fp ", mm.nearheap);
\r
153 printf("far= %Fp", mm.farheap);
\r
155 printf("&near= %Fp ", &(mm.nearheap));
\r
156 printf("&far= %Fp", &(mm.farheap));
\r
158 printf("bigb= %Fp ", bigbuffer);
\r
159 //printf("bigbr= %04x", bigbuffer);
\r
161 printf("&bigb=%Fp ", &bigbuffer);
\r
162 //printf("&bigb=%04x", &bigbuffer);
\r
164 printf("========================================\n");
\r
166 printf("Total free: %lu\n", (dword)(GetFreeSize()));
\r
167 printf("Total near free: %lu\n", (dword)(GetNearFreeSize()));
\r
168 printf("Total far free: %lu\n", (dword)(GetFarFreeSize()));
\r
170 printf("Project 16 emmtest.exe. This is just a test file!\n");
\r
171 printf("version %s\n", VERSION);
\r
173 //printf("core left: %lu\n", (dword)_coreleft());
\r
174 //printf("far core left: %lu\n", (dword)_farcoreleft());
\r
175 //printf("based core left: %lu\n", (dword)_basedcoreleft());
\r
176 //printf("huge core left: %lu\n", (dword)_hugecoreleft());
\r