代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/326187/13157920
c 例7-7.c
#include "reg51.h"
#define ON 1
#define OFF 0
sbit Lamp1=P0^0;
sbit Lamp2=P0^1;
sbit Lamp3=P0^0;
sbit Lamp4=P0^1;
sbit Lamp5=P0^0;
sbit Lamp6=P0^1;
sbit Lamp7=P0^0;
sbit Lamp8=P0^1;
www.eeworm.com/read/326116/13165249
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/326116/13165550
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/325985/13171778
h liststudent.h
#ifndef LISTSTUDENT_H_
#define LISTSTUDENT_H_
#include
#include "linkstudent.h"
using namespace std;
class Liststudent
{
private:
Linkstudent *first;
Linkstudent *tail;
int
www.eeworm.com/read/240120/13236420
authors
ejoy : author and maintainer
Hu Yong : core developer,font and display driver bug fix
Rick Lei : initial freebsd port
www.eeworm.com/read/324473/13261627
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/324473/13261908
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