1
0
Fork 0

patches to make FAME1/dram IOs compile with up-to-date chisel (bumped)

This commit is contained in:
Henry Cook 2014-04-21 17:26:33 -07:00
parent 1bf5439f0b
commit cfd6748318
2 changed files with 4 additions and 4 deletions

2
chisel

@ -1 +1 @@
Subproject commit 41d48485e1cd454e5b7966a6efaac63ba5656796
Subproject commit 60fb4c60ed0184a5acdaa32535ac417bd691b4c4

View File

@ -185,9 +185,9 @@ class FPGATop extends Module {
referenceChip.DecoupledIOs("host_out").target.ready := io.host.out.ready
referenceChip.DecoupledIOs("host_out").host_ready := Bool(true)
io.host.clk := referenceChip.DebugIOs("host_clk")
io.host.clk_edge := referenceChip.DebugIOs("host_clk_edge")
io.host.debug_stats_pcr := referenceChip.DebugIOs("host_debug_stats_pcr")
io.host.clk := referenceChip.DebugIOs("host_clk").toBits()(0)
io.host.clk_edge := referenceChip.DebugIOs("host_clk_edge").toBits()(0)
io.host.debug_stats_pcr := referenceChip.DebugIOs("host_debug_stats_pcr").toBits()(0)
//reference chip to dram model connections
val mem_req_cmd_queue = Module(new FameQueue(8)(new MemReqCmd()))