代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/292214/8367099
asm he26.asm
;=============硬件实验二十六 2×16LCD液晶显示接口实验=========
org 0000h
LJMP LCDGD
;8155命令口 0ffe8h
ORG 1000H
;==========2X16字符式液晶显示================
;R/W=8155_PA7
www.eeworm.com/read/392021/8367100
m dsmap.m
www.eeworm.com/read/292214/8367101
asm p3_p1.asm
;===================P3.3口输入,P1口输出 =====================
ORG 0810H
J100: MOV A,#00H
J101: JB P3.3,J101
MOV R2,#20H
LCALL DELY
JB P3.3,J101 ;P3.3电平为低
www.eeworm.com/read/392021/8367102
m uvar.m
function un=uvar(u,N);
%un = uvar(u,N); Compute a bounded sequence that has 90% of its
%values at the extremes.
u1 = u(1); u2=u(2);
un = u1(ones(1,N));
r = rand(1,N);
ri2 = r > 0.55;
ri1 = r > 0.45
www.eeworm.com/read/292214/8367103
asm he10.asm
;===================== 硬件实验十 D/A输出方波 =========================
;注意:进行本实验前,请先装载运行D/A 0V输出(调基准电压)程序Asm51\da_0v.asm
; 使D/A输出端“AOUT”输出电压为0V,再进行本实验。
ORG 061FH
MOV SP,#53H
www.eeworm.com/read/192682/8367104
txt java用户自定义事件监听完整例子.txt
sunfruit的博客
[JAVA]用户自定义事件监听- -| 回首页 | 2005年索引 | - -原码、补码和反码
[原创]JAVA用户自定义事件监听完整例子- -
--sunfruit
很多介绍用户自定义事件都没有例子,或是例子不全,下面写了一个完整的例子,并写入了注释以便参考,完整
www.eeworm.com/read/392021/8367105
m dsisplot.m
function dsisPlot(dbg,itn,order,x,s,e,ns,out)
% Show some pretty pictures
if dbg==0
return;
elseif dbg==2
fprintf('Iteration %d: %d/%d image vertices outside\n',itn, sum(out),size(ns,2));
www.eeworm.com/read/292214/8367106
asm jtd.asm
;==================== 8255控制交通灯 ==========================
ORG 0BB0H
JOD0: MOV SP,#60H
MOV DPTR,#0FFFFH
MOV A,#88H
MOVX @DPTR,A ;8255初始化
MOV
www.eeworm.com/read/292214/8367107
c play.c
#define uchar unsigned char
#define uint unsigned int
uchar xdata *RecCs = 0x8e18;
uchar code PlayTab[40] =
{0xc0,0xc1,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0xce,0xcf,
www.eeworm.com/read/392021/8367108
m dsistest.m
% parameters which may be defaulted: u, order, dbg, expFactor
if exist('u')~=1, u = 1/pi; end
if exist('order')~=1, order = 2; end
if exist('dbg')~=1, dbg = 1; end
if exist('expFactor')~=1 expFa