代码搜索:16
找到约 10,000 项符合「16」的源代码
代码结果 10,000
www.eeworm.com/read/456603/7343824
v adder16.v
`include "adder.v"
module adder16(cout,sum,a,b,cin);
output cout;
parameter my_size=16;
output[my_size-1:0] sum;
input[my_size-1:0] a,b;
input cin;
adder my_adder(cout,sum,a,b,cin);
endmod
www.eeworm.com/read/456603/7343895
v latch_16.v
module latch_16(qo,din,load);
output[15:0] qo;
input[15:0] din;
input load;
reg[15:0] qo;
always @(posedge load)
begin qo=din; end
endmodule
www.eeworm.com/read/456569/7344651
cpp intro16.cpp
// INTRO16.CPP--Example from Chapter 3, "An Introduction to C++"
#include
#include
#include
int main()
{
char cmd;
cout
www.eeworm.com/read/456522/7346569
ico image16.ico
www.eeworm.com/read/456522/7346769
gif image16.gif
www.eeworm.com/read/456497/7348012
dsp c16.dsp
# Microsoft Developer Studio Project File - Name="c16" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Conso
www.eeworm.com/read/456497/7348013
cpp c16.cpp
// c16.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
long product( int n );
int main(int argc, char* argv[])
www.eeworm.com/read/456284/7352661
c pwm_16.c
/******************************************************************
本程序为PCA16位PWM输出例程,jp2第2脚为PWM输出
******************************************************************/
#include
www.eeworm.com/read/456284/7352663