代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/259004/11827683
v t_circular_buffers.v
module t_circular_buffers ();
parameter buff_size = 4;
parameter word_size = 8;
wire [word_size-1: 0] cell_3_1, cell_2_1, cell_1_1, cell_0_1;
wire [word_size-1: 0] cell_3_2, cell
www.eeworm.com/read/259004/11827735
v test_fir_gaussian.v
module test_FIR_Gaussian_Lowpass ();
// Eigth-order, Gaussian lowpass FIR
parameter period = 5;
parameter word_size_in = 8;
parameter word_size_out = 2*word_size_in + 2;
wire [word_siz
www.eeworm.com/read/259004/11827741
v t_decimator_1.v
module t_decimator_1 ();
parameter word_length = 8;
wire [word_length-1:0] data_out;
reg [word_length-1:0] data_in;
reg hold; // Active high
reg clock, clock_data; // Posit
www.eeworm.com/read/259004/11827743
v t_decimator_2.v
module t_decimator_2 ();
parameter word_length = 8;
wire [word_length-1:0] data_out;
reg [word_length-1:0] data_in;
reg hold; // Active high
reg clock, clock_data; // Posit
www.eeworm.com/read/259004/11827747
v t_integrator_par.v
module t_integrator_1 ();
parameter word_length = 8;
wire [word_length-1:0] data_out;
reg [word_length-1:0] data_in;
reg hold; // Active high
reg clock; // Positive edge
www.eeworm.com/read/259004/11827793
v t_bubble_sort.v
module t_Bubble_Sort ();
wire [3:0] A1, A2, A3, A4, A5, A6, A7, A8;
reg En, Ld, clk, rst;
Bubble_Sort M0 (A1, A2, A3, A4, A5, A6, A7, A8,En, Ld, clk, rst);
initial #1000 $finish;
www.eeworm.com/read/345005/11847187
c ds1302.c
#include
#include "LCD1602.h"
#include "DS1302.h"
void Delay1ms(unsigned int count)
{
unsigned int i,j;
for(i=0;i
www.eeworm.com/read/258643/11848748
v seq_rec_3_1s_shft_reg.v
module Seq_Rec_3_1s_Mealy_Shft_Reg (D_out, D_in, En, clk, reset);
output D_out;
input D_in, En;
input clk, reset;
parameter Empty = 2'b00;
reg [1:0] Data;
www.eeworm.com/read/155522/11867006
v lfsr_sim.v
/*********************************************************/
// MODULE: LFSR simulation
//
// FILE NAME: lfsr_sim.v
// VERSION: 1.0
// DATE: January 1, 1999
// AUTHOR: Bob Zeidman, Zeidman Co
www.eeworm.com/read/258339/11869040
c yj.c
#include
#include "LCD1602.h"
#include "DS1302.h"
#include "DS18B20.h"
sbit key=P2^7;
bit key_flag=0;
void Delay1ms(unsigned int count)
{
unsigned int i,j;
for(i=0;i