1 Star 0 Fork 1

doom/ALU

forked from 刘梦缘/ALU 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Adder32.scala 334 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘梦缘 提交于 2019-05-18 22:09 . ALU
// See LICENSE.txt for license details.
package examples
import chisel3._
import chisel3.util._
//A 32-bit adder with carry in
class Adder32 extends Module {
val io = IO(new Bundle {
val in1 = Input(UInt(32.W))
val in2 = Input(UInt(32.W))
val out = Output(UInt(32.W))
})
io.out :=io.in1+io.in2
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Scala
1
https://gitee.com/netsplan/ALU.git
git@gitee.com:netsplan/ALU.git
netsplan
ALU
ALU
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385