Skip to content

Commit

Permalink
remove some deprecated chisel code
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwins7 committed Jan 20, 2024
1 parent f35cce3 commit e6d9ae2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 624 deletions.
17 changes: 0 additions & 17 deletions src/main/scala/nutcore/Bundle.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ package nutcore

import chisel3._
import chisel3.util._
import nutcore.backend.fu.{DasicsCheckFault}

class CtrlSignalIO extends NutCoreBundle {
val src1Type = Output(SrcType())
Expand Down Expand Up @@ -169,15 +168,6 @@ class InstFetchIO extends NutCoreBundle {
val instr = Output(UInt(64.W))
}

class IFUDasicsIO extends NutCoreBundle {
// for tagger
val startAddr: UInt = Output(UInt(VAddrBits.W))
val notTrusted: Vec[Bool] = Input(Vec(FetchWidth * 2, Bool()))
// for branch checker
val lastBranch = ValidIO(UInt(VAddrBits.W))
val brResp: UInt = Input(DasicsCheckFault())
}

// Micro OP
class RenamedDecodeIO extends NutCoreBundle with HasBackendConst {
val decode = new DecodeIO
Expand All @@ -187,11 +177,4 @@ class RenamedDecodeIO extends NutCoreBundle with HasBackendConst {
val src1Rdy = Output(Bool())
val src2Rdy = Output(Bool())
val brMask = Output(UInt(checkpointSize.W))
}
class DistributedCSRIO extends NutCoreBundle {
// CSR has been writen by csr inst, copies of csr should be updated
val w = ValidIO(new Bundle {
val addr = Output(UInt(12.W))
val data = Output(UInt(XLEN.W))
})
}
Loading

0 comments on commit e6d9ae2

Please sign in to comment.