代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/342517/12015220
f 29_41_1.f
parameter( nx =42, ny= 42, nxy=nx*ny)
parameter( nxm=nx-1, nym=ny-1, nxm2=nx-2, nym2=ny-2)
parameter( itimmax=1, itermax=450)
parameter (ipr=2, jpr=2)
common/fieldn
www.eeworm.com/read/153518/12029367
s a4q1.s
; == Program Constants ==
.equ SWI_PrStr, 0x69
.equ SWI_PrInt, 0x6b
.equ SWI_Open, 0x66
.equ SWI_AlStr, 0x06
.equ SWI_Close, 0x68
.equ SWI_RdInt, 0x6c
.equ SWI_Exit, 0x11
.equ Consol
www.eeworm.com/read/256057/12031460
c getpars.c
/*********************** self documentation **********************/
/*****************************************************************************
GETPARS - Functions to GET PARameterS from the comm
www.eeworm.com/read/342294/12031902
v dff.v
module pDFF(DATA,QOUT,CLOCK,RESET);
parameter WIDTH = 1;
input [WIDTH-1:0] DATA;
input CLOCK, RESET;
output [WIDTH-1:0] QOUT;
reg [WIDTH-1:0] QOUT;
always @(posedge CLOCK or nege
www.eeworm.com/read/256040/12034151
h param.h
/*! \file param.h \brief EEPROM Parameter Storage Library. */
//*****************************************************************************
//
// File Name : 'param.h'
// Title : EEPROM Paramet
www.eeworm.com/read/341882/12056509
v clock.v
`timescale 1ns/10ps
module clock (clk);
parameter cyc=5; //???????
output clk;
reg clk;
initial
clk=0;
always
#cyc clk=~clk;
endmodule
www.eeworm.com/read/341882/12056524
v select2.v
module mux2(mux2_out,m0_in,m1_in,sel_in);
parameter width=8;
output [width-1:0] mux2_out;
input [width-1:0] m0_in;
input [width-1:0] m1_in;
input sel_in;
www.eeworm.com/read/255755/12057875
m parzenml.m
%PARZENML Optimum smoothing parameter in Parzen density estimation.
%
% H = PARZENML(A,FID)
%
% INPUT
% A input dataset
% FID File ID to write progress to (default [], see PRPROGRESS)
%
%
www.eeworm.com/read/341841/12058220
v shake.v
`timescale 1ns / 100ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 21:19:50 07/21/2007
// Design Name:
// Mod