mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	Also updates `macro_commands.py` to skip empty lines, and moves comment stripping earlier in parsing.
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			489 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			489 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#start:It also calls opt_clean as needed:
 | 
						|
#end:Options:
 | 
						|
# Identify and extract FSMs:
 | 
						|
fsm_detect
 | 
						|
fsm_extract
 | 
						|
 | 
						|
# Basic optimizations:
 | 
						|
fsm_opt
 | 
						|
opt_clean
 | 
						|
fsm_opt
 | 
						|
 | 
						|
# Expanding to nearby gate-logic (if called with -expand):
 | 
						|
fsm_expand
 | 
						|
opt_clean
 | 
						|
fsm_opt
 | 
						|
 | 
						|
# Re-code FSM states (unless called with -norecode):
 | 
						|
fsm_recode
 | 
						|
 | 
						|
# Print information about FSMs:
 | 
						|
fsm_info
 | 
						|
 | 
						|
# Export FSMs in KISS2 file format (if called with -export):
 | 
						|
fsm_export
 | 
						|
 | 
						|
# Map FSMs to RTL cells (unless called with -nomap):
 | 
						|
fsm_map
 |