updated anchors and autofiller

This commit is contained in:
PurplePower
2025-08-14 21:57:07 +08:00
parent c6ff02a058
commit 47c801d5d7
3 changed files with 8 additions and 10 deletions

View File

@@ -31,10 +31,10 @@ class CPU extends Module {
val clint = Module(new CLINT)
val csr_regs = Module(new CSR)
// Lab3(Flush)
// Lab3(ThreeStage)
if2id.io.flush := false.B
id2ex.io.flush := false.B
// Lab3(Flush) End
// Lab3(ThreeStage) End
regs.io.write_enable := id2ex.io.output_regs_write_enable
regs.io.write_address := id2ex.io.output_regs_write_address

View File

@@ -17,5 +17,6 @@ package riscv.core.threestage
import chisel3._
class Control extends Module {
// Lab3(Flush)
// Lab3(ThreeStage)
// Lab3(ThreeStage) End
}