代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/299096/7889173
h lcd_lts350q1_pe1.h
/**************************************************************
The initial and control for 240×320 16Bpp TFT LCD----LtS350Q1
**************************************************************/
void
www.eeworm.com/read/433434/7930367
v tcounter_4b.v
module test_counter_4b;
reg clk,reset;
wire [4:0] count;
counter_4b dut(count,clk,reset);
initial
begin
clk=0;
forever #10 clk=!clk;
end
initial
begin
reset=1;
#
www.eeworm.com/read/433434/7930397
bak tcounter_16b.v.bak
module test_counter_16b;
reg clk,reset;
wire [3:0] count0,count1,count2,count3;
counter_16b dut(.count0(count0),.count1(count1),.count2(count2),.count3(count3),.clock(clk),.reset(reset));
initial
www.eeworm.com/read/433434/7930400
v tcounter_16b.v
module test_counter_16b;
reg clk,reset;
wire [3:0] count0,count1,count2,count3;
counter_16b mycounter(.count0(count0),.count1(count1),.count2(count2),.count3(count3),.clock(clk),.resetb(reset));
in
www.eeworm.com/read/198457/7934140
lnp ide mp3.lnp
"STARTUP.obj",
"main.obj",
"MP3.obj",
"USB.obj",
"file_system.obj",
"ide.obj",
"Initial.obj",
"keyboard.obj",
"LCD.obj"
TO "IDE MP3"
RAMSIZE(256)
www.eeworm.com/read/198420/7935893
c sina.c
#include
#include
unsigned char array[64]={0x80,0x8c,0x98,0xa4,0xb0,0xbb,0xc6,0xd0,0xd9,0xe2,0xe9,
0xf0,0xf5,0xf9,0xfc,0xfe,0xff,0xfe,0xfc,0xf9,0xf5,0xf0,0xe9,0xe2,0xd9,0xd0,
www.eeworm.com/read/197927/7962007
bak main.c.bak
main()
{
/************** head files ********************/
#include "2407reg_c.h"
#include "fun_ex.h"
#include "2407_PIN.h"
void bk();
/*****************************
www.eeworm.com/read/197562/7986132
v disp256_guo_test.v
`timescale 1us/1us
module DISP256_GUO_TEST;
reg CLK;
wire [15:0] ROW, COLUMN;
DISP256_GUO DISP256_GUO ( CLK, ROW, COLUMN );
always #1 CLK=~CLK;
initial
www.eeworm.com/read/297875/7990937
v random_tp.v
`timescale 10ns/1ns
module random_tp;
integer data;
integer i;
parameter delay=10;
initial $monitor($time,,,"data=%b",data);
initial
begin
for(i=0; i