代码搜索:parameter

找到约 10,000 项符合「parameter」的源代码

代码结果 10,000
www.eeworm.com/read/112234/15490746

mdl ipattacker.mdl

(object Petal version 45 _written "Rose 7.5.0103.1920" charSet 134) (object Design "Logical View" is_unit TRUE is_loaded TRUE attributes (list Attr
www.eeworm.com/read/111625/15508692

h field.h

#if !defined(AFX_FIELD_H__1E46CFAA_2460_47A9_871A_0D2AC8D08855__INCLUDED_) #define AFX_FIELD_H__1E46CFAA_2460_47A9_871A_0D2AC8D08855__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VE
www.eeworm.com/read/111535/15510934

html insertimage.html

www.eeworm.com/read/110571/15529499

html chb_f.html

tanchu
www.eeworm.com/read/110205/15540032

lst temp.lst

C51 COMPILER V6.02 - SN: Eval Version COPYRIGHT KEIL ELEKTRONIK GmbH 1987 - 1999 *** WARNING C206 IN LINE 42 OF C:\COMM_D\COMM.C: 'dog': missing function-prototype *** WARNING C258 IN LINE 191 OF
www.eeworm.com/read/109973/15544358

hpp bindconv.hpp

/* The following code example is taken from the book * "C++ Templates - The Complete Guide" * by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002 * * (C) Copyright David Vandevoorde
www.eeworm.com/read/109800/15548094

v wave2.v

`timescale 10ns/1ns module wave2; reg wave; parameter cycle=5; initial fork wave=0; #(cycle) wave=1; #(2*cycle) wave=0; #(3*cycle) wave=1; #(4*cycle) wave=0; #(5*cycle) wave=
www.eeworm.com/read/109800/15548096

v adder.v

module adder(cout,sum,a,b,cin); parameter size=16; output cout; output[size-1:0] sum; input cin; input[size-1:0] a,b; assign {cout,sum}=a+b+cin; endmodule
www.eeworm.com/read/109800/15548107

v wave1.v

`timescale 10ns/1ns module wave1; reg wave; parameter cycle=10; initial begin wave=0; #(cycle/2) wave=1; #(cycle/2) wave=0; #(cycle/2) wave=1; #(cycle/2) wave=0; #(cycle/2
www.eeworm.com/read/109800/15548152

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