From 428fa14601b0de373ebe5d1a50e6345fb13828fa Mon Sep 17 00:00:00 2001 From: Howard Mao Date: Wed, 20 Jan 2016 11:39:40 -0800 Subject: [PATCH] fix DummyPTW response --- groundtest/src/main/scala/tile.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/groundtest/src/main/scala/tile.scala b/groundtest/src/main/scala/tile.scala index e78ca4e3..397fbbbc 100644 --- a/groundtest/src/main/scala/tile.scala +++ b/groundtest/src/main/scala/tile.scala @@ -61,9 +61,9 @@ class DummyPTW(n: Int)(implicit p: Parameters) extends CoreModule()(p) { s2_resp.error := Bool(false) s2_resp.pte.ppn := s2_ppn s2_resp.pte.reserved_for_software := UInt(0) - s2_resp.pte.d := Bool(false) + s2_resp.pte.d := Bool(true) s2_resp.pte.r := Bool(false) - s2_resp.pte.typ := UInt(2) + s2_resp.pte.typ := UInt("b0101") s2_resp.pte.v := Bool(true) io.requestors.zipWithIndex.foreach { case (requestor, i) =>