mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			169 B
		
	
	
	
		
			Systemverilog
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			169 B
		
	
	
	
		
			Systemverilog
		
	
	
	
	
	
module top(
 | 
						|
    output logic [5:0] out
 | 
						|
);
 | 
						|
initial begin
 | 
						|
    out = '0;
 | 
						|
    case (1'b1 << 1)
 | 
						|
        2'b10: out = '1;
 | 
						|
        default: out = '0;
 | 
						|
    endcase
 | 
						|
end
 | 
						|
endmodule
 |