]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_mm.c
Changes to be committed:
[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 #pragma hdrstop
51
52 #pragma warn -pro
53 #pragma warn -use
54
55 /*
56 =============================================================================
57
58                                                  GLOBAL VARIABLES
59
60 =============================================================================
61 */
62
63 void            (* beforesort) (void);
64 void            (* aftersort) (void);
65 void            (* XMSaddr) (void);             // far pointer to XMS driver
66
67 /*
68 =============================================================================
69
70                                                  LOCAL VARIABLES
71
72 =============================================================================
73 */
74
75 static  char *ParmStringsexmm[] = {"noems","noxms",""};
76
77 /*
78 ======================
79 =
80 = MML_CheckForEMS
81 =
82 = Routine from p36 of Extending DOS
83 =
84 =======================
85 */
86
87 boolean MML_CheckForEMS(void)
88 {
89         boolean emmcfems;
90         static char     emmname[] = "EMMXXXX0"; //fix by andrius4669
91 //              mov     dx,OFFSET emmname
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 getmemory:
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                 mov     ah,XMS_ALLOCUMB
485                 mov     dx,0xffff                                       // try for largest block possible
486                 //mov     ax,dx                                         // Set available Kbytes.
487                 call    [DWORD PTR XMSaddr]
488                 or      ax,ax
489                 jnz     gotone
490
491                 cmp     bl,0xb0                                         // error: smaller UMB is available
492                 jne     done;
493
494                 mov     ah,XMS_ALLOCUMB
495                 call    [DWORD PTR XMSaddr]             // DX holds largest available UMB
496                 or      ax,ax
497                 jz      done                                            // another error...
498 #ifdef __BORLANDC__
499         }
500 #endif
501                 gotone:
502 #ifdef __BORLANDC__
503         __asm {
504 #endif
505                 mov     [base],bx
506                 mov     [size],dx
507 #ifdef __BORLANDC__
508         }
509 #endif
510                 done:
511 #ifdef __WATCOMC__
512         }
513 #endif
514 //      printf("base=%u ", base); printf("size=%u\n", size);
515         MML_UseSpace(base,size, mm);
516         mmi->XMSmem += size*16;
517         mm->UMBbase[mm->numUMBs] = base;
518         mm->numUMBs++;
519         if(mm->numUMBs < MAXUMBS)
520                 goto getmemory;
521 }
522
523
524 /*
525 ======================
526 =
527 = MML_ShutdownXMS
528 =
529 ======================
530 */
531
532 void MML_ShutdownXMS(mminfo_t *mm)
533 {
534         int     i;
535         unsigned        base;
536
537         for (i=0;i<mm->numUMBs;i++)
538         {
539                 base = mm->UMBbase[i];
540                 __asm {
541                         mov     ah,XMS_FREEUMB
542                         mov     dx,[base]
543                         call    [DWORD PTR XMSaddr]
544                 }
545         }
546 }
547
548 //==========================================================================
549
550 /*
551 ======================
552 =
553 = MML_UseSpace
554 =
555 = Marks a range of paragraphs as usable by the memory manager
556 = This is used to mark space for the near heap, far heap, ems page frame,
557 = and upper memory blocks
558 =
559 ======================
560 */
561
562 void MML_UseSpace(word segstart, dword seglength, mminfo_t *mm)
563 {
564         mmblocktype huge *scan,huge *last;
565         word            segm=1;
566         word    oldend;
567         dword           segmlen=seglength;
568         dword           extra;
569
570         scan = last = mm->mmhead;
571         mm->mmrover = mm->mmhead;               // reset rover to start of memory
572
573 //
574 // search for the block that contains the range of segments
575 //
576         while(scan->start+scan->length < segstart)
577         {
578                 last = scan;
579                 scan = scan->next;
580         }
581
582         //find out how many blocks it spans!
583         //
584         for(;seglength>0x10000;seglength-=0xffff)
585         {
586                 printf("                seglen=%lu\n", seglength);
587                 segm++;
588         }
589
590 //
591 // take the given range out of the block
592 //
593         oldend = scan->start + scan->length;
594         extra = oldend - (segstart+(word)seglength);
595         //++++emsver stuff!
596         if(segm>1 || extra>0x10000lu)
597         //if(extra>0xfffflu)
598         {
599                 scan->blob=segm;
600                 /*__asm
601                 {
602                         push    ds
603                         mov     ax,ds
604                         inc             ax
605                         mov     ds,ax
606                 }*/
607
608
609                 //MML_UseSpace(segstart, seglength, mm);
610
611                 /*__asm
612                 {
613                         pop ds
614                 }*/
615                 printf("MML_UseSpace: Segment spans two blocks!\n");
616         //}
617         printf("========================================\n");
618         printf("segm=%u         ", segm);
619         printf("ex=%lu  ", extra);
620         printf("old=%u  ", oldend);
621         printf("start+seglen=%lu\n", segstart+seglength);
622         printf("segsta=%x       ", segstart);
623         printf("len=%lu ", scan->length);
624         printf("seglen=%lu      ", seglength);
625         printf("segmlen=%lu\n", segmlen);
626         printf("========================================\n");
627         }
628 //++++todo: linked list of segment!
629         if(segstart == scan->start)
630         {
631                 last->next = scan->next;                        // unlink block
632                 FREEBLOCK(scan);
633                 scan = last;
634         }
635         else
636                 scan->length = segstart-scan->start;    // shorten block
637
638         if(extra > 0)
639         {
640                 GETNEWBLOCK;
641                 mm->mmnew->next = scan->next;
642                 scan->next = mm->mmnew;
643                 mm->mmnew->start = segstart+seglength;
644                 mm->mmnew->length = extra;
645                 mm->mmnew->attributes = LOCKBIT;
646         }//else if(segm>0) goto segu;
647
648 }
649
650 //==========================================================================
651
652 /*
653 ====================
654 =
655 = MML_ClearBlock
656 =
657 = We are out of blocks, so free a purgable block
658 =
659 ====================
660 */
661
662 void MML_ClearBlock(mminfo_t *mm)
663 {
664         mmblocktype huge *scan,huge *last;
665
666         scan = mm->mmhead->next;
667
668         while(scan)
669         {
670                 if(!(scan->attributes&LOCKBIT) && (scan->attributes&PURGEBITS))
671                 {
672                         MM_FreePtr(scan->useptr, mm);
673                         return;
674                 }
675                 scan = scan->next;
676         }
677
678         printf("MM_ClearBlock: No purgable blocks!\n");
679 }
680
681
682 //==========================================================================
683
684 /*
685 ===================
686 =
687 = MM_Startup
688 =
689 = Grabs all space from turbo with malloc/farmalloc
690 = Allocates bufferseg misc buffer
691 =
692 ===================
693 */
694
695 void MM_Startup(mminfo_t *mm, mminfotype *mmi)
696 {
697         int i;
698         dword length,seglength;
699         //dword length; word seglength;
700         void huge       *start;
701         word    segstart;//,endfree;
702
703 //      if(mm->mmstarted)
704 //              MM_Shutdown(mm);
705
706         mm->mmstarted = true;
707         mm->bombonerror = true;
708         mm->endid=0;
709
710 //
711 // set up the linked list (everything in the free list;
712 //
713         mm->mmhead = NULL;
714         mm->mmfree = &(mm->mmblocks[0]);
715         for(i=0;i<MAXBLOCKS-1;i++)
716         {
717                 mm->mmblocks[i].next = &(mm->mmblocks[i+1]);
718         }
719         mm->mmblocks[i].next = NULL;
720
721 //
722 // locked block of all memory until we punch out free space
723 //
724         GETNEWBLOCK;
725         mm->mmhead = mm->mmnew;                         // this will allways be the first node
726         mm->mmnew->start = 0;
727         mm->mmnew->length = 0xffff;
728         mm->mmnew->attributes = LOCKBIT;
729         mm->mmnew->next = NULL;
730         mm->mmrover = mm->mmhead;
731
732 //
733 // get all available near conventional memory segments
734 //
735 #ifdef __WATCOMC__
736         _nheapgrow();
737         length=(dword)_memavl();//(dword)GetFreeSize();
738         start = (void huge *)(mm->nearheap = _nmalloc(length));
739 #endif
740 #ifdef __BORLANDC__
741         length=coreleft();
742         start = (void huge *)(mm->nearheap = malloc(length));
743 #endif
744         length -= 16-(FP_OFF(start)&15);
745         length -= SAVENEARHEAP;
746         seglength = length / 16;                        // now in paragraphs
747         segstart = FP_SEG(start)+(FP_OFF(start)+15)/16;
748         MML_UseSpace(segstart,seglength, mm);
749         mmi->nearheap = length;
750         //printf("start=%Fp     segstart=%x     seglen=%lu      len=%lu\n", start, segstart, seglength, length);
751
752 //
753 // get all available far conventional memory segments
754 //
755         //printf("_FARCORELEFT                          %lu\n", _FCORELEFT);
756 #ifdef __WATCOMC__
757         _fheapgrow();
758 #endif
759 #ifdef __BORLANDC__
760         printf("farcoreleft()                           %lu\n", farcoreleft());
761         printf("(farcoreleft()+32)-_FCORELEFT   %d\n", (sword)((farcoreleft()+32)-_FCORELEFT));
762 #endif
763         length=_FCORELEFT;//_fcoreleft();//(dword)GetFarFreeSize();//0xffffUL*4UL;
764         start = mm->farheap = _fmalloc(length);
765         //start = mm->farheap = halloc(length, 1);
766         length -= 16-(FP_OFF(start)&15);
767         length -= SAVEFARHEAP;
768         seglength = length / 16;                        // now in paragraphs
769         segstart = FP_SEG(start)+(FP_OFF(start)+15)/16;
770         MML_UseSpace(segstart,seglength, mm);
771         mmi->farheap = length;
772         //printf("start=%Fp     segstart=%x     seglen=%lu      len=%lu\n", start, segstart, seglength, length);
773
774         mmi->mainmem = mmi->nearheap + mmi->farheap;
775
776 //
777 // detect EMS and allocate up to 64K at page frame
778 //
779         mmi->EMSmem = 0;
780         for(i = 1;i <
781 #ifdef __WATCOMC__
782         __argc
783 #endif
784 #ifdef __BORLANDC__
785         _argc
786 #endif
787         ;i++)
788         {
789                 if(US_CheckParm(
790 #ifdef __WATCOMC__
791         __argv[i]
792 #endif
793 #ifdef __BORLANDC__
794         _argv[i]
795 #endif
796                         ,ParmStringsexmm) == 0)
797                         goto emsskip;                           // param NOEMS
798         }
799         if(MML_CheckForEMS())
800         {
801                 MML_SetupEMS(mm);                                       // allocate space
802                 //TODO: EMS4! AND EMS 3.2 MASSIVE DATA HANDLMENT!
803                 MML_UseSpace(mm->EMSpageframe,(MAPPAGES)*0x4000lu, mm);
804                 //if(mm->EMSVer<0x40)
805                         MM_MapEMS(mm, mmi);                                     // map in used pages
806                 //else
807                         //MM_MapXEMS(mm, mmi);                                  // map in used pages
808         }
809
810 //
811 // detect XMS and get upper memory blocks
812 //
813 emsskip:
814         mmi->XMSmem = 0;
815 goto xmsskip;//0000
816         for(i = 1;i <
817 #ifdef __WATCOMC__
818         __argc
819 #endif
820 #ifdef __BORLANDC__
821         _argc
822 #endif
823         ;i++)
824         {
825                 if(US_CheckParm(
826 #ifdef __WATCOMC__
827         __argv[i]
828 #endif
829 #ifdef __BORLANDC__
830         _argv[i]
831 #endif
832                         ,ParmStringsexmm) == 0)
833                         goto xmsskip;                           // param NOXMS
834         }
835         if(MML_CheckForXMS(mm))
836         {
837                 MML_SetupXMS(mm, mmi);                                  // allocate as many UMBs as possible
838         }
839
840 //
841 // allocate the misc buffer
842 //
843 xmsskip:
844         mm->mmrover = mm->mmhead;               // start looking for space after low block
845
846         MM_GetPtr(&(mm->bufferseg),BUFFERSIZE, mm, mmi);
847 }
848
849 //==========================================================================
850
851 /*
852 ====================
853 =
854 = MM_Shutdown
855 =
856 = Frees all conventional, EMS, and XMS allocated
857 =
858 ====================
859 */
860
861 void MM_Shutdown(mminfo_t *mm)
862 {
863         if(!(mm->mmstarted))
864                 return;
865
866         _ffree(mm->farheap);//  printf("                far freed\n");
867 #ifdef __WATCOMC__
868         _nfree(mm->nearheap);// printf("                near freed\n");
869 #endif
870 #ifdef __BORLANDC__
871         free(mm->nearheap);//   printf("                near freed\n");
872 #endif
873         if(MML_CheckForEMS()){ MML_ShutdownEMS(mm); }//printf("         EMS freed\n"); }
874         if(MML_CheckForXMS(mm)){ MML_ShutdownXMS(mm); }//printf("               XMS freed\n"); }
875 }
876
877 //==========================================================================
878
879 /*
880 ====================
881 =
882 = MM_GetPtr
883 =
884 = Allocates an unlocked, unpurgable block
885 =
886 ====================
887 */
888
889 void MM_GetPtr(memptr *baseptr,dword size, mminfo_t *mm, mminfotype *mmi)
890 {
891         mmblocktype huge *scan,huge *lastscan,huge *endscan,huge *purge,huge *next;
892         int                     search;
893         dword   needed;
894         word    startseg;
895
896         needed = (size+15)/16;          // convert size from bytes to paragraphs
897 printf(".");    //0000
898         GETNEWBLOCK;                            // fill in start and next after a spot is found
899         mm->mmnew->length = needed;
900         mm->mmnew->useptr = baseptr;
901         mm->mmnew->attributes = BASEATTRIBUTES;
902 printf(".");    //0000
903         for(search = 0; search<mm->endid; search++)
904         {
905 printf("        [case]");       //0000
906         //
907         // first search:        try to allocate right after the rover, then on up
908         // second search:       search from the head pointer up to the rover
909         // third search:        compress memory, then scan from start
910                 if(search == 1 && mm->mmrover == mm->mmhead)
911                         search++;
912
913                 switch(search)
914                 {
915                 case 0:
916 printf("0       ");     //0000
917                         lastscan = mm->mmrover;
918                         scan = mm->mmrover->next;
919                         endscan = NULL;
920                         break;
921                 case 1:
922 printf("1       ");     //0000
923                         lastscan = mm->mmhead;
924                         scan = mm->mmhead->next;
925                         endscan = mm->mmrover;
926                         break;
927                 case 2:
928 printf("2       ");     //0000
929                         MM_SortMem(mm);
930                         lastscan = mm->mmhead;
931                         scan = mm->mmhead->next;
932                         endscan = NULL;
933                         break;
934                 }
935
936                 startseg = lastscan->start + (word)lastscan->length;
937
938                 while(scan != endscan)
939                 {
940 //printf(",");  //0000
941                         if(scan->start - startseg >= needed)
942                         {
943 printf(".");    //0000
944                         //
945                         // got enough space between the end of lastscan and
946                         // the start of scan, so throw out anything in the middle
947                         // and allocate the new block
948                         //
949                                 purge = lastscan->next;
950                                 lastscan->next = mm->mmnew;
951                                 mm->mmnew->start = *(word *)baseptr = startseg;
952                                 mm->mmnew->next = scan;
953                                 while(purge != scan)
954                                 {       // free the purgable block
955 printf("                freeing block~\n");     //0000
956                                         next = purge->next;
957                                         FREEBLOCK(purge);
958                                         //MM_FreeBlock(purge, mm);
959                                         purge = next;           // purge another if not at scan
960                                 }
961                                 mm->mmrover = mm->mmnew;
962                                 return; // good allocation!
963                         }
964
965                         //
966                         // if this block is purge level zero or locked, skip past it
967                         //
968                         if((scan->attributes & LOCKBIT)
969                                 || !(scan->attributes & PURGEBITS) )
970                         {
971 printf("        [lock] ");      //0000
972 printf("len=%lu ", scan->length);
973                                 lastscan = scan;
974                                 startseg = lastscan->start + (word)lastscan->length;
975                         }
976
977 printf("\n");
978                         scan=scan->next;                // look at next line
979                 }
980         }
981
982         if (mm->bombonerror)
983         {
984 #ifdef __WATCOMC__
985                 //heapdump();
986 #endif
987                 printf(OUT_OF_MEM_MSG,(size-mmi->nearheap));
988                 printf("for stability reasons the program will shut down! wwww\n");
989                 printf("                endid=%u\n",(mm->endid));
990                 MM_Shutdown(mm);
991                 exit(-1);
992         }
993         else
994                 mm->mmerror = true;
995 }
996
997 //==========================================================================
998
999 /*
1000 ====================
1001 =
1002 = MM_FreePtr
1003 =
1004 = Allocates an unlocked, unpurgable block
1005 =
1006 ====================
1007 */
1008
1009 void MM_FreePtr(memptr *baseptr, mminfo_t *mm)
1010 {
1011         mmblocktype huge *scan,huge *last;
1012
1013         last = mm->mmhead;
1014         scan = last->next;
1015
1016         if(baseptr == mm->mmrover->useptr)      // removed the last allocated block
1017                 mm->mmrover = mm->mmhead;
1018
1019         while(scan->useptr != baseptr && scan)
1020         {
1021                 last = scan;
1022                 scan = scan->next;
1023         }
1024
1025         if(!scan)
1026         {
1027                 printf("MM_FreePtr: Block not found!\n");
1028                 return;
1029         }
1030
1031         last->next = scan->next;
1032
1033         FREEBLOCK(scan);
1034 }
1035 //==========================================================================
1036
1037 /*
1038 =====================
1039 =
1040 = MM_SetPurge
1041 =
1042 = Sets the purge level for a block (locked blocks cannot be made purgable)
1043 =
1044 =====================
1045 */
1046
1047 void MM_SetPurge(memptr *baseptr, int purge, mminfo_t *mm)
1048 {
1049         mmblocktype huge *start;
1050
1051         start = mm->mmrover;
1052
1053         do
1054         {
1055                 if(mm->mmrover->useptr == baseptr)
1056                         break;
1057
1058                 mm->mmrover = mm->mmrover->next;
1059
1060                 if(!mm->mmrover)
1061                         mm->mmrover = mm->mmhead;
1062                 else if(mm->mmrover == start)
1063                 {
1064                         printf("MM_SetPurge: Block not found!");
1065                         return;
1066                 }
1067
1068         } while(1);
1069
1070         mm->mmrover->attributes &= ~PURGEBITS;
1071         mm->mmrover->attributes |= purge;
1072 }
1073
1074 //==========================================================================
1075
1076 /*
1077 =====================
1078 =
1079 = MM_SetLock
1080 =
1081 = Locks / unlocks the block
1082 =
1083 =====================
1084 */
1085
1086 void MM_SetLock(memptr *baseptr, boolean locked, mminfo_t *mm)
1087 {
1088         mmblocktype huge *start;
1089
1090         start = mm->mmrover;
1091
1092         do
1093         {
1094                 if(mm->mmrover->useptr == baseptr)
1095                         break;
1096
1097                 mm->mmrover = mm->mmrover->next;
1098
1099                 if(!mm->mmrover)
1100                         mm->mmrover = mm->mmhead;
1101                 else if(mm->mmrover == start)
1102                 {
1103                         printf("MM_SetLock: Block not found!");
1104                         return;
1105                 }
1106
1107         } while(1);
1108
1109         mm->mmrover->attributes &= ~LOCKBIT;
1110         mm->mmrover->attributes |= locked*LOCKBIT;
1111 }
1112
1113 //==========================================================================
1114
1115 /*
1116 =====================
1117 =
1118 = MM_SortMem
1119 =
1120 = Throws out all purgable stuff and compresses movable blocks
1121 =
1122 =====================
1123 */
1124
1125 void MM_SortMem(mminfo_t *mm)
1126 {
1127         mmblocktype huge *scan,huge *last,huge *next;
1128         unsigned        start,length,source,dest,oldborder;
1129         int                     playing;
1130
1131         //
1132         // lock down a currently playing sound
1133         //
1134 /*++++  playing = SD_SoundPlaying ();
1135         if(playing)
1136         {
1137                 switch (SoundMode)
1138                 {
1139                 case sdm_PC:
1140                         playing += STARTPCSOUNDS;
1141                         break;
1142                 case sdm_AdLib:
1143                         playing += STARTADLIBSOUNDS;
1144                         break;
1145                 }
1146                 MM_SetLock(&(memptr)audiosegs[playing],true);
1147         }
1148
1149
1150         SD_StopSound();*/
1151 //      oldborder = bordercolor;
1152 //      VW_ColorBorder (15);
1153
1154         if(beforesort)
1155                 beforesort();
1156
1157         scan = mm->mmhead;
1158
1159         last = NULL;            // shut up compiler warning
1160
1161         while(scan)
1162         {
1163                 if(scan->attributes & LOCKBIT)
1164                 {
1165                 //
1166                 // block is locked, so try to pile later blocks right after it
1167                 //
1168                         start = scan->start + scan->length;
1169                 }
1170                 else
1171                 {
1172                         if(scan->attributes & PURGEBITS)
1173                         {
1174                         //
1175                         // throw out the purgable block
1176                         //
1177                                 next = scan->next;
1178                                 FREEBLOCK(scan);
1179                                 //MM_FreeBlock(scan, mm);
1180                                 last->next = next;
1181                                 scan = next;
1182                                 continue;
1183                         }
1184                         else
1185                         {
1186                         //
1187                         // push the non purgable block on top of the last moved block
1188                         //
1189                                 if(scan->start != start)
1190                                 {
1191                                         length = scan->length;
1192                                         source = scan->start;
1193                                         dest = start;
1194                                         while(length > 0xf00)
1195                                         {
1196                                                 movedata(source,0,dest,0,0xf00*16);
1197                                                 length -= 0xf00;
1198                                                 source += 0xf00;
1199                                                 dest += 0xf00;
1200                                         }
1201                                         movedata(source,0,dest,0,length*16);
1202
1203                                         scan->start = start;
1204                                         *(unsigned *)scan->useptr = start;
1205                                 }
1206                                 start = scan->start + scan->length;
1207                         }
1208                 }
1209
1210                 last = scan;
1211                 scan = scan->next;              // go to next block
1212         }
1213
1214         mm->mmrover = mm->mmhead;
1215
1216         if(aftersort)
1217                 aftersort();
1218
1219 //      VW_ColorBorder (oldborder);
1220
1221 /*++++  if(playing)
1222                 MM_SetLock(&(memptr)audiosegs[playing],false);*/
1223 }
1224
1225 //==========================================================================
1226
1227 /*
1228 =====================
1229 =
1230 = MM_ShowMemory
1231 =
1232 =====================
1233 */
1234
1235 void MM_ShowMemory(global_game_variables_t *gvar,/*page_t *page, */mminfo_t *mm)
1236 {
1237         mmblocktype huge *scan;
1238         //byte color;
1239         word temp;
1240         sdword  end,owner;
1241         //word chx,chy;
1242         word w;
1243         byte    scratch[160],scratch0[4096],str[16];
1244         //byte d = '#';
1245 //****  VW_SetDefaultColors();
1246 //****  VW_SetLineWidth(40);
1247 //++++mh        temp = bufferofs;
1248 //++++mh        bufferofs = 0;
1249 //****  VW_SetScreen (0,0);
1250         scan = mm->mmhead;
1251         end = -1;
1252
1253         CA_OpenDebug (gvar);
1254         w=0;
1255         while(scan)
1256         {
1257                 strcpy(scratch, AARESET);
1258                 if(scan->attributes & PURGEBITS)
1259                         strcpy(scratch0, AAMAGENTA);            // dark purple = purgable
1260                 else
1261                         strcpy(scratch0, AABLUE);               // medium blue = non purgable
1262                 if(scan->attributes & LOCKBIT)
1263                         strcpy(scratch0, AARED);                // red = locked
1264                 if(scan->start<=end)
1265                 {
1266                         printf("\nend==%d\n\n", end);
1267                         strcat(scratch, "MM_ShowMemory: Memory block order currupted!\n");
1268                         strcat(scratch, "End's Size: ");
1269                         ultoa (end,str,10);
1270                         strcat (scratch,str);
1271                         strcat(scratch, "\nscan->start's Size: ");
1272                         ultoa (scan->start,str,10);
1273                         strcat (scratch,str);
1274                         write(gvar->handle.debughandle,scratch,strlen(scratch));
1275                         //modexprint(&page, chx, chy, 1, 0, 24, "\nMM_ShowMemory: Memory block order currupted!\n");
1276                         break;
1277                 }
1278                 //for(;scan->length>0xfffflu;scan->length-=0xfffflu);
1279                 end = scan->start+(scan->length)-1;
1280 //++++          chy = scan->start/320;
1281 //++++          chx = scan->start%320;
1282                                 //modexhlin(page, scan->start, (unsigned)end, chy, color);
1283                                 //for(chx=scan->start;chx+4>=(word)end;chx+=4)
1284                                 //{
1285 //++++                                  modexClearRegion(page, chx, chy, 4, 4, color);
1286                                 //}
1287 //++++          VW_Hlin(scan->start,(unsigned)end,0,color);
1288                 for(w=(scan->start)/80;w<=end/80;w++)
1289                 {
1290                         //printf("+     %u      %lu\n", w, scan->length);
1291                         //if(w==48) getch();
1292                         strcat(scratch0, "+");
1293                 }
1294                 strcat(scratch0, AARESET); strcat(scratch0, AAGREY); strcat(scratch0,"_");
1295 //++++          VW_Plot(scan->start,0,15);
1296 //++++                          modexClearRegion(page, chx, chy, 4, 4, 15);
1297 //++++                  VW_Hlin(end+1,scan->next->start,0,0);   // black = free
1298                 if((scan->next->start != 0xe000) > end)
1299                 {
1300                         strcat(scratch0, AARESET);
1301                         strcat(scratch0,AAGREEN);
1302                         for(w=0;w<=((scan->length+1)/80);w++)
1303                         {
1304                                 //printf("0     %x      %u      %lu\n", scan->next->start, w, scan->length);
1305                                 strcat(scratch0,"0");
1306                         }
1307                 }else{
1308                         strcat(scratch0, AARESET);
1309                         strcat(scratch0,AAGREEN);
1310                         for(w=0;w<=((scan->length+1)/80);w++)
1311                         {
1312                                 //printf("0     %x      %u      %lu\n", scan->next->start, w, scan->length);
1313                                 strcat(scratch0,"0");
1314                         }
1315                         printf("================\nstart=%x      length==%lu\n           next=%x end=%x\nscan->start+(scan->length)==%x\n================\n", scan->start, scan->length, scan->next->start, end, scan->start+(scan->length));
1316                         printf("w=%u    (scan->length+1)/80)=%lu\n\n", w, (scan->length+1)/80);
1317                         //getch();
1318                 }
1319                 strcat(scratch0, AARESET);
1320                 strcat(scratch0,"\n");
1321                         //for(chx=scan->next->start;chx+4>=(word)end+1;chx+=4)
1322                         //{
1323 //                              chx+=scan->next->start;
1324 //                              modexClearRegion(page, chx, chy, 4, 4, 2);
1325                         //}
1326                                         //modexhlin(page, end+1,scan->next->start, chy, 0);
1327 /*              y = scan->start/320;
1328                 x = scan->start%320;
1329                 VW_Hlin(x,x+end,y,color);
1330                 VW_Plot(x,y,15);*/
1331 //++++                  VW_Hlin(x+end+1,x+(scan->next->start-scan->start),y,0); // black = free
1332                 strcat(scratch,"Seg:");
1333                 ultoa (scan->start,str,16);
1334                 strcat (scratch,str);
1335                 strcat (scratch,"\tSize:");
1336                 ultoa ((word)scan->length,str,10);
1337                 strcat (scratch,str);
1338                 strcat (scratch,"\tOwner:0x");
1339                 owner = (unsigned)scan->useptr;
1340                 ultoa (owner,str,16);
1341                 strcat (scratch,str);
1342                 strcat (scratch,"\n");
1343                 write(gvar->handle.debughandle,scratch,strlen(scratch));
1344                 write(gvar->handle.debughandle,scratch0,strlen(scratch0));
1345 //modexprint(page, chx, chy, 1, 0, 24, &scratch);
1346 //++++chy+=4;
1347 //fprintf(stdout, "%s", scratch);
1348
1349                 scan = scan->next;
1350         }
1351
1352         CA_CloseDebug (gvar);
1353
1354 //++++mh        IN_Ack();
1355 //****  VW_SetLineWidth(64);
1356 //++++mh        bufferofs = temp;
1357 }
1358
1359 //==========================================================================
1360
1361 /*
1362 =====================
1363 =
1364 = MM_DumpData
1365 =
1366 =====================
1367 */
1368
1369 void MM_DumpData(mminfo_t *mm)
1370 {
1371         mmblocktype huge *scan,huge *best;
1372         long    lowest,oldlowest;
1373         word    owner;
1374         byte    lock,purge;
1375         FILE    *dumpfile;
1376
1377         free(mm->nearheap);
1378         dumpfile = fopen ("mmdump.16","w");
1379         if (!dumpfile){
1380                 printf("MM_DumpData: Couldn't open MMDUMP.16!\n");
1381                 return;
1382         }
1383
1384         lowest = -1;
1385         do
1386         {
1387                 oldlowest = lowest;
1388                 lowest = 0xffff;
1389
1390                 scan = mm->mmhead;
1391                 while (scan)
1392                 {
1393                         owner = (word)scan->useptr;
1394
1395                         if (owner && owner<lowest && owner > oldlowest)
1396                         {
1397                                 best = scan;
1398                                 lowest = owner;
1399                         }
1400
1401                         scan = scan->next;
1402                 }
1403
1404                 if (lowest != 0xffff)
1405                 {
1406                         if (best->attributes & PURGEBITS)
1407                                 purge = 'P';
1408                         else
1409                                 purge = '-';
1410                         if (best->attributes & LOCKBIT)
1411                                 lock = 'L';
1412                         else
1413                                 lock = '-';
1414                         fprintf (dumpfile,"0x%p (%c%c) = %u\n"
1415                         ,(word)lowest,lock,purge,best->length);
1416                 }
1417
1418         } while (lowest != 0xffff);
1419
1420         fclose(dumpfile);
1421         printf("MMDUMP.16 created.\n");
1422 }
1423
1424 //==========================================================================
1425
1426
1427 /*
1428 ======================
1429 =
1430 = MM_UnusedMemory
1431 =
1432 = Returns the total free space without purging
1433 =
1434 ======================
1435 */
1436
1437 dword MM_UnusedMemory(mminfo_t *mm)
1438 {
1439         dword free;
1440         mmblocktype huge *scan;
1441
1442         free = 0;
1443         scan = mm->mmhead;
1444
1445         while(scan->next)
1446         {
1447                 free += scan->next->start - (scan->start + scan->length);
1448                 scan = scan->next;
1449         }
1450
1451         return free*16lu;
1452 //      return free;
1453 }
1454
1455 //==========================================================================
1456
1457
1458 /*
1459 ======================
1460 =
1461 = MM_TotalFree
1462 =
1463 = Returns the total free space with purging
1464 =
1465 ======================
1466 */
1467
1468 dword MM_TotalFree(mminfo_t *mm)
1469 {
1470         dword free;
1471         mmblocktype huge *scan;
1472
1473         free = 0;
1474         scan = mm->mmhead;
1475
1476         while(scan->next)
1477         {
1478                 if((scan->attributes&PURGEBITS) && !(scan->attributes&LOCKBIT))
1479                         free += scan->length;
1480                 free += scan->next->start - (scan->start + scan->length);
1481                 scan = scan->next;
1482         }
1483
1484         return free*16lu;
1485 //      return free;
1486 }
1487
1488 //==========================================================================
1489
1490 /*
1491 =====================
1492 =
1493 = MM_Report
1494 =
1495 =====================
1496 */
1497
1498 void MM_Report(/*page_t *page, */mminfo_t *mm, mminfotype *mmi)
1499 {
1500         if(MML_CheckForEMS())
1501         {
1502                 printf("EMM v%x.%x available\n", mm->EMSVer>>4,mm->EMSVer&0x0F);
1503                 printf("totalEMSpages=%u\n", mm->totalEMSpages);
1504                 printf("freeEMSpages=%u\n", mm->freeEMSpages);
1505                 printf("EMSpageframe=%x\n", mm->EMSpageframe);
1506         }
1507         if(MML_CheckForXMS(mm)) printf("XMSaddr=%X\n", *XMSaddr);
1508         printf("near=%lu\n", mmi->nearheap);
1509         printf("far=%lu\n", mmi->farheap);
1510         printf("EMSmem=%lu\n", mmi->EMSmem);
1511         printf("XMSmem=%lu\n", mmi->XMSmem);
1512         printf("mainmem=%lu\n", mmi->mainmem);
1513         printf("UnusedMemory=%lu\n", MM_UnusedMemory(mm));
1514         printf("TotalFree=%lu\n", MM_TotalFree(mm));
1515         printf("TotalUsed=%lu\n", mmi->mainmem+mmi->EMSmem+mmi->XMSmem+mmi->XMSmem);
1516 }
1517
1518 //==========================================================================
1519
1520 /*
1521 =====================
1522 =
1523 = MM_EMSerr
1524 =
1525 =====================
1526 */
1527
1528 void MM_EMSerr(byte *stri, byte err)
1529 {
1530         //Returns a text string describing the error code in EMS.Error.
1531         switch(err)
1532         {
1533                 case 0x0:
1534                         strcat(stri, "successful");
1535                 break;
1536                 case 0x80:
1537                         strcat(stri, "internal error");
1538                 break;
1539                 case 0x81:
1540                         strcat(stri, "hardware malfunction");
1541                 break;
1542                 case 0x82:
1543                         strcat(stri, "busy .. retry later");
1544                 break;
1545                 case 0x83:
1546                         strcat(stri, "invalid handle");
1547                 break;
1548                 case 0x84:
1549                         strcat(stri, "undefined function requested by application");
1550                 break;
1551                 case 0x85:
1552                         strcat(stri, "no more handles available");
1553                 break;
1554                 case 0x86:
1555                         strcat(stri, "error in save or restore of mapping context");
1556                 break;
1557                 case 0x87:
1558                         strcat(stri, "insufficient memory pages in system");
1559                 break;
1560                 case 0x88:
1561                         strcat(stri, "insufficient memory pages available");
1562                 break;
1563                 case 0x89:
1564                         strcat(stri, "zero pages requested");
1565                 break;
1566                 case 0x8A:
1567                         strcat(stri, "invalid logical page number encountered");
1568                 break;
1569                 case 0x8B:
1570                         strcat(stri, "invalid physical page number encountered");
1571                 break;
1572                 case 0x8C:
1573                         strcat(stri, "page-mapping hardware state save area is full");
1574                 break;
1575                 case 0x8D:
1576                         strcat(stri, "save of mapping context failed");
1577                 break;
1578                 case 0x8E:
1579                         strcat(stri, "restore of mapping context failed");
1580                 break;
1581                 case 0x8F:
1582                         strcat(stri, "undefined subfunction");
1583                 break;
1584                 case 0x90:
1585                         strcat(stri, "undefined attribute type");
1586                 break;
1587                 case 0x91:
1588                         strcat(stri, "feature not supported");
1589                 break;
1590                 case 0x92:
1591                         strcat(stri, "successful, but a portion of the source region has been overwritten");
1592                 break;
1593                 case 0x93:
1594                         strcat(stri, "length of source or destination region exceeds length of region allocated to either source or destination handle");
1595                 break;
1596                 case 0x94:
1597                         strcat(stri, "conventional and expanded memory regions overlap");
1598                 break;
1599                 case 0x95:
1600                         strcat(stri, "offset within logical page exceeds size of logical page");
1601                 break;
1602                 case 0x96:
1603                         strcat(stri, "region length exceeds 1 MB");
1604                 break;
1605                 case 0x97:
1606                         strcat(stri, "source and destination EMS regions have same handle and overlap");
1607                 break;
1608                 case 0x98:
1609                         strcat(stri, "memory source or destination type undefined");
1610                 break;
1611                 case 0x9A:
1612                         strcat(stri, "specified alternate map register or DMA register set not supported");
1613                 break;
1614                 case 0x9B:
1615                         strcat(stri, "all alternate map register or DMA register sets currently allocated");
1616                 break;
1617                 case 0x9C:
1618                         strcat(stri, "alternate map register or DMA register sets not supported");
1619                 break;
1620                 case 0x9D:
1621                         strcat(stri, "undefined or unallocated alternate map register or DMA register set");
1622                 break;
1623                 case 0x9E:
1624                         strcat(stri, "dedicated DMA channels not supported");
1625                 break;
1626                 case 0x9F:
1627                         strcat(stri, "specified dedicated DMA channel not supported");
1628                 break;
1629                 case 0xA0:
1630                         strcat(stri, "no such handle name");
1631                 break;
1632                 case 0xA1:
1633                         strcat(stri, "a handle found had no name, or duplicate handle name");
1634                 break;
1635                 case 0xA2:
1636                         strcat(stri, "attempted to wrap around 1M conventional address space");
1637                 break;
1638                 case 0xA3:
1639                         strcat(stri, "source array corrupted");
1640                 break;
1641                 case 0xA4:
1642                         strcat(stri, "operating system denied access");
1643                 break;
1644                 default:
1645                         strcat(stri, "undefined error");
1646         }
1647 }
1648
1649 //==========================================================================
1650
1651 /*
1652 =====================
1653 =
1654 = MM_BombOnError
1655 =
1656 =====================
1657 */
1658
1659 void MM_BombOnError(boolean bomb, mminfo_t *mm)
1660 {
1661         mm->bombonerror = bomb;
1662 }
1663
1664 /*void MM_GetNewBlock(mminfo_t *mm)
1665 {
1666         if(!mm->mmfree)
1667                 MML_ClearBlock(mm);
1668         mm->mmnew=mm->mmfree;
1669         mm->mmfree=mm->mmfree->next;
1670         if(!(mm->mmnew=mm->mmfree))
1671         {
1672                 printf("MM_GETNEWBLOCK: No free blocks!\n");
1673                 return;
1674         }
1675         mm->mmfree=mm->mmfree->next;
1676         mm->endid++;    //end of list
1677 }
1678
1679 void MM_FreeBlock(mmblocktype *x, mminfo_t *mm)
1680 {
1681         x->useptr=NULL;
1682         x->next=mm->mmfree;
1683         mm->mmfree=x;
1684         mm->endid--;    //end of list
1685 }*/
1686
1687 void MM_seguin(void)
1688 {
1689         __asm {
1690                 push    ds
1691                 mov     ax,ds
1692                 inc             ax
1693                 mov     ds,ax
1694         }
1695 }
1696
1697 void MM_segude(void)
1698 {
1699         __asm {
1700                 pop ds
1701         }
1702 }
1703
1704 /*
1705 pull data from far and put it into ds var
1706 mov ax,es:si
1707 mov x,ax
1708 */
1709 /*
1710 ss stack segment
1711 sp top of stack
1712 bp bottem of stack
1713 */