Bugfix: include assign to write-mask

This commit is contained in:
Adam Izraelevitz 2016-11-18 11:49:26 -08:00
parent e01382739d
commit f77dc3bacc
1 changed files with 1 additions and 0 deletions

View File

@ -280,6 +280,7 @@ struct FirrtlWorker
cell_exprs.push_back(stringf(" %s.w%d.addr <= %s\n", mem_id.c_str(), i, addr_expr.c_str()));
cell_exprs.push_back(stringf(" %s.w%d.data <= %s\n", mem_id.c_str(), i, data_expr.c_str()));
cell_exprs.push_back(stringf(" %s.w%d.en <= %s\n", mem_id.c_str(), i, wen_expr.c_str()));
cell_exprs.push_back(stringf(" %s.w%d.mask <= UInt<1>(1)\n", mem_id.c_str(), i));
cell_exprs.push_back(stringf(" %s.w%d.clk <= asClock(%s)\n", mem_id.c_str(), i, clk_expr.c_str()));
}