代码搜索结果
找到约 10,000 项符合
V 的代码
lfsr.v
/////////////////////////////////////////////////////////////////////
//// ////
//// Linear Feedback Shift Register
dct.v
/////////////////////////////////////////////////////////////////////
//// ////
//// Discrete Cosine Transform, Parallel implementation
dctub.v
/////////////////////////////////////////////////////////////////////
//// ////
//// Discrete Cosine Transform, DCT unit block
zigzag.v
/////////////////////////////////////////////////////////////////////
//// ////
//// Zig-Zag Unit
fdct.v
/////////////////////////////////////////////////////////////////////
//// ////
//// Forward Discrete Cosine Transform and ZigZag unit
dctu.v
/////////////////////////////////////////////////////////////////////
//// ////
//// Discrete Cosine Transform Unit
timescale.v
`timescale 1ns / 10ps
div.v
/////////////////////////////////////////////////////////////////////
//// ////
//// Non-restoring singed dividor
mfreq.v
module mfreq(
clk_in,
clk_out
);
input clk_in;
output reg clk_out;
parameter N=8;
reg[7:0] count;
always @(posedge clk_in)
begin
if (count==(N-1))
count
jiaotongdeng.v
module jiaotongdeng(CLK,EN,LAMP,count_down);
input CLK,EN;
output[7:0]LAMP; //LAMP[3:0]主干道 红、黄、直行绿灯、左拐绿灯
//LAMP[7:4]支干道 红、黄、直行绿灯、左拐绿灯
output[7:0]count_down;
reg[7:0]LAMP;
re