代码搜索:格式兼容

找到约 10,000 项符合「格式兼容」的源代码

代码结果 10,000
www.eeworm.com/read/120853/14786037

dat asslandat7.dat

字符串传送指令 MOVS/MOVSB/MOVSW/MOVSD 指令格式:MOVS OPD,OPS 其中OPS为源串符号地址,OPD为目的串符号地址。 指令功能:OPD
www.eeworm.com/read/120853/14786040

dat asslandat4.dat

字符串传送指令 MOVS/MOVSB/MOVSW/MOVSD 指令格式:MOVS OPD,OPS 其中OPS为源串符号地址,OPD为目的串符号地址。 指令功能:OPD
www.eeworm.com/read/120853/14786043

dat asslandat6.dat

字符串传送指令 MOVS/MOVSB/MOVSW/MOVSD 指令格式:MOVS OPD,OPS 其中OPS为源串符号地址,OPD为目的串符号地址。 指令功能:OPD
www.eeworm.com/read/120853/14786103

dat asslandat3.dat

CMPXCHG 指令 指令格式: CMPXCHG OPD,OPS 指令功能: 本指令比较并互换两个操作数,其中OPS必须是AL AX EAX. 指令说明: 实际上它相当于以下两条指令: CMP OPD,OPS XCHG OPD,OPS 在互换前比较是为了设置标志寄存器的某些位.
www.eeworm.com/read/220803/14788757

m elecsys.m

%微分方程函数 function xdot=elecsys(t,x) %状态导数 Vs=1; R=1.4; L=2; C=0.32; xdot=[x(2)/C;1/L*(Vs-x(1)-R*x(2))]; %格式 % function xdot=filename(t,x) % xdot=[表达式1;表达式2;表达式3;...;表达式n-1] % 表达式1 对应
www.eeworm.com/read/118498/14866920

txt readme.txt

LCD触摸屏实验用例 目录文件结构: touchsceen_test ├─ main.c ( C语言主源文件 ) ├─ AscII6x8.c ( Ascii字符6x8点阵显示格式数据) ├─ lcd.c ( LCD显示函数源文件 ) ├─ lcd.h ( LCD定义头文件 ) ├─ Call_int.s ( 中断处理文件
www.eeworm.com/read/116519/14966822

sql server 2000

--第九章--SQL Server 2000数据导入导出服务 --BCP是一个命令行可执行程序。BCP需要特定的参数用来提供操作参数。BCP的格式如下(显示了所有的用户需要和选项参数): bcp {[[database_name.][owner].]{table_name | view_name} | "query"} {in | out | queryout | format}
www.eeworm.com/read/116425/14969830

c al4_2.c

/*案例代码文件名:AL4_2.C。*/ /*功能:说明if语句的格式和用法。*/ main() { int num1,num2,num3,temp; printf("Please input three numbers:"); scanf("%d,%d,%d",&num1,&num2,&num3); if (num1>num2) {temp=num1;num1=num2;
www.eeworm.com/read/115774/15001831

txt lc_bcb_68.txt

读磁片磁区 读磁片磁区 一、以前的DOS版要读、写、格式化第0轨的第1个磁区,程式大致如下: char buffer[512]; reg.x.dx=0 ; /* for drive A * reg.x.cx=0x0001 /* for boot sector */ reg.x.bx=FP_OFF(buffer); sreg.es=FP_SEG(buffer);
www.eeworm.com/read/216389/15015517

txt 10-04.txt

%例10-4 判断某一年是否为闰年。。 %该函数用于判断某一年是否为闰年 %使用格式为isleapea(y),其中y是用户所要计算的年份 function isleapyear(year) sign=0; if rem(year,4)==0 sign=sign+1; end if rem(year,100)==0 sign=sign-1; end i