1
0

Updated chisel removes ^^ from language. Removed from rocket source, updated jar.

This commit is contained in:
Henry Cook
2012-01-23 09:51:35 -08:00
parent e7bf07d55e
commit 8766438bb9
7 changed files with 36 additions and 35 deletions

View File

@ -162,9 +162,9 @@ class rocketDCacheDM_flush(lines: Int) extends Component {
dcache.io.cpu.req_ppn := Mux(flushing, UFix(0,PPN_BITS), io.cpu.req_ppn);
dcache.io.cpu.req_tag := Mux(flushing, r_cpu_req_tag, io.cpu.req_tag);
dcache.io.cpu.req_type := io.cpu.req_type;
dcache.io.cpu.req_data ^^ io.cpu.req_data;
dcache.io.cpu.req_data <> io.cpu.req_data;
dcache.io.cpu.req_kill := io.cpu.req_kill && !flush_waiting;
dcache.io.mem ^^ io.mem;
dcache.io.mem <> io.mem;
io.cpu.xcpt_ma_ld := dcache.io.cpu.xcpt_ma_ld;
io.cpu.xcpt_ma_st := dcache.io.cpu.xcpt_ma_st;