-
Project7_5
说明: 基于fpga状态机的交通灯设计,亮灯时间自己修改,程序简单易懂。(Traffic light design based on FPGA state machine, light time self-modifying, the program is simple and easy to understand.)
- 2020-06-18 04:00:01下载
- 积分:1
-
8.8-URAT-VHDL
URAT VHDL程序与仿真 URAT the VHDL program and Simulation
(URAT the VHDL program and Simulation
)
- 2012-04-09 20:53:45下载
- 积分:1
-
DE2_115_TV
DE2-115开发板TV摄像头成像程序,源码亲测可用,可加入边缘算法成像,实时显示轮廓,速度流畅(The DE2-115 development board TV camera imaging procedures, the pro-test in the source can be added to the edge algorithms imaging, real-time display contours, fast-paced)
- 2020-07-09 19:18:55下载
- 积分:1
-
ddr2_controller
DDR2控制器设计原码,可以在FPGA上测试通过,并对外部的ddr memory进行读写访问.(DDR2 controller design of the original code, can be tested through the FPGA, and external ddr memory read and write access.)
- 2010-02-23 09:16:50下载
- 积分:1
-
claa
vhdl code for carry lookahead addder
- 2014-02-05 00:26:26下载
- 积分:1
-
通訊8B/10B解碼
這是一般通訊介面會採用的8B/10B 解碼, 應用在光纖通訊, Serdes上均有廣泛應用
/* Module Description:
This module implements a 8b10b decoder according to the original patent work
of Widmer and Franaszek. It is a synchronous module with registers on the input
and output. It takes in a 10-bit 8b10b encoded word, and outputs and 8-bit data
word and a control bit to indicate if the 8-bit output data is one of 12 special
K-codes.
*/
- 2023-05-12 06:10:02下载
- 积分:1
-
直方图均衡化算法
基于FPGA的直方图均衡化算法,对灰度图像增强有较好的效果。处理图像为512x512大小。包括完整的ram模块,数据通路模块,数据处理模块。
- 2022-02-06 02:41:35下载
- 积分:1
-
Verilog 按键消抖程序
使用Verilog HDL 语言在cyclone IV 上实现功能按键控制灯,主要目的是实现按键的消抖程序,加深理解Verilog HDL 语言的并行执行方式
- 2022-01-28 07:30:28下载
- 积分:1
-
newdecode
密码锁,大学数字eda课程顺序锁的源代码,有2位或者4位的顺序锁,可以在fpga或者cpld上实现
(Password lock, digital eda course the order of the source code of the locks, the order of two or four locks, and can be implemented on the fpga or cpld)
- 2012-03-09 00:04:57下载
- 积分:1
-
AHB
// 4 entry deep fast fifo
module fifo4(clk, rst, clr, din, we, dout, re, full, empty);
parameter dw = 8;
input clk, rst;
input clr;
input [dw:1] din;
input we;
output [dw:1] dout;
input re;
output full, empty;
////////////////////////////////////////////////////////////////////
//
// Local Wires
//
reg [dw:1] mem[0:3];
reg [1:0] wp;
reg [1:0] rp;
wire [1:0] wp_p1;
wire [1:0] wp_p2;
wire [1:0] rp_p1;
wire full, empty;
reg gb;
///////////////////////////////////
- 2022-01-25 20:06:27下载
- 积分:1