代码搜索:Switch
找到约 10,000 项符合「Switch」的源代码
代码结果 10,000
www.eeworm.com/read/420044/10821546
cmd test12.cmd
-c
-h
-mtest12.map
-otest12.out
test12.OBJ
-lrts.lib
-stack 0x100
MEMORY
{
PAGE 0: PROG: origin = 2a00h, length = 1600h
PAGE 1: DATA: origin = 0200h, length = 2800h
}
www.eeworm.com/read/420044/10821567
cmd test27.cmd
-c
-h
-mtest27.map
-otest27.out
test27.OBJ
-lrts.lib
-stack 0x100
MEMORY
{
PAGE 0: PROG: origin = 1a00h, length = 2600h
PAGE 1: DATA: origin = 0200h, length = 1800h
}
www.eeworm.com/read/420044/10821576
cmd test3.cmd
-c
-h
-m test3.map
-o test3.out
test3.OBJ
-lrts.lib
-stack 0x100
MEMORY
{
PAGE 0: PROG: origin = 1a00h, length = 2600h
PAGE 1: DATA: origin = 0200h, length = 1800h
}
www.eeworm.com/read/420044/10821609
cmd test24.cmd
-c
-h
-mtest24.map
-otest24.out
test24.OBJ
-lrts.lib
-stack 0x100
MEMORY
{
PAGE 0: PROG: origin = 1a00h, length = 2600h
PAGE 1: DATA: origin = 0200h, length = 1800h
}
www.eeworm.com/read/420044/10821628
cmd test15.cmd
-c
-h
-mtest15.map
-otest15.out
test15.OBJ
-lrts.lib
-stack 0x100
MEMORY
{
PAGE 0: PROG: origin = 1a00h, length = 2600h
PAGE 1: DATA: origin = 0200h, length = 2800h
}
www.eeworm.com/read/420044/10821679
cmd test11.cmd
-c
-h
-mtest11.map
-otest11.out
test11.OBJ
-lrts.lib
-stack 0x100
MEMORY
{
PAGE 0: PROG: origin = 1a00h, length = 2600h
PAGE 1: DATA: origin = 0200h, length = 2800h
}
www.eeworm.com/read/420044/10821729
cmd test9.cmd
-c
-h
-mtest9.map
-otest9.out
test9.OBJ
-lrts.lib
-stack 0x100
MEMORY
{
PAGE 0: PROG: origin = 1a00h, length = 2600h
PAGE 1: DATA: origin = 0200h, length = 1800h
}
SE
www.eeworm.com/read/419914/10829632
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
% switch (y)
% case 0
% if x==0
% distance=0.0458;
% end
% if x==1
%
www.eeworm.com/read/349226/10840508
lif jaws.lif
#Life 1.05
#D Jaws, a switch-engine based quadratic growth mechanism.
#D
#D The population roughly follows the equation
#D p = (5.167e-6)t^2 + 2.72t + 1000.
#D
#D If you can't see the pattern,
www.eeworm.com/read/419700/10842379
h keyscan.h
#ifndef _keyscan_H__
#define __keyscan_H__
uchar keyscan() //键盘扫描
{
P1=0xfe;
temp=P1;
temp=temp&0xf0;
while(temp!=0xf0)
{
delay(20);
temp=P1;
temp=temp&0xf0;
wh