- 论坛徽章:
- 0
|
关于DOS下扩展内存的使用(涉及WIN2000)
- 遥远的年代编的程序,不知道是否有帮助。
- /* ems.h
- Definitions for EMS input/output.
- Meng Wenguang 1993-1994
- */
- #include <dos.h>;
- #include <stdio.h>;
- #include <stdlib.h>;
- #include <graph.h>;
- #include <conio.h>;
- typedef struct {
- unsigned int handle;
- int pagenum;
- long int size;
- int firstphypage;
- int firstlogpage;
- long int address;
- long int mapaddress;
- unsigned char far *base;
- long int top;
- int activenum;
- int active;
- } EMSFILE;
- struct EMSinfo{
- unsigned char far *BASE;
- int MAXPAGENUM;
- int RESTNUM;
- int EXIST;
- int PAGENUM;
- int TURN[4];
- EMSFILE * FILE[4];
- int PAGEUSED[4];
- } extern EMS;
- EMSFILE * EMSopen(long int size);
- void EMSclose(EMSFILE *stream);
- void EMSactive(EMSFILE *stream);
- void EMSdeactive(EMSFILE *stream);
- void EMSlocation(EMSFILE *stream);
- long int EMStell(EMSFILE *stream);
- void EMSseek(EMSFILE *stream,long address,int way);
- void EMSread(unsigned char *buffer,unsigned int size,int num,EMSFILE *stream);
- void EMSwrite(unsigned char *buffer,unsigned int size,int num,EMSFILE *stream);
- unsigned char EMSgetc(EMSFILE *stream);
- void EMSputc(unsigned char a,EMSFILE *stream);
- EMSFILE * putfiletoEMS(char *name);
- void saveEMSfile(EMSFILE *EMSfp,char *name);
- EMSFILE * qputfiletoEMS(char *name);
- void qsaveEMSfile(EMSFILE *EMSfp,char *name);
- unsigned int EMSalloc(int);
- void EMSshell(void);
- void EMSexit(unsigned int handle);
- int EMSini(void);
- void EMSmap(unsigned int handle,int phys,int page);
- EMSFILE * EMSopen(long int size)
- {
- int i;
- EMSFILE *EMSfp;
- if(!EMS.EXIST) return NULL;
- i=(int) ((size+16383)/16384);
- if(i>;EMS.RESTNUM) {
- puts(" No enough Expanded memory detected !\n");
- puts(" System halted !\n");
- exit(0);
- return NULL;
- };
- EMSfp=(EMSFILE *)malloc(sizeof(EMSFILE));
- EMSfp->;handle=EMSalloc(i);
- EMSfp->;pagenum=i;
- EMSfp->;size=size;
- EMSfp->;firstlogpage=0;
- EMSfp->;address=0;
- EMSfp->;mapaddress=0;
- EMSfp->;active=0;
- EMSfp->;top=0;
- EMS.RESTNUM-=i;
- return EMSfp;
- }
- void EMSlocation(EMSFILE *stream)
- {
- int i;
- stream->;firstlogpage=(int)(stream->;mapaddress/stream->;top)*stream->;activenum;
- if(stream->;firstlogpage+stream->;activenum>;stream->;pagenum)
- stream->;firstlogpage=stream->;pagenum-stream->;activenum;
- stream->;address=(unsigned int)(stream->;mapaddress-stream->;firstlogpage*16384);
- for(i=0;i<stream->;activenum;i++)
- EMSmap(stream->;handle,stream->;firstphypage+i,stream->;firstlogpage+i);
- }
- void EMSactive(EMSFILE *stream)
- {
- int i,j,k;
- if(stream->;active==1) return;
- for(i=0;i<4;i++) if(EMS.PAGEUSED==0) break;
- if(i<4){
- k=i;
- j=0;
- while((EMS.PAGEUSED[k]==0)&&(k<4)){ j++;k++;};
- if(j>;stream->;pagenum) j=stream->;pagenum;
- stream->;activenum=j;
- stream->;top=0;
- for(k=0;k<j;k++) stream->;top+=16384;
- stream->;base=EMS.BASE+i*16384;
- stream->;firstphypage=i;
- EMSlocation(stream);
- for(k=0;k<j;k++){
- EMS.TURN[EMS.PAGENUM]=i+k;
- EMS.PAGENUM++;
- EMS.PAGEUSED[i+k]=1;
- EMS.FILE[i+k]=stream;
- };
- }
- else{
- for(i=4;i>;0;i--) if(EMS.FILE->;handle==EMS.FILE[i-1]->;handle) break;
- if(i>;0){
- for(j=i;j<3;j++) EMS.TURN[j]=EMS.TURN[j+1];
- EMS.TURN[3]=i;
- EMS.FILE->;top-=16384;
- EMS.FILE->;activenum--;
- EMSlocation(EMS.FILE);
- stream->;firstphypage=i;
- stream->;activenum=1;
- stream->;base=EMS.BASE+i*16384;
- stream->;top=16384;
- EMSlocation(stream);
- EMS.FILE=stream;
- }
- else{
- i=EMS.TURN[0];
- EMS.FILE->;top=0;
- EMS.FILE->;active=0;
- EMS.FILE->;activenum--;
- stream->;base=EMS.BASE+i*16384;
- stream->;firstphypage=i;
- stream->;top=16384;
- stream->;activenum=1;
- EMSlocation(stream);
- EMS.FILE=stream;
- for(j=0;j<3;j++) EMS.TURN[j]=EMS.TURN[j+1];
- EMS.TURN[3]=i;
- };
- };
- stream->;active=1;
- }
- void EMSshell(void)
- {
- // int i;
- // for(i=4;i>;0;i--)
- // if(EMS.PAGEUSED==1)
- // {
- // EMS.FILE->;active=0;
- // EMS.PAGEUSED=0;
- // };
- }
- void EMSdeactive(EMSFILE *stream)
- {
- int i,j,k;
- for(i=0;i<stream->;activenum;i++){
- for(j=0;j<4;j++) if(EMS.TURN[j]==(i+stream->;firstphypage)) break;
- for(k=j;k<3;k++) EMS.TURN[k]=EMS.TURN[k+1];
- EMS.PAGEUSED[stream->;firstphypage+i]=0;
- EMS.PAGENUM--;
- };
- }
- void EMSclose(EMSFILE *stream)
- {
- union REGS regs;
- if(stream->;active) EMSdeactive(stream);
- regs.h.ah=0x45;
- regs.x.dx=stream->;handle;
- int86(0x67 ,®s,®s);
- EMS.RESTNUM+=stream->;pagenum;
- free(stream);
- }
- void EMSread(unsigned char *buffer,unsigned int size,int num, EMSFILE *stream)
- {
- unsigned char far *source;
- unsigned int j;
- size*=num;
- if(!stream->;active) EMSactive(stream);
- source=stream->;base+(unsigned int)stream->;address;
- if(stream->;address<(stream->;top-size)){
- stream->;mapaddress+=size;
- stream->;address+=size;
- while(size-->;0) *buffer++=*source++;
- return;
- }
- else{
- j=(unsigned int)(stream->;top-stream->;address);
- stream->;mapaddress+=j;
- size-=j;
- while(j-->;0) *buffer++= *source++;
- while(size>;=stream->;top){
- EMSseek(stream,stream->;mapaddress,0);
- j=stream->;top;
- stream->;mapaddress+=j;
- size-=j;
- source=stream->;base+(unsigned int)stream->;address;
- while(j-->;0) *buffer++= *source++;
- };
- EMSseek(stream,stream->;mapaddress,0);
- j=size;
- stream->;mapaddress+=j;
- source=stream->;base+(unsigned int)stream->;address;
- stream->;address+=j;
- // source-=j;
- while(j-->;0) *buffer++= *source++;
- }
- }
- void EMSwrite(unsigned char *buffer,unsigned int size,int num,EMSFILE *stream)
- {
- unsigned char far *targe;
- unsigned int j;
- size*=num;
- if(!stream->;active) EMSactive(stream);
- targe=stream->;base+(unsigned int)stream->;address;
- if(stream->;address<=(stream->;top-size)){
- stream->;address+=size;
- stream->;mapaddress+=size;
- while(size-->;0) *targe++=*buffer++;
- return;
- }
- else{
- j=(unsigned int) (stream->;top-stream->;address);
- stream->;mapaddress+=j;
- size-=j;
- while(j-->;0) *targe++=*buffer++;
- while(size>;=stream->;top){
- EMSseek(stream,stream->;mapaddress,0);
- j=stream->;top;
- stream->;mapaddress+=j;
- size-=j;
- targe=stream->;base+(unsigned int)stream->;address;
- while(j-->;0) *targe++=*buffer++;
- };
- EMSseek(stream,stream->;mapaddress,0);
- j=size;
- targe=stream->;base+(unsigned int)stream->;address;
- stream->;mapaddress+=j;
- stream->;address+=j;
- while(j-->;0) *targe++=*buffer++;
- }
- }
- unsigned char EMSgetc(EMSFILE *stream)
- {
- unsigned char far *source;
- if(!stream->;active) EMSactive(stream);
- if(stream->;address>;=stream->;top)
- EMSlocation(stream);
- source=stream->;base+(unsigned int)stream->;address;
- stream->;mapaddress++;
- stream->;address++;
- return(*source);
- }
- void EMSputc(unsigned char a,EMSFILE *stream)
- {
- unsigned char far *targe;
- if(!stream->;active) EMSactive(stream);
- if(stream->;address>;=stream->;top)
- EMSlocation(stream);
- targe=stream->;base+(unsigned int)stream->;address;
- *targe=a;
- stream->;mapaddress++;
- stream->;address++;
- }
- long int EMStell(EMSFILE *stream)
- {
- return stream->;mapaddress;
- }
- void EMSseek(EMSFILE *stream,long int address,int way)
- {
- int i;
- if(way==0)
- stream->;mapaddress=address;
- else if(way==1) stream->;mapaddress+=address;
- else if(way==2) stream->;mapaddress=(stream->;size-address);
- if(stream->;mapaddress<0) stream->;mapaddress=0;
- if(stream->;mapaddress>;(stream->;size))
- stream->;mapaddress=stream->;size;
- if(!stream->;active){ EMSactive(stream); EMSlocation(stream);};
- i=stream->;firstlogpage;
- stream->;firstlogpage=(int)((stream->;mapaddress/stream->;top)*stream->;activenum);
- if(stream->;firstlogpage+stream->;activenum>;stream->;pagenum)
- stream->;firstlogpage=stream->;pagenum-stream->;activenum;
- // if(stream->;firstlogpage==i) return;
- stream->;address=(unsigned int)(stream->;mapaddress-stream->;firstlogpage*16384l);
- for(i=0;i<stream->;activenum;i++)
- EMSmap(stream->;handle,stream->;firstphypage+i,stream->;firstlogpage+i);
- // EMSlocation(stream);
- }
- int EMSini()
- {
- union REGS regs;
- void far *p;
- regs.h.ah=0x40;
- int86(0x67,®s,®s);
- if(regs.h.ah!=0)
- {
- EMS.EXIST=0;
- return 0;
- };
- regs.h.ah=0x41;
- int86(0x67,®s,®s);
- p=MK_FP(regs.x.bx,0);
- EMS.BASE=(unsigned char far *) p;
- regs.h.ah=0x42;
- int86(0x67,®s,®s);
- EMS.EXIST=1;
- EMS.PAGENUM=0;
- EMS.PAGEUSED[0]=(EMS.PAGEUSED[1]=0);
- EMS.PAGEUSED[2]=(EMS.PAGEUSED[3]=0);
- EMS.RESTNUM=(EMS.MAXPAGENUM=regs.x.bx);
- return 1;
- }
- unsigned int EMSalloc(int n)
- {
- union REGS regs;
- regs.h.ah=0x43;
- regs.x.bx=n;
- int86(0x67 ,®s,®s);
- if(regs.h.ah!=0) return -1;
- return regs.x.dx;
- }
- void EMSmap(unsigned int handle,int phys,int page)
- {
- union REGS regs;
- regs.h.ah=0x44;
- regs.h.al=phys;
- regs.x.bx=page;
- regs.x.dx=handle;
- int86(0x67 ,®s,®s);
- }
- void EMSexit(unsigned int handle)
- {
- union REGS regs;
- regs.h.ah=0x45;
- regs.x.dx=handle;
- int86(0x67 ,®s,®s);
- }
- EMSFILE *putfiletoEMS(char *name)
- {
- FILE *fp;
- long int size;
- EMSFILE *EMSfp;
- fp=fopen(name,"rb");
- fseek(fp,0,2);
- size=ftell(fp);
- fseek(fp,0,0);
- EMSfp=EMSopen(size);
- EMSactive(EMSfp);
- EMSseek(EMSfp,0,0);
- while(size-->;0)
- EMSputc(fgetc(fp),EMSfp);
- fclose(fp);
- EMSseek(EMSfp,0,0);
- return EMSfp;
- }
- void saveEMSfile(EMSFILE *EMSfp,char *name)
- {
- FILE *fp;
- long int size;
- fp=fopen(name,"wb");
- size=EMSfp->;size;
- EMSseek(EMSfp,0,0);
- while(size-->;0) fputc(EMSgetc(EMSfp),fp);
- fclose(fp);
- EMSseek(EMSfp,0,0);
- }
- EMSFILE *qputfiletoEMS(char *name)
- {
- FILE *fp;
- long int size;
- EMSFILE *EMSfp;
- unsigned char *b;
- if((b=(unsigned char *)malloc(16384))==NULL) return NULL;
- fp=fopen(name,"rb");
- fseek(fp,0,2);
- size=ftell(fp);
- fseek(fp,0,0);
- EMSfp=EMSopen(size);
- EMSactive(EMSfp);
- while(size>;=16384){
- fread(b,16384,1,fp);
- EMSwrite(b,16384,1,EMSfp);
- size-=16384;
- };
- fread(b,(int)size,1,fp);
- EMSwrite(b,(int)size,1,EMSfp);
- fclose(fp);
- EMSseek(EMSfp,0,0);
- free(b);
- return EMSfp;
- }
- void qsaveEMSfile(EMSFILE *EMSfp,char *name)
- {
- FILE *fp;
- long int size;
- unsigned char *b;
- if((b=(unsigned char *)malloc(16384))==NULL) return;
- fp=fopen(name,"wb");
- size=EMSfp->;size;
- EMSseek(EMSfp,0,0);
- while(size>;=16384){
- EMSread(b,16384,1,EMSfp);
- fwrite(b,16384,1,fp);
- size-=16384;
- };
- EMSread(b,(int)size,1,EMSfp);
- fwrite(b,(int)size,1,fp);
- fclose(fp);
- free(b);
- EMSseek(EMSfp,0,0);
- }
复制代码 |
|