mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	- Attempt to lookup a derived module if it potentially contains a port connection with elaboration ambiguities - Mark the cell if module has not yet been derived - This can be extended to implement automatic hierarchical port connections in a future change
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			Systemverilog
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			Systemverilog
		
	
	
	
	
	
module producer(
 | 
						|
    output logic [3:0] out
 | 
						|
);
 | 
						|
    assign out = 4'hA;
 | 
						|
endmodule
 | 
						|
 | 
						|
module top(
 | 
						|
    output logic [3:0] out
 | 
						|
);
 | 
						|
    logic [3:0] v[0:0];
 | 
						|
    producer p(v[0]);
 | 
						|
    assign out = v[0];
 | 
						|
endmodule
 |