源码地带 > 电路图 > 电子资料下载 > 实用工具 >C > 查看压缩包源码

C

源代码在线查看: dta.c

软件大小: 44597 K
上传用户: shkuosi316
关键词:
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				#include 
				#include 
				
				void main(void)
				 {
				   char far *dta;
				
				   dta = getdta();
				
				   printf("Current DTA is %lX\n", dta);
				 
				   if (MK_FP(_psp, 0x80) == dta)
				     printf("DTA is at same location as command line\n");
				
				   dta = _fmalloc(128);
				   setdta(dta);
				
				   printf("New DTA is %lX\n", getdta());
				 }
				
							

相关资源