From d825c9d6e9e424ad2172eef6aab527d69e2a16ab Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Thu, 2 May 2013 05:09:45 -0700 Subject: [PATCH] make fpga Makefile work with updated Makefrag --- src/main/scala/fpga.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/fpga.scala b/src/main/scala/fpga.scala index f906e3e2..fd70ab47 100644 --- a/src/main/scala/fpga.scala +++ b/src/main/scala/fpga.scala @@ -39,7 +39,7 @@ class FPGAOuterMemorySystem(htif_width: Int, clientEndpoints: Seq[ClientCoherenc } io.mem.req_cmd <> Queue(conv.io.mem.req_cmd) io.mem.req_data <> Queue(conv.io.mem.req_data, REFILL_CYCLES) - conv.io.mem.resp <> Queue(io.mem.resp, 16) + conv.io.mem.resp <> Queue(io.mem.resp) } class FPGAUncore(htif_width: Int, tileList: Seq[ClientCoherenceAgent])(implicit conf: UncoreConfiguration) extends Component