fix(ctrl): 删除无用信号
This commit is contained in:
parent
78d0912fb2
commit
59db6ed7cd
|
@ -30,7 +30,7 @@ class Ctrl(implicit val cpuConfig: CpuConfig) extends Module {
|
|||
io.decodeUnit.allow_to_go := !(lw_stall || longest_stall)
|
||||
io.executeUnit.allow_to_go := !longest_stall
|
||||
io.memoryUnit.allow_to_go := !longest_stall
|
||||
io.writeBackUnit.allow_to_go := !longest_stall || io.memoryUnit.flush
|
||||
io.writeBackUnit.allow_to_go := !longest_stall
|
||||
|
||||
io.fetchUnit.do_flush := false.B
|
||||
io.decodeUnit.do_flush := io.memoryUnit.flush || io.executeUnit.flush || io.decodeUnit.branch
|
||||
|
|
Loading…
Reference in New Issue