1 Star 0 Fork 1

doom/ALU

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

搜索帮助