mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 13:29:12 +00:00 
			
		
		
		
	Fixed $memwr/$memrd order in memory_dff
This commit is contained in:
		
							parent
							
								
									fa96cf4a16
								
							
						
					
					
						commit
						ae02d9cb9a
					
				
					 1 changed files with 6 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -169,12 +169,14 @@ static void handle_module(RTLIL::Module *module, bool flag_wr_only)
 | 
			
		|||
		if (cell->type == "$dff")
 | 
			
		||||
			dff_cells.push_back(cell);
 | 
			
		||||
 | 
			
		||||
	for (auto cell : module->selected_cells()) {
 | 
			
		||||
	for (auto cell : module->selected_cells())
 | 
			
		||||
		if (cell->type == "$memwr" && !cell->parameters["\\CLK_ENABLE"].as_bool())
 | 
			
		||||
				handle_wr_cell(module, dff_cells, cell);
 | 
			
		||||
		if (!flag_wr_only && cell->type == "$memrd" && !cell->parameters["\\CLK_ENABLE"].as_bool())
 | 
			
		||||
			handle_wr_cell(module, dff_cells, cell);
 | 
			
		||||
 | 
			
		||||
	if (!flag_wr_only)
 | 
			
		||||
		for (auto cell : module->selected_cells())
 | 
			
		||||
			if (cell->type == "$memrd" && !cell->parameters["\\CLK_ENABLE"].as_bool())
 | 
			
		||||
				handle_rd_cell(module, dff_cells, cell);
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
struct MemoryDffPass : public Pass {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue