代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/479927/6683734
v rom.v
module ROM(addr,data,oe);
output[7:0] data;
input[14:0] addr;
input oe;
reg[7:0] mem[0:255];
parameter DELAY = 100;
assign #DELAY data=(oe==0) ? mem[addr] : 8'hzz;
initial $readmemh("rom.he
www.eeworm.com/read/479927/6683737
v test2.v
module test2;
reg clk1,clk2;
parameter CYCLE = 100;
always
begin
{clk1,clk2} = 2'b10;
#(CYCLE/4) {clk1,clk2} = 2'b01;
#(CYCLE/4) {clk1,clk2} = 2'b11;
#(CYCLE/4) {clk1,clk2} =
www.eeworm.com/read/479927/6683786
v count4_tp.v
`timescale 1ns/1ns
`include "count4.v"
module coun4_tp;
reg clk,reset;
wire[3:0] out;
parameter DELY=100;
count4 mycount(out,reset,clk);
always #(DELY/2) clk = ~clk;
initial
begin
clk =0
www.eeworm.com/read/479760/6687114
m awgn.m
%*************************************************************************************
% This function pertains to the addition of AWGN with mean zero and
% parameter 'variance' to
www.eeworm.com/read/479501/6687786
h field.h
#if !defined(AFX_FIELD_H__284CDF34_D77A_4538_9790_62AA03CABA04__INCLUDED_)
#define AFX_FIELD_H__284CDF34_D77A_4538_9790_62AA03CABA04__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VE
www.eeworm.com/read/479507/6688071
cpp gobangfrom.cpp
//
//#include
//#include
//#include //显示中文必需
//#include "GobangFrom.h"
//#include "board.h"
//
//
//void start()
//{
// QMessageBox messageBox;
/