mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 19:52:31 +00:00 
			
		
		
		
	Co-authored-by: Miodrag Milanovic <mmicko@gmail.com> Co-authored-by: Roland Coeurjoly <rolandcoeurjoly@gmail.com>
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			98 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			98 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
| module simple_assign (
 | |
|     input wire in,
 | |
|     output wire out
 | |
| );
 | |
| 
 | |
|     assign out = in;
 | |
| 
 | |
| endmodule
 |