代码搜索:initial

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

代码结果 10,000
www.eeworm.com/read/296104/8121743

v loop2.v

module loop2; integer i; initial begin i=0; while(i
www.eeworm.com/read/296104/8121747

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/296104/8121976

v adder_tp.v

`timescale 1ns/1ns `include "adder4.v" module adder_tp; reg[3:0] a,b; reg cin; wire[3:0] sum; wire cout; integer i,j; adder4 adder(sum,cout,a,b,cin); always #5 cin=~cin; initial begin
www.eeworm.com/read/296097/8122255

v loop2.v

module loop2; integer i; initial begin i=0; while(i
www.eeworm.com/read/296097/8122258

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/296097/8122592

v adder_tp.v

`timescale 1ns/1ns `include "adder4.v" module adder_tp; reg[3:0] a,b; reg cin; wire[3:0] sum; wire cout; integer i,j; adder4 adder(sum,cout,a,b,cin); always #5 cin=~cin; initial begin
www.eeworm.com/read/145329/12735684

m vtb9_3.m

function z = VTB9_3(rkf,u,t,x0) %VTB9_3 VTB9_3(rkf,u,t,x0) % Runge-Kutta fourth order solution to a first order DE % t is a row vector from the initial time to the final time % ste
www.eeworm.com/read/145329/12735687

m vtb1_3.m

function z = VTB1_3(rkf,u,t,x0) %VTB1_3 VTB1_3(rkf,u,t,x0) % Runge-Kutta fourth order solution to a first order DE % t is a row vector from the initial time to the final time % ste
www.eeworm.com/read/145329/12735835

m vtb9_2.m

function [x,xd]=VTB9_2(n,dt,x0,xd0,a,b,c) %VTB9_2 Finds the multiple degree of freedom system % undamped response using Euler's method. % x=VTB9_2(n,dt,x0,a) Solves the system given the % in
www.eeworm.com/read/145329/12735875

m vtb1_2.m

function [x,xd]=VTB1_2(n,dt,x0,xd0,a,b,c) %VTB1_2 Finds the multiple degree of freedom system % unforced response using Euler's method. % x=VTB1_2(n,dt,x0,a) Solves the system given the % in