]> 4ch.mooo.com Git - 16.git/blob - 16/exmmtest/exmmtest.c
OK i got the borland C version of exmmtest.exe to compile and it dose not go BOOM...
[16.git] / 16 / exmmtest / 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 borland c ver
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 "16_head.h"
32 #include "16_ca.h"
33 #include "16_mm.h"
34 //#include "src/lib/modex16.h"
35 /*#pragma hdrstop\r
36 \r
37 #pragma warn -pro\r
38 #pragma warn -use*/
39
40 //file load or read definition
41 #define FILERL
42 //#define FILEREAD
43
44 void
45 main(int argc, char *argv[])
46 {
47         mminfo_t mm; mminfotype mmi;
48         unsigned __far *segu;
49 #ifdef FILERL
50         memptr bigbuffer;
51         char *bakapee;
52 //      int bakapeehandle;
53         word baka;
54 #endif
55         //static page_t screen;
56
57         //mmi.segu=FP_SEG(segu);
58
59         printf("&main()=%Fp\n", *argv[0]);
60         printf("&segu=%Fp\n", &segu);
61         printf("bigbuffer=      %Fp\n", bigbuffer);
62         printf("&bigbuffer=     %Fp\n", &bigbuffer);
63         //printf("mmi.segu=%p\n", (mmi.segu));
64
65 #ifdef FILERL
66         bakapee = malloc(64);
67 //      memset(bakapee, 0, 64);
68 #endif
69         mm.mmstarted=0;
70
71 #ifdef FILERL
72         if(argv[1]) bakapee = argv[1];
73         else bakapee = "../../data/koishi~~.pcx";
74 #endif
75
76         //textInit();\r
77
78         /* setup camera and screen~ */
79         //bug!!!\r
80         //screen = modexDefaultPage();\r
81         /*screen.width += (16*2);\r
82         screen.height += (16*2);*/
83
84         printf("main()=%Fp      start MM\n", *argv[0]);
85         MM_Startup(&mm, &mmi);
86         //PM_Startup();\r
87         //PM_UnlockMainMem();\r
88         CA_Startup();
89         printf("                done!\n");
90         /*if(FP_SEG(*argv[0])==0)
91         {
92                 MM_Report(&screen, &mm, &mmi);
93                 MM_Shutdown(&mm);
94                 printf("&main()=%Fp\n", *argv[0]);
95                 printf("&main() == %u\n", FP_SEG(*argv[0]));
96                 exit(-5);
97         }*/
98         printf("&main()=%Fp\n", *argv[0]);
99         printf("&segu=%Fp\n", &segu);
100         printf("bigbuffer=      %Fp\n", bigbuffer);
101         printf("&bigbuffer=     %Fp\n", &bigbuffer);\r
102         //printf("mmi.segu=%p\n", (mmi.segu));
103 #ifdef FILERL
104 //      bakapeehandle = open(bakapee,O_RDONLY | O_BINARY, S_IREAD);
105 //wat   printf("size of big buffer~=%u\n", _bmsize(segu, bigbuffer));
106 //      if(CA_FarRead(bakapeehandle,(void far *)&bigbuffer,sizeof(bigbuffer),&mm))
107 #ifdef FILEREAD
108         printf("                read\n");
109         if(CA_ReadFile(bakapee, &bigbuffer, &mm))
110 #else
111         printf("                load\n");
112         if(CA_LoadFile(bakapee, &bigbuffer, &mm, &mmi))
113 #endif
114                 baka=1;
115         else
116                 baka=0;
117 //      close(bakapeehandle);
118         //hmm functions in cache system use the buffered stuff
119 //      printf("size of big buffer~=%u\n", _bmsize(segu, bigbuffer));
120 #endif
121         printf("dark purple = purgable\n");
122         printf("medium blue = non purgable\n");
123         printf("red = locked\n");
124         getch();
125         //++++modexEnter();
126         //++++modexShowPage(&screen);
127         MM_ShowMemory(/*&screen, */&mm);
128         //getch();
129         MM_DumpData(&mm);
130         //++++modexLeave();
131         MM_Report(&mm, &mmi);
132         printf("                stop!\n");
133 #ifdef FILERL
134         MM_FreePtr(&bigbuffer, &mm);
135 #endif
136         //PM_Shutdown();
137         CA_Shutdown();
138         MM_Shutdown(&mm);
139         printf("                done!\n");
140 #ifdef FILERL
141         free(bakapee);
142         if(baka) printf("\nyay!\n");
143         else printf("\npoo!\n");
144 #endif
145         printf("bigbuffer=      %Fp\n", bigbuffer);
146         printf("&bigbuffer=     %Fp\n", &bigbuffer);
147 }