代码搜索:外差式
找到约 10,000 项符合「外差式」的源代码
代码结果 10,000
www.eeworm.com/read/104302/15699597
txt insertcode.txt
PE可执行文件的镶入式程序的编写方法及示例(镶入式后门程序&原程序)
由于Microsoft公司的Windows系统是当前大部分个人电脑所使用的操作系统
主要包括win95,98,me,nt4,2000,xp等,而这些系统所使用的可执行文件的格式基
本上是PE结构的。这里的可执行文件的镶入式程序就是针对PE结构的可执行文件。
这里先简单说一下PE文件框架结构:
D ...
www.eeworm.com/read/429756/8791070
lis usart.lis
.module usart.c
.area text(rom, con, rel)
0000 .dbfile D:\仿真\增量式模糊控制\usart.c
0000 .dbfunc e put_char _put_char
www.eeworm.com/read/379952/9171016
v crc16bits.v
//-----------------------------------------------------------------------------------
//16位循环冗余校验码芯片设计
//输入:data_in:原始数据.
// crc_in:CRC校验的生成多项式.
// EN:输出使能信号.
//--------------------------------
www.eeworm.com/read/377494/9274512
m pfrlength.m
function PFRlength
% 等温管式反应器的管长计算
%
% Author: HUANG Huajiang
% Copyright 2003 UNILAB Research Center,
% East China University of Science and Technology, Shanghai, PRC
% $Revision: 1.0 $
www.eeworm.com/read/376425/9317709
m pfrlength.m
function PFRlength
% 等温管式反应器的管长计算
%
% Author: HUANG Huajiang
% Copyright 2003 UNILAB Research Center,
% East China University of Science and Technology, Shanghai, PRC
% $Revision: 1.0 $
www.eeworm.com/read/164975/10079889
txt 4-3.txt
using System;
class Test
{
public static void Main()
{
ushort x=1;
x=x+2;
Console.WriteLine(x);
}
}
错误:无法将类型“int”隐式转换为“ushort”
-----------------------------
www.eeworm.com/read/425643/10342349
m pfrlength.m
function PFRlength
% 等温管式反应器的管长计算
%
% Author: HUANG Huajiang
% Copyright 2003 UNILAB Research Center,
% East China University of Science and Technology, Shanghai, PRC
% $Revision: 1.0 $
www.eeworm.com/read/449771/7496771
m pfrlength.m
function PFRlength
% 等温管式反应器的管长计算
%
% Author: HUANG Huajiang
% Copyright 2003 UNILAB Research Center,
% East China University of Science and Technology, Shanghai, PRC
% $Revision: 1.0 $
www.eeworm.com/read/439296/7713045
scm queens_function.scm
(display "此程序是函数式的N皇后问题")
(define (accumulate op initial sequence);累积函数
(if (null? sequence)
initial
(op (car sequence)
(accumulate op initial (cdr sequence)))))
(def