mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			223 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			223 B
		
	
	
	
		
			Text
		
	
	
	
	
	
read_verilog <<EOT
 | 
						|
module m (input i, output o);
 | 
						|
wire [1023:0] _TECHMAP_DO_00_ = "CONSTMAP; ";
 | 
						|
endmodule
 | 
						|
EOT
 | 
						|
 | 
						|
design -stash map
 | 
						|
 | 
						|
read_verilog <<EOT
 | 
						|
module top(output o);
 | 
						|
m m (.o(o), .i(o));
 | 
						|
endmodule
 | 
						|
EOT
 | 
						|
 | 
						|
techmap -map %map
 |