]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_mm.c
^^ yay! i polished exmmtest and the memory reporter
[16.git] / src / lib / 16_mm.c
1 /* Catacomb Apocalypse Source Code
2  * Copyright (C) 1993-2014 Flat Rock Software
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 // NEWMM.C
20
21 /*
22 =============================================================================
23
24                         ID software memory manager
25                         --------------------------
26
27 Primary coder: John Carmack
28
29 RELIES ON
30 ---------
31 Quit (char *error) function
32
33
34 WORK TO DO
35 ----------
36 MM_SizePtr to change the size of a given pointer
37
38 Multiple purge levels utilized
39
40 EMS / XMS unmanaged routines
41
42 =============================================================================
43 */
44 /*
45
46 Open Watcom port by sparky4
47
48 */
49 #include "src/lib/16_mm.h"
50 #include "src/lib/16_ca.h"
51 #pragma hdrstop
52
53 #pragma warn -pro
54 #pragma warn -use
55
56 /*
57 =============================================================================
58
59                                                  GLOBAL VARIABLES
60
61 =============================================================================
62 */
63
64 void            (* beforesort) (void);
65 void            (* aftersort) (void);
66 void            (* XMSaddr) (void);             // far pointer to XMS driver
67
68 /*
69 =============================================================================
70
71                                                  LOCAL VARIABLES
72
73 =============================================================================
74 */
75
76 static  char *ParmStringsexmm[] = {"noems","noxms",""};
77
78 /*
79 ======================
80 =
81 = MML_CheckForEMS
82 =
83 = Routine from p36 of Extending DOS
84 =
85 =======================
86 */
87
88 boolean MML_CheckForEMS(void)
89 {
90         boolean emmcfems;
91         static char     emmname[] = "EMMXXXX0"; //fix by andrius4669
92         __asm {
93                 mov     dx,OFFSET emmname       //fix by andrius4669
94                 mov     ax,0x3d00
95                 int     0x21            // try to open EMMXXXX0 device
96                 jc      error
97
98                 mov     bx,ax
99                 mov     ax,0x4400
100
101                 int     0x21            // get device info
102                 jc      error
103
104                 and     dx,0x80
105                 jz      error
106
107                 mov     ax,0x4407
108
109                 int     0x21            // get status
110                 jc      error
111                 or      al,al
112                 jz      error
113
114                 mov     ah,0x3e
115                 int     0x21            // close handle
116                 jc      error
117                 //
118                 // EMS is good
119                 //
120                 mov     emmcfems,1
121                 jmp End
122 #ifdef __BORLANDC__
123         }
124 #endif
125                 error:
126 #ifdef __BORLANDC__
127         __asm {
128 #endif
129                 //
130                 // EMS is bad
131                 //
132                 mov     emmcfems,0
133 #ifdef __BORLANDC__
134         }
135 #endif
136                 End:
137 #ifdef __WATCOMC__
138         }
139 #endif
140         return(emmcfems);
141 }
142
143
144 /*
145 ======================
146 =
147 = MML_SetupEMS
148 =
149 =======================
150 */
151
152 byte MML_SetupEMS(mminfo_t *mm)
153 {
154         byte    str[160];
155         byte    err;
156         boolean errorflag=false;
157
158         unsigned int EMSVer = 0;
159         //byte  EMS_status;
160         unsigned        totalEMSpages,freeEMSpages,EMSpageframe,EMSpagesmapped,EMShandle;
161         totalEMSpages = freeEMSpages = EMSpageframe = EMSpagesmapped = 0;
162
163         __asm {
164                 mov     ah,EMS_STATUS
165                 int     EMS_INT                                         // make sure EMS hardware is present
166                 or      ah,ah
167                 //mov   [EMS_status],ah
168                 jnz     error
169
170                 mov     ah,EMS_VERSION
171                 int     EMS_INT
172                 or      ah,ah
173                 jnz     error
174                 mov     [EMSVer],ax                             //      set EMSVer
175                 cmp     al,0x32                                         // only work on ems 3.2 or greater
176                 jb      error
177
178                 mov     ah,EMS_GETFRAME
179                 int     EMS_INT                                         // find the page frame address
180                 or      ah,ah
181                 jnz     error
182                 mov     [EMSpageframe],bx
183
184                 mov     ah,EMS_GETPAGES
185                 int     EMS_INT                                         // find out how much EMS is there
186                 or      ah,ah
187                 jnz     error
188                 mov     [totalEMSpages],dx
189                 mov     [freeEMSpages],bx
190                 or      bx,bx
191                 jz      noEMS                                           // no EMS at all to allocate
192                                                                                         //EXPAND DONG!!!!
193                 cmp     [EMSVer],0x40
194                 jb      low
195                 cmp     bx,[freeEMSpages]
196                 jle     getpages
197                 mov     bx,[freeEMSpages]
198                 jmp     getpages
199 #ifdef __BORLANDC__
200         }
201 #endif
202         low:
203 #ifdef __BORLANDC__
204         __asm {
205 #endif
206                 cmp     bx,4
207                 jle     getpages                                        // there is only 1,2,3,or 4 pages
208                 mov     bx,4                                            // we can't use more than 4 pages
209 #ifdef __BORLANDC__
210         }
211 #endif
212         getpages:
213 #ifdef __BORLANDC__
214         __asm {
215 #endif
216                 mov     [EMSpagesmapped],bx
217                 mov     ah,EMS_ALLOCPAGES                       // allocate up to 64k of EMS
218                 int     EMS_INT
219                 or      ah,ah
220                 jnz     error
221                 mov     [EMShandle],dx
222                 jmp End
223 #ifdef __BORLANDC__
224         }
225 #endif
226         error:
227 #ifdef __BORLANDC__
228         __asm {
229 #endif
230                 mov     err,ah
231                 mov     errorflag,1
232                 jmp End
233 #ifdef __BORLANDC__
234         }
235 #endif
236 noEMS:
237 End:
238 #ifdef __WATCOMC__
239         }
240 #endif
241         if(errorflag==true)
242         {
243                 strcpy(str,"MM_SetupEMS: EMS error ");
244                 MM_EMSerr(str, err);
245                 printf("%s\n",str);
246                 return err;
247         }
248         mm->totalEMSpages=totalEMSpages;
249         mm->freeEMSpages=freeEMSpages;
250         mm->EMSpageframe=EMSpageframe;
251         mm->EMSpagesmapped=EMSpagesmapped;
252         mm->EMShandle=EMShandle;
253         mm->EMSVer=EMSVer;
254         return 0;
255 }
256
257
258 /*
259 ======================
260 =
261 = MML_ShutdownEMS
262 =
263 =======================
264 */
265
266 void MML_ShutdownEMS(mminfo_t *mm)
267 {
268         boolean errorflag=false;
269         unsigned EMShandle=mm->EMShandle;
270
271         if(!EMShandle)
272                 return;
273         __asm {
274                 mov     ah,EMS_FREEPAGES
275                 mov     dx,[EMShandle]
276                 int     EMS_INT
277                 or      ah,ah
278                 jz      ok
279                 mov     errorflag,1
280 #ifdef __BORLANDC__
281         }
282 #endif
283                 ok:
284 #ifdef __WATCOMC__
285         }
286 #endif
287         if(errorflag==true) printf("MML_ShutdownEMS: Error freeing EMS!\n");    //++++ add something
288 }
289
290 /*
291 ====================
292 =
293 = MM_MapEMS
294 =
295 = Maps the 64k of EMS used by memory manager into the page frame
296 = for general use.  This only needs to be called if you are keeping
297 = other things in EMS.
298 =
299 ====================
300 */
301
302 byte MM_MapEMS(mminfo_t *mm, mminfotype *mmi)
303 {
304         byte    str[160];
305         unsigned        EMShandle;
306         byte err;
307         boolean errorflag=false;
308         int     i;
309         EMShandle=mm->EMShandle;
310
311         for (i=0;i<4/*MAPPAGES*/;i++)
312         {
313                 __asm {
314                         mov     ah,EMS_MAPPAGE
315                         mov     bx,[i]                  // logical page
316                         mov     al,bl                   // physical page
317                         mov     dx,[EMShandle]  // handle
318                         int     EMS_INT
319                         or      ah,ah
320                         jnz     error
321                         jmp End
322 #ifdef __BORLANDC__
323                 }
324 #endif
325                         error:
326 #ifdef __BORLANDC__
327                 __asm {
328 #endif
329                         mov     err,ah
330                         mov     errorflag,1
331 #ifdef __BORLANDC__
332                 }
333 #endif
334                         End:
335 #ifdef __WATCOMC__
336                 }
337 #endif
338                 if(errorflag==true)
339                 {
340                         strcpy(str,"MM_MapEMS: EMS error ");
341                         MM_EMSerr(str, err);
342                         printf("%s\n",str);
343                         return err;
344                 }
345         }
346         mmi->EMSmem = (i)*0x4000lu;
347         //printf("              mmi->EMSmem=%lu\n", mmi->EMSmem);
348         return 0;
349 }
350
351 byte MM_MapXEMS(mminfo_t *mm, mminfotype *mmi)
352 {
353 //SUB EMS.MapXPages (PhysicalStart, LogicalStart, NumPages, Handle)
354
355         //Maps up to 4 logical EMS pages to physical pages in the page frame, where:
356         //PhysicalStart = Physical page first logical page is mapped to
357         //LogicalStart  = First logical page to map
358         //NumPages      = Number of pages to map (1 to 4)
359         //Handle        = EMS handle logical pages are allocated to
360
361   /*//Create a buffer containing the page information
362 //  FOR x = 0 TO NumPages - 1
363 //    MapInfo$ = MapInfo$ + MKI$(LogicalStart + x) + MKI$(PhysicalStart + x)
364 //  NEXT*/
365
366 //  Regs.ax = 0x5000                           //Map the pages in the buffer
367 //  Regs.cx = NumPages                         //to the pageframe
368 //  Regs.dx = Handle
369 //  Regs.ds = VARSEG(MapInfo$)
370 //  Regs.si = SADD(MapInfo$)
371 //  InterruptX 0x67, Regs, Regs
372 //      EMS.Error = (Regs.ax AND 0xFF00&) \ 0x100  //Store the status code
373
374 //END SUB
375         byte    str[160];
376         byte err;
377         word    EMShandle;
378         boolean errorflag=false;
379         int     i;
380         EMShandle=mm->EMShandle;
381
382         if(mm->EMSVer<0x40)
383                 return 5;
384
385         for (i=0;i<MAPPAGES;i++)
386         {
387                 __asm {
388                         mov     ah,EMS_MAPXPAGE
389                         mov     cx,[i]                  // logical page
390                         mov     al,bl                   // physical page
391                         mov     dx,[EMShandle]  // handle
392                         int     EMS_INT
393                         or      ah,ah
394                         jnz     error
395                         jmp End
396 #ifdef __BORLANDC__
397                 }
398 #endif
399                         error:
400 #ifdef __BORLANDC__
401                 __asm {
402 #endif
403                         mov     err,ah
404                         mov     errorflag,1
405 #ifdef __BORLANDC__
406                 }
407 #endif
408                         End:
409 #ifdef __WATCOMC__
410                 }
411 #endif
412                 if(errorflag==true)
413                 {
414                         //strcpy(str,"MM_MapXEMS: EMS error 0x");
415                         strcpy(str,"MM_MapXEMS: EMS error ");
416                         //itoa(err,str2,16);
417                         MM_EMSerr(str, err);
418                         printf("%s\n",str);
419                         //printf("%s%x\n",str, err);
420                         //printf("FACK! %x\n", err);
421                         return err;
422                 }
423         }
424         mmi->EMSmem = (i)*0x4000lu;
425         return 0;
426 }
427
428 //==========================================================================
429
430 /*
431 ======================
432 =
433 = MML_CheckForXMS
434 =
435 = Check for XMM driver
436 =
437 =======================
438 */
439
440 boolean MML_CheckForXMS(mminfo_t *mm)
441 {
442         boolean errorflag=false;
443         mm->numUMBs = 0;
444
445         __asm {
446                 mov     ax,0x4300
447                 int     0x2f                            // query status of installed diver
448                 cmp     al,0x80
449                 je      good
450                 mov     errorflag,1
451 #ifdef __BORLANDC__
452         }
453 #endif
454                 good:
455 #ifdef __WATCOMC__
456         }
457 #endif
458         if(errorflag==true) return false;
459         else return true;
460 }
461
462
463 /*
464 ======================
465 =
466 = MML_SetupXMS
467 =
468 = Try to allocate all upper memory block
469 =
470 =======================
471 */
472
473 void MML_SetupXMS(mminfo_t *mm, mminfotype *mmi)
474 {
475         word    base,size;
476
477
478         __asm {
479                 mov     ax,0x4310
480                 int     0x2f
481                 mov     [WORD PTR XMSaddr],bx
482                 mov     [WORD PTR XMSaddr+2],es         // function pointer to XMS driver
483         }
484 getmemory:
485         __asm {
486                 mov     ah,XMS_ALLOCUMB
487                 mov     dx,0xffff                                       // try for largest block possible
488                 //mov     ax,dx                                         // Set available Kbytes.
489                 call    [DWORD PTR XMSaddr]
490                 or      ax,ax
491                 jnz     gotone
492
493                 cmp     bl,0xb0                                         // error: smaller UMB is available
494                 jne     done;
495
496                 mov     ah,XMS_ALLOCUMB
497                 call    [DWORD PTR XMSaddr]             // DX holds largest available UMB
498                 or      ax,ax
499                 jz      done                                            // another error...
500 #ifdef __BORLANDC__
501         }
502 #endif
503                 gotone:
504 #ifdef __BORLANDC__
505         __asm {
506 #endif
507                 mov     [base],bx
508                 mov     [size],dx
509 #ifdef __BORLANDC__
510         }
511 #endif
512                 done:
513 #ifdef __WATCOMC__
514         }
515 #endif
516 //      printf("base=%u ", base); printf("size=%u\n", size);
517         MML_UseSpace(base,size, mm);
518         mmi->XMSmem += size*16;
519         mm->UMBbase[mm->numUMBs] = base;
520         mm->numUMBs++;
521         if(mm->numUMBs < MAXUMBS)
522                 goto getmemory;
523 }
524
525
526 /*
527 ======================
528 =
529 = MML_ShutdownXMS
530 =
531 ======================
532 */
533
534 void MML_ShutdownXMS(mminfo_t *mm)
535 {
536         int     i;
537         unsigned        base;
538
539         for (i=0;i<mm->numUMBs;i++)
540         {
541                 base = mm->UMBbase[i];
542                 __asm {
543                         mov     ah,XMS_FREEUMB
544                         mov     dx,[base]
545                         call    [DWORD PTR XMSaddr]
546                 }
547         }
548 }
549
550 //==========================================================================
551
552 /*
553 ======================
554 =
555 = MML_UseSpace
556 =
557 = Marks a range of paragraphs as usable by the memory manager
558 = This is used to mark space for the near heap, far heap, ems page frame,
559 = and upper memory blocks
560 =
561 ======================
562 */
563
564 /*void MML_UseSpace(word segstart, dword seglength, mminfo_t *mm)
565 {
566         //huge mmblocktype huge *scan,huge *last;
567         word            segm=1;
568         word    oldend;
569         dword           segmlen;
570         dword           extra;
571
572         scan = last = mm->mmhead;
573         mm->mmrover = mm->mmhead;               // reset rover to start of memory
574
575 //
576 // search for the block that contains the range of segments
577 //
578         while(scan->start+scan->length < segstart)
579         {
580                 last = scan;
581                 scan = scan->next;
582         }
583
584 //
585 // take the given range out of the block
586 //
587         oldend = scan->start + scan->length;
588         extra = oldend - (segstart+seglength);
589
590         segmlen=extra;
591
592         //++++emsver stuff!
593         if(segm>1)/// || extra>=0x10000lu)
594         //if(extra>0xfffflu)
595         {
596                 scan->blob=segm;
597
598                 //MML_UseSpace(segstart, seglength, mm);
599
600                 printf("MML_UseSpace: Segment spans two blocks!\n");
601         //}
602         printf("segm=%u         ", segm);
603         printf("ex=%lu  ", extra);
604         printf("old=%u  ", oldend);
605         printf("start+seglen=%lu\n", segstart+seglength);
606         printf("segsta=%x       ", segstart);
607         printf("len=%lu ", scan->length);
608         printf("seglen=%lu      ", seglength);
609         printf("segmlen=%lu\n", segmlen);
610         }
611 //++++todo: linked list of segment!
612         if(segstart == scan->start)
613         {
614                 last->next = scan->next;                        // unlink block
615                 FREEBLOCK(scan);
616                 scan = last;
617         }
618         else
619                 scan->length = segstart-scan->start;    // shorten block
620
621         if(extra > 0)
622         {
623                 GETNEWBLOCK;
624                 mm->mmnew->useptr = NULL;
625
626                 mm->mmnew->next = scan->next;
627                 scan->next = mm->mmnew;
628                 mm->mmnew->start = segstart+seglength;
629                 mm->mmnew->length = extra;
630                 mm->mmnew->attributes = LOCKBIT;
631         }//else if(segm>0) goto segu;
632
633 }*/
634 void MML_UseSpace(word segstart, dword seglength, mminfo_t *mm)
635 {
636         mmblocktype far *scan,far *last;
637         word    oldend;
638         sdword          extra;
639         //word segm=1;
640
641         scan = last = mm->mmhead;
642         mm->mmrover = mm->mmhead;               // reset rover to start of memory
643
644 //
645 // search for the block that contains the range of segments
646 //
647         while (scan->start+scan->length < segstart)
648         {
649                 last = scan;
650                 scan = scan->next;
651         }
652
653 //
654 // find out how many blocks it spans!
655 //
656         /*for(;seglength>=0x10000;seglength-=0xFFFF)
657         {
658                 //printf("      seglen=%lu\n", segmlen);
659                 segm++;
660         }*/
661
662 //
663 // take the given range out of the block
664 //
665         oldend = scan->start + scan->length;
666         extra = oldend - (segstart+((unsigned)seglength));
667         if (extra < 0)
668         {
669                 printf("========================================\n");
670                 printf("start=%x        ", scan->start);
671                 printf("old=%u  ", oldend);
672                 printf("start+seglen=%lu\n", segstart+seglength);
673                 printf("segsta=%x       ", segstart);
674                 printf("len=%lu ", scan->length);
675                 printf("seglen=%lu      ", seglength);
676                 printf("\n");
677                 printf("MML_UseSpace: Segment spans two blocks! %d\n", extra);
678                 printf("========================================\n");
679                 //return;
680         }
681
682         if (segstart == scan->start)
683         {
684                 last->next = scan->next;                        // unlink block
685                 FREEBLOCK(scan);
686                 scan = last;
687         }
688         else
689                 scan->length = segstart-scan->start;    // shorten block
690
691         if (extra > 0)
692         {
693                 GETNEWBLOCK;
694                 mm->mmnew->useptr = NULL;
695
696                 mm->mmnew->next = scan->next;
697                 scan->next = mm->mmnew;
698                 mm->mmnew->start = segstart+seglength;
699                 mm->mmnew->length = extra;
700                 mm->mmnew->attributes = LOCKBIT;
701         }
702
703 }
704
705 //==========================================================================
706
707 /*
708 ====================
709 =
710 = MML_ClearBlock
711 =
712 = We are out of blocks, so free a purgable block
713 =
714 ====================
715 */
716
717 void MML_ClearBlock(mminfo_t *mm)
718 {
719         //huge mmblocktype huge *scan,huge *last;
720         mmblocktype far *scan,far *last;
721
722         scan = mm->mmhead->next;
723
724         while(scan)
725         {
726                 if(!(scan->attributes&LOCKBIT) && (scan->attributes&PURGEBITS))
727                 {
728                         MM_FreePtr(scan->useptr, mm);
729                         return;
730                 }
731                 scan = scan->next;
732         }
733
734         printf("MM_ClearBlock: No purgable blocks!\n");
735 }
736
737
738 //==========================================================================
739
740 /*
741 ===================
742 =
743 = MM_Startup
744 =
745 = Grabs all space from turbo with malloc/farmalloc
746 = Allocates bufferseg misc buffer
747 =
748 ===================
749 */
750
751 void MM_Startup(mminfo_t *mm, mminfotype *mmi)
752 {
753         int i;
754         //dword length,seglength;
755         dword length; word seglength;
756         //huge void huge        *start;
757         void far        *start;
758         word    segstart;//,endfree;
759         //memptr *peeonself;
760
761 //      if(mm->mmstarted)
762 //              MM_Shutdown(mm);
763
764         mm->mmstarted = true;
765         mm->bombonerror = true;
766
767 //
768 // set up the linked list (everything in the free list;
769 //
770         mm->mmhead = NULL;
771         mm->mmfree = &(mm->mmblocks[0]);
772         for(i=0;i<MAXBLOCKS-1;i++)
773         {
774                 mm->mmblocks[i].next = &(mm->mmblocks[i+1]);
775         }
776         mm->mmblocks[i].next = NULL;
777
778 //
779 // locked block of all memory until we punch out free space
780 //
781         GETNEWBLOCK;
782         mm->mmhead = mm->mmnew;                         // this will allways be the first node
783         mm->mmnew->start = 0;
784         mm->mmnew->length = 0xffff;
785         mm->mmnew->attributes = LOCKBIT;
786         mm->mmnew->next = NULL;
787         //mm->mmnew->useptr = peeonself;
788         mm->mmrover = mm->mmhead;
789
790         //printf("              %x\n", peeonself);
791         //printf("              %x\n", *peeonself);
792 //
793 // get all available near conventional memory segments
794 //
795 #ifdef __WATCOMC__
796         _nheapgrow();
797         length=(dword)_memavl();//(dword)GetFreeSize();
798         //huge start = (void huge *)(mm->nearheap = _nmalloc(length));
799         start = (void far *)(mm->nearheap = _nmalloc(length));
800 #endif
801 #ifdef __BORLANDC__
802         length=coreleft();
803         //huge start = (void huge *)(mm->nearheap = malloc(length));
804         start = (void far *)(mm->nearheap = malloc(length));
805 #endif
806         length -= 16-(FP_OFF(start)&15);
807         length -= SAVENEARHEAP;
808         seglength = length / 16;                        // now in paragraphs
809         segstart = FP_SEG(start)+(FP_OFF(start)+15)/16;
810         MML_UseSpace(segstart,seglength, mm);
811         mmi->nearheap = length;
812         //printf("start=%Fp     segstart=%x     seglen=%lu      len=%lu\n", start, segstart, seglength, length);
813
814 //
815 // get all available far conventional memory segments
816 //
817         //printf("_FARCORELEFT                          %lu\n", _FCORELEFT);
818 #ifdef __WATCOMC__
819         _fheapgrow();
820 #endif
821 #ifdef __BORLANDC__
822         printf("farcoreleft()                           %lu\n", farcoreleft());
823         printf("(farcoreleft()+32)-_FCORELEFT   %d\n", (sword)((farcoreleft()+32)-_FCORELEFT));
824 #endif
825         length=_FCORELEFT;//_fcoreleft();//(dword)GetFarFreeSize();//0xffffUL*4UL;
826         start = mm->farheap = _fmalloc(length);
827         //start = mm->farheap = halloc(length, 1);
828         length -= 16-(FP_OFF(start)&15);
829         length -= SAVEFARHEAP;
830         seglength = length / 16;                        // now in paragraphs
831         segstart = FP_SEG(start)+(FP_OFF(start)+15)/16;
832         MML_UseSpace(segstart,seglength, mm);
833         mmi->farheap = length;
834         //printf("start=%Fp     segstart=%x     seglen=%lu      len=%lu\n", start, segstart, seglength, length);
835
836         mmi->mainmem = mmi->nearheap + mmi->farheap;
837
838 //
839 // detect EMS and allocate up to 64K at page frame
840 //
841         mmi->EMSmem = 0;
842 //goto emsskip; //0000
843         for(i = 1;i <
844 #ifdef __WATCOMC__
845         __argc
846 #endif
847 #ifdef __BORLANDC__
848         _argc
849 #endif
850         ;i++)
851         {
852                 if(US_CheckParm(
853 #ifdef __WATCOMC__
854         __argv[i]
855 #endif
856 #ifdef __BORLANDC__
857         _argv[i]
858 #endif
859                         ,ParmStringsexmm) == 0)
860                         goto emsskip;                           // param NOEMS
861         }
862         if(MML_CheckForEMS())
863         {
864                 MML_SetupEMS(mm);                                       // allocate space
865                 //TODO: EMS4! AND EMS 3.2 MASSIVE DATA HANDLMENT!
866                 MML_UseSpace(mm->EMSpageframe,(MAPPAGES)*0x4000lu, mm);
867                 //if(mm->EMSVer<0x40)
868                         MM_MapEMS(mm, mmi);                                     // map in used pages
869                 //else
870                         //MM_MapXEMS(mm, mmi);                                  // map in used pages
871         }
872
873 //
874 // detect XMS and get upper memory blocks
875 //
876 emsskip:
877         mmi->XMSmem = 0;
878 goto xmsskip;//0000
879         for(i = 1;i <
880 #ifdef __WATCOMC__
881         __argc
882 #endif
883 #ifdef __BORLANDC__
884         _argc
885 #endif
886         ;i++)
887         {
888                 if(US_CheckParm(
889 #ifdef __WATCOMC__
890         __argv[i]
891 #endif
892 #ifdef __BORLANDC__
893         _argv[i]
894 #endif
895                         ,ParmStringsexmm) == 0)
896                         goto xmsskip;                           // param NOXMS
897         }
898         if(MML_CheckForXMS(mm))
899         {
900                 MML_SetupXMS(mm, mmi);                                  // allocate as many UMBs as possible
901         }
902
903 //
904 // allocate the misc buffer
905 //
906 xmsskip:
907         mm->mmrover = mm->mmhead;               // start looking for space after low block
908
909         MM_GetPtr(&(mm->bufferseg),BUFFERSIZE, mm, mmi);
910 }
911
912 //==========================================================================
913
914 /*
915 ====================
916 =
917 = MM_Shutdown
918 =
919 = Frees all conventional, EMS, and XMS allocated
920 =
921 ====================
922 */
923
924 void MM_Shutdown(mminfo_t *mm)
925 {
926         if(!(mm->mmstarted))
927                 return;
928
929         _ffree(mm->farheap);//  printf("                far freed\n");
930 #ifdef __WATCOMC__
931         _nfree(mm->nearheap);// printf("                near freed\n");
932 #endif
933 #ifdef __BORLANDC__
934         free(mm->nearheap);//   printf("                near freed\n");
935 #endif
936         if(MML_CheckForEMS()){ MML_ShutdownEMS(mm); }//printf("         EMS freed\n"); }
937         if(MML_CheckForXMS(mm)){ MML_ShutdownXMS(mm); }//printf("               XMS freed\n"); }
938 }
939
940 //==========================================================================
941
942 /*
943 ====================
944 =
945 = MM_GetPtr
946 =
947 = Allocates an unlocked, unpurgable block
948 =
949 ====================
950 */
951
952 void MM_GetPtr (memptr *baseptr, dword size, mminfo_t *mm, mminfotype *mmi)
953 {
954         //huge mmblocktype huge *scan,huge *lastscan,huge *endscan,huge *purge,huge *next;
955         mmblocktype far *scan,far *lastscan,far *endscan,far *purge,far *next;
956         int                     search;
957         unsigned        needed,startseg;
958
959         needed = (size+15)/16;          // convert size from bytes to paragraphs
960
961         GETNEWBLOCK;                            // fill in start and next after a spot is found
962         mm->mmnew->length = needed;
963         mm->mmnew->useptr = baseptr;
964         //if(mm->mmnew->useptr==NULL){
965         printf("baseptr=%04x    ", baseptr); printf("useptr=%04x\n", mm->mmnew->useptr);
966         printf("*baseptr=%04x   ", *baseptr); printf("*useptr=%04x\n", *(mm->mmnew->useptr));
967         //printf("*baseptr=%Fp  ", *baseptr); printf("*useptr=%Fp\n", *(mm->mmnew->useptr));
968         //exit(-5); }
969         mm->mmnew->attributes = BASEATTRIBUTES;
970
971 //tryagain:
972         for (search = 0; search<3; search++)
973         {
974         //
975         // first search:        try to allocate right after the rover, then on up
976         // second search:       search from the head pointer up to the rover
977         // third search:        compress memory, then scan from start
978                 if (search == 1 && mm->mmrover == mm->mmhead)
979                         search++;
980
981                 switch (search)
982                 {
983                 case 0:
984                         lastscan = mm->mmrover;
985                         scan = mm->mmrover->next;
986                         endscan = NULL;
987                         break;
988                 case 1:
989                         lastscan = mm->mmhead;
990                         scan = mm->mmhead->next;
991                         endscan = mm->mmrover;
992                         break;
993                 case 2:
994                         MM_SortMem (mm);
995                         lastscan = mm->mmhead;
996                         scan = mm->mmhead->next;
997                         endscan = NULL;
998                         break;
999                 }
1000
1001                 startseg = lastscan->start + lastscan->length;
1002
1003                 while (scan != endscan)
1004                 {
1005                         if (scan->start - startseg >= needed)
1006                         {
1007                         //
1008                         // got enough space between the end of lastscan and
1009                         // the start of scan, so throw out anything in the middle
1010                         // and allocate the new block
1011                         //
1012                                 purge = lastscan->next;
1013                                 lastscan->next = mm->mmnew;
1014                                 mm->mmnew->start = *(unsigned *)baseptr = startseg;
1015                                 mm->mmnew->next = scan;
1016                                 while ( purge != scan)
1017                                 {       // free the purgable block
1018                                         next = purge->next;
1019                                         FREEBLOCK(purge);
1020                                         purge = next;           // purge another if not at scan
1021                                 }
1022                                 mm->mmrover = mm->mmnew;
1023                                 return; // good allocation!
1024                         }
1025
1026                         //
1027                         // if this block is purge level zero or locked, skip past it
1028                         //
1029                         if ( (scan->attributes & LOCKBIT)
1030                                 || !(scan->attributes & PURGEBITS) )
1031                         {
1032                                 lastscan = scan;
1033                                 startseg = lastscan->start + lastscan->length;
1034                         }
1035
1036
1037                         scan=scan->next;                // look at next line
1038                 }
1039         }
1040
1041         if (mm->bombonerror)
1042         {
1043 #ifdef __WATCOMC__
1044                 //heapdump();
1045 #endif
1046                 printf(OUT_OF_MEM_MSG,(size-mmi->nearheap));
1047                 printf("for stability reasons the program will shut down! wwww\n");
1048                 MM_Shutdown(mm);
1049                 exit(-1);
1050         }
1051         else
1052                 mm->mmerror = true;
1053 }
1054
1055 //==========================================================================
1056
1057 /*
1058 ====================
1059 =
1060 = MM_FreePtr
1061 =
1062 = Allocates an unlocked, unpurgable block
1063 =
1064 ====================
1065 */
1066
1067 void MM_FreePtr(memptr *baseptr, mminfo_t *mm)
1068 {
1069         //huge mmblocktype huge *scan,huge *last;
1070         mmblocktype far *scan,far *last;
1071
1072         last = mm->mmhead;
1073         scan = last->next;
1074
1075         if(baseptr == mm->mmrover->useptr)      // removed the last allocated block
1076                 mm->mmrover = mm->mmhead;
1077
1078         while(scan->useptr != baseptr && scan)
1079         {
1080                 last = scan;
1081                 scan = scan->next;
1082         }
1083
1084         if(!scan)
1085         {
1086                 printf("MM_FreePtr: Block not found!\n");
1087                 return;
1088         }
1089
1090         last->next = scan->next;
1091
1092         FREEBLOCK(scan);
1093 }
1094 //==========================================================================
1095
1096 /*
1097 =====================
1098 =
1099 = MM_SetPurge
1100 =
1101 = Sets the purge level for a block (locked blocks cannot be made purgable)
1102 =
1103 =====================
1104 */
1105
1106 void MM_SetPurge(memptr *baseptr, int purge, mminfo_t *mm)
1107 {
1108         //huge mmblocktype huge *start;
1109         mmblocktype far *start;
1110
1111         start = mm->mmrover;
1112
1113         do
1114         {
1115                 if(mm->mmrover->useptr == baseptr)
1116                         break;
1117
1118                 mm->mmrover = mm->mmrover->next;
1119
1120                 if(!mm->mmrover)
1121                         mm->mmrover = mm->mmhead;
1122                 else if(mm->mmrover == start)
1123                 {
1124                         printf("MM_SetPurge: Block not found!");
1125                         return;
1126                 }
1127
1128         } while(1);
1129
1130         mm->mmrover->attributes &= ~PURGEBITS;
1131         mm->mmrover->attributes |= purge;
1132 }
1133
1134 //==========================================================================
1135
1136 /*
1137 =====================
1138 =
1139 = MM_SetLock
1140 =
1141 = Locks / unlocks the block
1142 =
1143 =====================
1144 */
1145
1146 void MM_SetLock(memptr *baseptr, boolean locked, mminfo_t *mm)
1147 {
1148         //huge mmblocktype huge *start;
1149         mmblocktype far *start;
1150
1151         start = mm->mmrover;
1152
1153         do
1154         {
1155                 if(mm->mmrover->useptr == baseptr)
1156                         break;
1157
1158                 mm->mmrover = mm->mmrover->next;
1159
1160                 if(!mm->mmrover)
1161                         mm->mmrover = mm->mmhead;
1162                 else if(mm->mmrover == start)
1163                 {
1164                         printf("MM_SetLock: Block not found!");
1165                         return;
1166                 }
1167
1168         } while(1);
1169
1170         mm->mmrover->attributes &= ~LOCKBIT;
1171         mm->mmrover->attributes |= locked*LOCKBIT;
1172 }
1173
1174 //==========================================================================
1175
1176 /*
1177 =====================
1178 =
1179 = MM_SortMem
1180 =
1181 = Throws out all purgable stuff and compresses movable blocks
1182 =
1183 =====================
1184 */
1185
1186 void MM_SortMem(mminfo_t *mm)
1187 {
1188         //huge mmblocktype huge *scan,huge *last,huge *next;
1189         mmblocktype far *scan,far *last,far *next;
1190         unsigned        start,length,source,dest,oldborder;
1191         int                     playing;
1192
1193         //
1194         // lock down a currently playing sound
1195         //
1196 /*++++  playing = SD_SoundPlaying ();
1197         if(playing)
1198         {
1199                 switch (SoundMode)
1200                 {
1201                 case sdm_PC:
1202                         playing += STARTPCSOUNDS;
1203                         break;
1204                 case sdm_AdLib:
1205                         playing += STARTADLIBSOUNDS;
1206                         break;
1207                 }
1208                 MM_SetLock(&(memptr)audiosegs[playing],true);
1209         }
1210
1211
1212         SD_StopSound();*/
1213 //      oldborder = bordercolor;
1214 //      VW_ColorBorder (15);
1215
1216         if(beforesort)
1217                 beforesort();
1218
1219         scan = mm->mmhead;
1220
1221         last = NULL;            // shut up compiler warning
1222
1223         while(scan)
1224         {
1225                 if(scan->attributes & LOCKBIT)
1226                 {
1227                 //
1228                 // block is locked, so try to pile later blocks right after it
1229                 //
1230                         start = scan->start + scan->length;
1231                 }
1232                 else
1233                 {
1234                         if(scan->attributes & PURGEBITS)
1235                         {
1236                         //
1237                         // throw out the purgable block
1238                         //
1239                                 next = scan->next;
1240                                 FREEBLOCK(scan);
1241                                 //MM_FreeBlock(scan, mm);
1242                                 last->next = next;
1243                                 scan = next;
1244                                 continue;
1245                         }
1246                         else
1247                         {
1248                         //
1249                         // push the non purgable block on top of the last moved block
1250                         //
1251                                 if(scan->start != start)
1252                                 {
1253                                         length = scan->length;
1254                                         source = scan->start;
1255                                         dest = start;
1256                                         while(length > 0xf00)
1257                                         {
1258                                                 movedata(source,0,dest,0,0xf00*16);
1259                                                 length -= 0xf00;
1260                                                 source += 0xf00;
1261                                                 dest += 0xf00;
1262                                         }
1263                                         movedata(source,0,dest,0,length*16);
1264
1265                                         scan->start = start;
1266                                         *(unsigned *)scan->useptr = start;
1267                                 }
1268                                 start = scan->start + scan->length;
1269                         }
1270                 }
1271
1272                 last = scan;
1273                 scan = scan->next;              // go to next block
1274         }
1275
1276         mm->mmrover = mm->mmhead;
1277
1278         if(aftersort)
1279                 aftersort();
1280
1281 //      VW_ColorBorder (oldborder);
1282
1283 /*++++  if(playing)
1284                 MM_SetLock(&(memptr)audiosegs[playing],false);*/
1285 }
1286
1287 //==========================================================================
1288
1289 /*
1290 =====================
1291 =
1292 = MM_ShowMemory
1293 =
1294 =====================
1295 */
1296
1297 void MM_ShowMemory(global_game_variables_t *gvar,/*page_t *page, */mminfo_t *mm)
1298 {
1299         //huge mmblocktype huge *scan;
1300         mmblocktype far *scan;
1301         word temp;
1302         sdword  end,owner;
1303         //word chx,chy;
1304         word w;
1305         //dword wwww;
1306         byte    scratch[160],scratch0[4096],scratch1[160],str[16];
1307         //byte d = '#';
1308 //****  VW_SetDefaultColors();
1309 //****  VW_SetLineWidth(40);
1310 //++++mh        temp = bufferofs;
1311 //++++mh        bufferofs = 0;
1312 //****  VW_SetScreen (0,0);
1313         scan = mm->mmhead;
1314         end = -1;
1315
1316         CA_OpenDebug (gvar);
1317         w=0;
1318         while(scan)
1319         {
1320                 strcpy(scratch, AARESET);
1321                 if(scan->attributes & PURGEBITS)
1322                         strcpy(scratch0, AAMAGENTA);            // dark purple = purgable
1323                 else
1324                         strcpy(scratch0, AABLUE);               // medium blue = non purgable
1325                 if(scan->attributes & LOCKBIT)
1326                         strcpy(scratch0, AARED);                // red = locked
1327                 if(scan->start<=end)
1328                 {
1329                         printf("\nend==%d\n\n", end);
1330                         strcat(scratch, "MM_ShowMemory: Memory block order currupted!\n");
1331                         strcat(scratch, "End's Size: ");
1332                         ultoa (end,str,10);
1333                         strcat (scratch,str);
1334                         strcat(scratch, "\nscan->start's Size: ");
1335                         ultoa (scan->start,str,10);
1336                         strcat (scratch,str);
1337                         write(gvar->handle.debughandle,scratch,strlen(scratch));
1338                         //modexprint(&page, chx, chy, 1, 0, 24, "\nMM_ShowMemory: Memory block order currupted!\n");
1339                         break;
1340                 }
1341                 end = scan->start+(scan->length)-1;
1342 //++++          chy = scan->start/320;
1343 //++++          chx = scan->start%320;
1344                                 //modexhlin(page, scan->start, (unsigned)end, chy, color);
1345                                 //for(chx=scan->start;chx+4>=(word)end;chx+=4)
1346                                 //{
1347 //++++                                  modexClearRegion(page, chx, chy, 4, 4, color);
1348                                 //}
1349 //++++          VW_Hlin(scan->start,(unsigned)end,0,color);
1350                 for(w=(scan->start)/80;w<=end/80;w++)
1351                 {
1352                         //printf("+     %u      %lu\n", w, scan->length);
1353                         strcat(scratch0, "+");
1354                 }
1355                 strcat(scratch0, AARESET); strcat(scratch0, AAGREY); strcat(scratch0,"_");
1356 //++++          VW_Plot(scan->start,0,15);
1357 //++++                          modexClearRegion(page, chx, chy, 4, 4, 15);
1358 //++++                  VW_Hlin(end+1,scan->next->start,0,0);   // black = free
1359
1360                 //wwww=(dword)(scan->next->start)-(dword)scan->start;
1361                 //wwww=(dword)scan->start+(dword)(scan->next->start);
1362                 if (scan->next && scan->next->start >= end+1)
1363                 {
1364                         strcat(scratch0, AARESET);
1365                         strcat(scratch0, "\n");
1366                         strcat(scratch0,AAGREEN);
1367                         for(w=(end+1)/80;w<=((scan->next->start-scan->start)/80);w++)
1368                         //for(w=(wwww)/80;w<=((end+1)/80);w++)
1369                         //for(w=(end+1)/80;w<=((wwww)/80);w++)
1370                         {
1371                                 //printf("0     %x      %u      %lu\n", scan->next->start, w, scan->length);
1372                                 strcat(scratch0,"0");
1373                         }
1374                         //printf("==================\n");
1375                         //printf("w=%u  wwww=%lu        start=%04x      next=%04x       end=%lu\n", w/80, wwww/80, scan->start, (scan->next->start), end+1);
1376                         //printf("==================\n");
1377                         strcat(scratch0, "\n");
1378                         //getch();
1379                 }/*else {//if(scan->next->start <= scan->start){
1380                         scan->next->start=scan->start+0x1000;
1381                         wwww=(dword)(scan->next->start)-(dword)scan->start;
1382                         strcat(scratch0, AARESET);
1383                         strcat(scratch0, "\n");
1384                         strcat(scratch0,AAGREEN);
1385                         for(w=(end+1);w<=(0x1000/80);w++)
1386                         {
1387                                 //printf("0     %x      %x      %u\n", scan->start, w);
1388                                 strcat(scratch0,"0");
1389                         }
1390                         printf("================\n");
1391                         printf("w=%x    start=%x        next=%x end=%u  %lu\n", w, scan->start, (scan->next->start), end+1, wwww);
1392                         printf("================\n");
1393                         getch();
1394                 }*/
1395                 strcat(scratch0, AARESET);
1396                 //strcat(scratch0,"\n");
1397                         //for(chx=scan->next->start;chx+4>=(word)end+1;chx+=4)
1398                         //{
1399 //                              chx+=scan->next->start;
1400 //                              modexClearRegion(page, chx, chy, 4, 4, 2);
1401                         //}
1402                                         //modexhlin(page, end+1,scan->next->start, chy, 0);
1403 /*              y = scan->start/320;
1404                 x = scan->start%320;
1405                 VW_Hlin(x,x+end,y,color);
1406                 VW_Plot(x,y,15);*/
1407 //++++                  VW_Hlin(x+end+1,x+(scan->next->start-scan->start),y,0); // black = free
1408                 strcat(scratch,"Seg:");
1409                 ultoa (scan->start,str,16);
1410                 strcat (scratch,str);
1411                 strcat (scratch,"\tSize:");
1412                 ultoa ((unsigned)scan->length,str,10);
1413                 strcat (scratch,str);
1414                 strcat (scratch,"\tOwner:0x");
1415                 owner = (unsigned)scan->useptr;
1416                 ultoa (owner,str,16);
1417                 strcat (scratch,str);
1418                 strcat (scratch,"\n");
1419                 write(gvar->handle.debughandle,scratch,strlen(scratch));
1420                 write(gvar->handle.debughandle,scratch0,strlen(scratch0));
1421 //modexprint(page, chx, chy, 1, 0, 24, &scratch);
1422 //++++chy+=4;
1423 //fprintf(stdout, "%s", scratch);
1424
1425                 scan = scan->next;
1426         }
1427         /*strcpy(scratch1, AARESET);
1428         strcat(scratch1, "========================================\n");
1429         strcat(scratch1, "near=  ");
1430         ultoa (*(mm->nearheap),str,10);
1431         strcat (scratch1,str);
1432         strcat(scratch1, "      far= ");
1433         ultoa (*(mm->farheap),str,10);
1434         strcat (scratch1,str);
1435         strcat(scratch1, "\n");
1436         //strcat(scratch1, "&near=      %Fp ", &(mm->nearheap));
1437         //strcat(scratch1, "&far=       %Fp", &(mm->farheap));
1438         //strcat(scratch1, "\n");
1439         strcat(scratch1, "========================================\n");
1440         write(gvar->handle.debughandle,scratch1,strlen(scratch1));*/
1441
1442
1443         CA_CloseDebug (gvar);
1444
1445 //++++mh        IN_Ack();
1446 //****  VW_SetLineWidth(64);
1447 //++++mh        bufferofs = temp;
1448 }
1449
1450 //==========================================================================
1451
1452 /*
1453 =====================
1454 =
1455 = MM_DumpData
1456 =
1457 =====================
1458 */
1459
1460 void MM_DumpData(mminfo_t *mm)
1461 {
1462         //huge mmblocktype huge *scan,huge *best;
1463         mmblocktype far *scan,far *best;
1464         long    lowest,oldlowest;
1465         word    owner;
1466         byte    lock,purge;
1467         FILE    *dumpfile;
1468
1469         free(mm->nearheap);
1470 #ifdef __BORLANDC__
1471                 dumpfile = fopen ("mmdump.16b","w");
1472 #endif
1473 #ifdef __WATCOMC__
1474                 dumpfile = fopen ("mmdump.16w","w");
1475 #endif
1476         if (!dumpfile){
1477                 printf("MM_DumpData: Couldn't open MMDUMP.16!\n");
1478                 return;
1479         }
1480
1481         lowest = -1;
1482         do
1483         {
1484                 oldlowest = lowest;
1485                 lowest = 0xffff;
1486
1487                 scan = mm->mmhead;
1488                 while (scan)
1489                 {
1490                         owner = (unsigned)scan->useptr;
1491
1492                         if (owner && owner<lowest && owner > oldlowest)
1493                         {
1494                                 best = scan;
1495                                 lowest = owner;
1496                         }
1497
1498                         scan = scan->next;
1499                 }
1500
1501                 if (lowest != 0xffff)
1502                 {
1503                         if (best->attributes & PURGEBITS)
1504                                 purge = 'P';
1505                         else
1506                                 purge = '-';
1507                         if (best->attributes & LOCKBIT)
1508                                 lock = 'L';
1509                         else
1510                                 lock = '-';
1511                         fprintf (dumpfile,"0x%p (%c%c) = %u\n"
1512                         ,(unsigned)lowest,lock,purge,best->length);
1513                 }
1514
1515         } while (lowest != 0xffff);
1516
1517         fclose(dumpfile);
1518         printf("MMDUMP.16 created.\n");
1519 }
1520
1521 //==========================================================================
1522
1523
1524 /*
1525 ======================
1526 =
1527 = MM_UnusedMemory
1528 =
1529 = Returns the total free space without purging
1530 =
1531 ======================
1532 */
1533
1534 dword MM_UnusedMemory(mminfo_t *mm)
1535 {
1536         dword free;
1537         //huge mmblocktype huge *scan;
1538         mmblocktype far *scan;
1539
1540         free = 0;
1541         scan = mm->mmhead;
1542
1543         while(scan->next)
1544         {
1545                 free += scan->next->start - (scan->start + scan->length);
1546                 scan = scan->next;
1547         }
1548
1549         return free*16lu;
1550 //      return free;
1551 }
1552
1553 //==========================================================================
1554
1555
1556 /*
1557 ======================
1558 =
1559 = MM_TotalFree
1560 =
1561 = Returns the total free space with purging
1562 =
1563 ======================
1564 */
1565
1566 dword MM_TotalFree(mminfo_t *mm)
1567 {
1568         dword free;
1569         //huge mmblocktype huge *scan;
1570         mmblocktype far *scan;
1571
1572         free = 0;
1573         scan = mm->mmhead;
1574
1575         while(scan->next)
1576         {
1577                 if((scan->attributes&PURGEBITS) && !(scan->attributes&LOCKBIT))
1578                         free += scan->length;
1579                 free += scan->next->start - (scan->start + scan->length);
1580                 scan = scan->next;
1581         }
1582
1583         return free*16lu;
1584 //      return free;
1585 }
1586
1587 //==========================================================================
1588
1589 /*
1590 =====================
1591 =
1592 = MM_Report
1593 =
1594 =====================
1595 */
1596
1597 void MM_Report(global_game_variables_t *gvar)
1598 {
1599         printf("========================================\n");
1600         printf("                MM_Report\n");
1601         printf("========================================\n");
1602         if(MML_CheckForEMS())
1603         {
1604                 printf("        LIMEMS\n");
1605                 printf("                EMM v%x.%x available\n", gvar->mm.EMSVer>>4,gvar->mm.EMSVer&0x0F);
1606                 printf("                totalEMSpages:  %u      ", gvar->mm.totalEMSpages); printf("freeEMSpages:       %u\n", gvar->mm.freeEMSpages);
1607                 printf("                EMSpageframe:   %x\n", gvar->mm.EMSpageframe);
1608         }
1609         if(MML_CheckForXMS(&(gvar->mm)))
1610         {
1611                 printf("        XMS\n");
1612                 printf("                XMSaddr:        %X\n", *XMSaddr);
1613         }
1614         printf("near:   %lu     ", gvar->mmi.nearheap); printf("far:    %lu\n", gvar->mmi.farheap); if(MML_CheckForEMS())
1615         printf("EMSmem: %lu     ", gvar->mmi.EMSmem); if(MML_CheckForXMS(&(gvar->mm))) printf("XMSmem:  %lu", gvar->mmi.XMSmem); printf("\n");
1616         //printf("mainmem:      %lu\n", gvar->mmi.mainmem);
1617         printf("Total convmem:  %lu     ", gvar->mmi.mainmem); printf("TotalFree:       %lu     ", MM_TotalFree(&(gvar->mm))); printf("TotalUsed:       %lu\n", gvar->mmi.mainmem+gvar->mmi.EMSmem+gvar->mmi.XMSmem+gvar->mmi.XMSmem);
1618         printf("                        UnusedMemory:   %lu\n", MM_UnusedMemory(&(gvar->mm)));
1619         //printf("========================================\n");
1620 }
1621
1622 //==========================================================================
1623
1624 /*
1625 =====================
1626 =
1627 = MM_EMSerr
1628 =
1629 =====================
1630 */
1631
1632 void MM_EMSerr(byte *stri, byte err)
1633 {
1634         //Returns a text string describing the error code in EMS.Error.
1635         switch(err)
1636         {
1637                 case 0x0:
1638                         strcat(stri, "successful");
1639                 break;
1640                 case 0x80:
1641                         strcat(stri, "internal error");
1642                 break;
1643                 case 0x81:
1644                         strcat(stri, "hardware malfunction");
1645                 break;
1646                 case 0x82:
1647                         strcat(stri, "busy .. retry later");
1648                 break;
1649                 case 0x83:
1650                         strcat(stri, "invalid handle");
1651                 break;
1652                 case 0x84:
1653                         strcat(stri, "undefined function requested by application");
1654                 break;
1655                 case 0x85:
1656                         strcat(stri, "no more handles available");
1657                 break;
1658                 case 0x86:
1659                         strcat(stri, "error in save or restore of mapping context");
1660                 break;
1661                 case 0x87:
1662                         strcat(stri, "insufficient memory pages in system");
1663                 break;
1664                 case 0x88:
1665                         strcat(stri, "insufficient memory pages available");
1666                 break;
1667                 case 0x89:
1668                         strcat(stri, "zero pages requested");
1669                 break;
1670                 case 0x8A:
1671                         strcat(stri, "invalid logical page number encountered");
1672                 break;
1673                 case 0x8B:
1674                         strcat(stri, "invalid physical page number encountered");
1675                 break;
1676                 case 0x8C:
1677                         strcat(stri, "page-mapping hardware state save area is full");
1678                 break;
1679                 case 0x8D:
1680                         strcat(stri, "save of mapping context failed");
1681                 break;
1682                 case 0x8E:
1683                         strcat(stri, "restore of mapping context failed");
1684                 break;
1685                 case 0x8F:
1686                         strcat(stri, "undefined subfunction");
1687                 break;
1688                 case 0x90:
1689                         strcat(stri, "undefined attribute type");
1690                 break;
1691                 case 0x91:
1692                         strcat(stri, "feature not supported");
1693                 break;
1694                 case 0x92:
1695                         strcat(stri, "successful, but a portion of the source region has been overwritten");
1696                 break;
1697                 case 0x93:
1698                         strcat(stri, "length of source or destination region exceeds length of region allocated to either source or destination handle");
1699                 break;
1700                 case 0x94:
1701                         strcat(stri, "conventional and expanded memory regions overlap");
1702                 break;
1703                 case 0x95:
1704                         strcat(stri, "offset within logical page exceeds size of logical page");
1705                 break;
1706                 case 0x96:
1707                         strcat(stri, "region length exceeds 1 MB");
1708                 break;
1709                 case 0x97:
1710                         strcat(stri, "source and destination EMS regions have same handle and overlap");
1711                 break;
1712                 case 0x98:
1713                         strcat(stri, "memory source or destination type undefined");
1714                 break;
1715                 case 0x9A:
1716                         strcat(stri, "specified alternate map register or DMA register set not supported");
1717                 break;
1718                 case 0x9B:
1719                         strcat(stri, "all alternate map register or DMA register sets currently allocated");
1720                 break;
1721                 case 0x9C:
1722                         strcat(stri, "alternate map register or DMA register sets not supported");
1723                 break;
1724                 case 0x9D:
1725                         strcat(stri, "undefined or unallocated alternate map register or DMA register set");
1726                 break;
1727                 case 0x9E:
1728                         strcat(stri, "dedicated DMA channels not supported");
1729                 break;
1730                 case 0x9F:
1731                         strcat(stri, "specified dedicated DMA channel not supported");
1732                 break;
1733                 case 0xA0:
1734                         strcat(stri, "no such handle name");
1735                 break;
1736                 case 0xA1:
1737                         strcat(stri, "a handle found had no name, or duplicate handle name");
1738                 break;
1739                 case 0xA2:
1740                         strcat(stri, "attempted to wrap around 1M conventional address space");
1741                 break;
1742                 case 0xA3:
1743                         strcat(stri, "source array corrupted");
1744                 break;
1745                 case 0xA4:
1746                         strcat(stri, "operating system denied access");
1747                 break;
1748                 default:
1749                         strcat(stri, "undefined error");
1750         }
1751 }
1752
1753 //==========================================================================
1754
1755 /*
1756 =====================
1757 =
1758 = MM_BombOnError
1759 =
1760 =====================
1761 */
1762
1763 void MM_BombOnError(boolean bomb, mminfo_t *mm)
1764 {
1765         mm->bombonerror = bomb;
1766 }
1767
1768 /*void MM_GetNewBlock(mminfo_t *mm)
1769 {
1770         if(!mm->mmfree)
1771                 MML_ClearBlock(mm);
1772         mm->mmnew=mm->mmfree;
1773         mm->mmfree=mm->mmfree->next;
1774         if(!(mm->mmnew=mm->mmfree))
1775         {
1776                 printf("MM_GETNEWBLOCK: No free blocks!\n");
1777                 return;
1778         }
1779         mm->mmfree=mm->mmfree->next;
1780 }
1781
1782 void MM_FreeBlock(mmblocktype *x, mminfo_t *mm)
1783 {
1784         x->useptr=NULL;
1785         x->next=mm->mmfree;
1786         mm->mmfree=x;
1787 }*/
1788
1789 /*void MM_seguin(void)
1790 {
1791         __asm {
1792                 push    ds
1793                 mov     ax,ds
1794                 inc             ax
1795                 mov     ds,ax
1796         }
1797 }
1798
1799 void MM_segude(void)
1800 {
1801         __asm {
1802                 pop ds
1803         }
1804 }*/
1805
1806 /*
1807 pull data from far and put it into ds var
1808 mov ax,es:si
1809 mov x,ax
1810 */
1811 /*
1812 ss stack segment
1813 sp top of stack
1814 bp bottem of stack
1815 */