1
0

set missing port direction

Ideally, chisel should flag this as an error.
This commit is contained in:
Andrew Waterman 2016-08-25 19:33:03 -07:00
parent a19bd6de96
commit 33eaf08b60

View File

@ -21,7 +21,7 @@ class IBuf(implicit p: Parameters) extends CoreModule {
val io = new Bundle {
val imem = Decoupled(new FrontendResp).flip
val kill = Bool(INPUT)
val pc = UInt(width = vaddrBitsExtended)
val pc = UInt(OUTPUT, vaddrBitsExtended)
val btb_resp = new BTBResp().asOutput
val inst = Vec(retireWidth, Decoupled(new Instruction))
}