mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-30 19:22:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
| module genblock_port_shadow_top(x);
 | |
| 	generate
 | |
| 		if (1) begin : blk
 | |
| 			wire x;
 | |
| 			assign x = 0;
 | |
| 		end
 | |
| 	endgenerate
 | |
| 	output wire x;
 | |
| 	assign x = blk.x;
 | |
| endmodule
 |