代码搜索:4
找到约 10,000 项符合「4」的源代码
代码结果 10,000
www.eeworm.com/read/382449/9027725
plg 4x4keyboard.plg
www.eeworm.com/read/382449/9027727
opt 4x4keyboard.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.a*; *.src)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt)
pExt (*.plm)
DaveTm { 0,0,0,0,0,0,0,0 }
Target (Tar
www.eeworm.com/read/283203/9035606
cpp d4r4.cpp
#include
#include
#include
#include
#include
#include
void main()
{
//program d4r4
//driver for routine factln
www.eeworm.com/read/185307/9043731
m example4_2_4.m
clear,clc
n1=[-3:4];
x1=[2 3 1 4 1 3 1 2];
n2=[-4:2];
x2=[1 3 2 5 1 3 4];
[y,n]=sigadd(x1,n1,x2,n2);
stem(n,y),xlabel('n'),ylabel('y')
www.eeworm.com/read/281948/9126412
hex key4x4.hex
:10000000830100308A0004282030840026300F202D
:1000100083010A128A11F62F04068001840A04065D
:06002000031D0C28003452
:100D50008301A4010130A50024080319A503A403FD
:100D6000240A0319250A03190800AC2E952FF93
www.eeworm.com/read/281948/9126415
c key4x4.c
//实验目的:熟悉键盘矩阵的扫描方法
//程序中没有做按键去抖,也没有考虑多个键同时按下的情况。
//最低两位数码管显示相应的按键(如按下S10,在显示10;按下S25,则显示25)
//无按键按下的时候显示FF
//按键跟按键的扫描结果满足如下关系:
// 按键 扫描结果(result) 按键 扫描结果
// K10 ...
www.eeworm.com/read/379307/9200915
cpp c4-4-3.cpp
#include
#include
using namespace std;
class String
{public:
String(){p=NULL;}
String(char *str);
friend bool operator>(String &string1,String &string2);
frien
www.eeworm.com/read/379307/9200920
cpp c4-4-1.cpp
#include
using namespace std;
class String //String 是用户自己指定的类名
{public:
String(){p=NULL;}
String(char *str);
void display();
private:
char *p;
};
Stri
www.eeworm.com/read/379307/9200929
cpp c4-4-2.cpp
#include
#include
using namespace std;
class String
{public:
String(){p=NULL;}
String(char *str);
friend bool operator>(String &string1,String &string2);
frie
www.eeworm.com/read/378479/9229952
v mult4x4.v
module mult4x4(out,a,b,clk);
output[7:0] out;
input[3:0] a,b;
input clk;
reg[7:0] out;
reg[1:0] firsta,firstb;
reg[1:0] seconda,secondb;
wire[3:0] outa,outb,outc,outd;
always @(posedge clk)