代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/259005/11827620
v t_divider_rr_stg.v
module test_Divider_RR_STG ();
parameter L_divn = 8;
parameter L_divr = 4;
parameter word_1_max = 255;
parameter word_1_min = 1;
parameter word_2_max = 15;
parameter
www.eeworm.com/read/259004/11827677
v t_fifo_clock_domain_synch.v
module t_FIFO_Clock_Domain_Synch (); // Test for clock domain
parameter stack_width = 32; // synchronization
parameter stack_height = 8;
parameter stack_ptr_width = 3;
defparam M1.sta
www.eeworm.com/read/259004/11827679
v t_fifo_buffer.v
module t_FIFO_Buffer (); // Used to test only the FIFO, without synchronization
parameter stack_width = 32;
parameter stack_height = 8;
parameter stack_ptr_width = 4;
wire [st
www.eeworm.com/read/345146/11835572
c lcd_b.c
/*******************************************************************************
* 标题: 蓝海微芯LJD-SY-5200单片机开发系统演示程序 *
* 文件: LCD.C
www.eeworm.com/read/345083/11840932
c kbhit.c
#include
#include
#include
#include
#include
static struct termios initial_settings, new_settings;
static int peek_character = -1;
void init_keyb
www.eeworm.com/read/258642/11848834
v t_latch_rbar_ca.v
module Latch_Rbar_CA (q_out, data_in, enable, reset);
output q_out;
input data_in, enable, reset;
assign q_out = !reset ? 0 : enable ? data_in : q_out;
endmodule
module t_Latch_Rbar_CA(
www.eeworm.com/read/258642/11849239
v t_latch_ca.v
module Latch_CA (q_out, data_in, enable);
output q_out;
input data_in, enable;
assign q_out = enable ? data_in : q_out;
endmodule
module t_Latch_CA();
wire q_out;
reg data_in, enab
www.eeworm.com/read/155143/11895513
c main.c
//===============================================================================================================
// The information contained herein is the exclusive property of
// Sunnnorth Tech
www.eeworm.com/read/155143/11895576
inc pcplay.inc
//========================================================================================
// Progarm: The head file for pcplay.asm
// Arranged by: Andy Hsu
// Last modified date:
// 2000/06/23
www.eeworm.com/read/155143/11895641
asm system.asm
//========================================================================================================
// 文件名称:system.asm
// 实现功能:实现与硬件相关的底层操作
// 日 期:2003/7/7
//============================