代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/359519/10140794
m wishrnd.m
% WISHRND - Random Matrix from Wishart Distribution
% Copyright (c) 1998, Harvard University. Full copyright in the file Copyright
%
% [W] = wishrnd(Sc,nu)
%
% W = returned random symmetric positiv
www.eeworm.com/read/359331/10156080
nif e100beds.nif
; Extended DOS NIF file
[E100B]
Type = NDIS
Title = Intel(R) 82559ER Fast Ethernet Adapter
Version = 3.12
Drivername = E100B$
Xports = NETBEUI LANDD
[FILE]
Name = E100B.D
www.eeworm.com/read/358843/10178030
f90 ans0605.f90
program main
implicit none
integer, parameter :: length = 79
character(len=length) :: input, output
integer i,j
write(*,*) "请输入一个字串"
read(*,"(A79)") input
j=1
do i=1, len_t
www.eeworm.com/read/358784/10179629
asm addtwo.asm
TITLE Demonstrate the AddTwo Procedure (AddTwo.asm)
; Last update: 8/30/01
INCLUDE Irvine32.inc
.data
sum DWORD ?
.code
main PROC
call MySub
; Restore the stack after the call
www.eeworm.com/read/358389/10189985
v alu.v
//-----------------------------------------------------------------------------
// Title : ALU Behavioral Model
//-----------------------------------------------------------------------------
www.eeworm.com/read/358389/10189992
v muxw15.v
module mux5( sel, a, b, y );
parameter bitwidth=5;
input sel;
input [bitwidth-1:0] a, b;
output [bitwidth-1:0] y;
assign y = sel ? b : a;
endmodule
www.eeworm.com/read/358389/10189995
v mux4to1.v
module mux4(y, sel4, a, b, c, d);
parameter bitwidth=32;
input [1:0] sel4;
input [bitwidth-1:0] a, b, c, d;
output [bitwidth-1:0] y;
reg [31:0] y;
always @ (sel4 or a or b or c o
www.eeworm.com/read/357852/10200097
cpp summit.cpp
#include
int sumit(int num) {
int sum = 0;
for (; num ; --num) /* The parameter gets reduced to 0. */
sum += num;
return sum;
}
int main() {
using namespace std;
www.eeworm.com/read/356102/10237156
v ps2_keyboard.v
//-------------------------------------------------------------------------------------
//
// Author: John Clayton
// Date : April 30, 2001
// Update: 4/30/01 copied this file from lcd_2.v (pared