mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	Hook up $aldff support in various passes.
This commit is contained in:
		
							parent
							
								
									ba0723cad7
								
							
						
					
					
						commit
						e7d89e653c
					
				
					 9 changed files with 77 additions and 11 deletions
				
			
		| 
						 | 
				
			
			@ -578,7 +578,7 @@ struct SmvWorker
 | 
			
		|||
					log_error("Unsupported cell type %s for cell %s.%s -- please run `dffunmap` before `write_smv`.\n",
 | 
			
		||||
							log_id(cell->type), log_id(module), log_id(cell));
 | 
			
		||||
				}
 | 
			
		||||
				if (cell->type.in(ID($adff), ID($adffe), ID($dffsr), ID($dffsre)) || cell->type.str().substr(0, 5) == "$_DFF") {
 | 
			
		||||
				if (cell->type.in(ID($adff), ID($adffe), ID($aldff), ID($aldffe), ID($dffsr), ID($dffsre)) || cell->type.str().substr(0, 5) == "$_DFF" || cell->type.str().substr(0, 7) == "$_ALDFF") {
 | 
			
		||||
					log_error("Unsupported cell type %s for cell %s.%s -- please run `async2sync; dffunmap` or `clk2fflogic` before `write_smv`.\n",
 | 
			
		||||
							log_id(cell->type), log_id(module), log_id(cell));
 | 
			
		||||
				}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue