-
1 bit full adder
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 19:40:20 01/09/2019
// Design Name:
// Module Name: fulladder
// Project Name:
// Target Devices:
// Tool versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module fulladder(
input a, b, cin,
output s, cout
);
assign s=a^b^cin;
assign cout= a&b| b&cin | cin&a;
endmodule
- 2022-02-12 01:48:54下载
- 积分:1
-
SPI接口代码
对SPI接口的verilog编程,SPI is a simple interface that allows one chip to communicate with one or more other chips.
- 2022-04-16 11:02:29下载
- 积分:1
-
23565785scan_led
Quartus环境下的7段扫描显示电路的源程序(Quartus environment of the seven scanning display circuit of the source)
- 2006-12-11 17:11:41下载
- 积分:1
-
Verilog模块的缓存设计
这是 ;一种缓存设计的Verilog代码,使用先进先出算法。大约2000行代码,该程序包含缓存替换算法的实现。图像规则的选择,以及所有的模拟。这个设计有很多模块。此模块包含替换执行和测试平台
- 2022-03-22 11:53:39下载
- 积分:1
-
Timing1111_Symcronization
使用Verilog编写的时间同步模块,解决位同步问题,ISE12.2下编译通过(Time synchronization module written in Verilog, bit synchronization issues under ISE12.2 compiled by)
- 2021-05-07 14:28:36下载
- 积分:1
-
jianpan
说明: 一个简单的键盘接口模块程序,对键盘输入的数据和时钟信号进行过滤。过滤后的数据信号PS2Df将被送入两个11位移位寄存器中(A simple keyboard interface module program filters keyboard input data and clock signals. The filtered data signal PS2Df will be fed into two 11-bit displacement registers.)
- 2020-06-24 02:00:02下载
- 积分:1
-
Verilog经典教程-夏宇闻
硬件描述语言HDL(Hardware Description Language)经典教程(Classic Verilog tutorials)
- 2018-08-07 16:43:11下载
- 积分:1
-
LM
说明: 用于生成adams或recurdyn所需的路面不平度,用于悬架或其他的仿真(Adams or recurdyn used to generate the required road roughness for suspension or other simulation)
- 2013-10-15 17:38:48下载
- 积分:1
-
perl
说明: perl学习资料,包含一些常用的一些文档,可直接做来用于实践(perl training)
- 2009-08-21 10:48:17下载
- 积分:1
-
addsub32bit
32bit floating point addition
- 2021-04-06 18:19:02下载
- 积分:1