Skip to content

Commit

Permalink
[ipemu] add memory scoreboard
Browse files Browse the repository at this point in the history
  • Loading branch information
sequencer committed Jul 16, 2024
1 parent b6f30e5 commit c5d77f0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ipemu/src/TestBench.scala
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ class TestBench(generator: SerializableModuleGenerator[T1, T1Parameter]) extends
retire.writeRd := dut.response.bits.rd.valid
retire.vxsat := dut.response.bits.vxsat
RawClockedVoidFunctionCall("retire_vector_instruction")(clock, dut.response.valid, retire)
val dummy = Wire(Bool())
dummy := false.B
RawClockedVoidFunctionCall("retire_vector_mem")(clock, dut.response.bits.mem && dut.response.valid, dummy)
}

// Memory Drivers
Expand Down

0 comments on commit c5d77f0

Please sign in to comment.