mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 11:42:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
| module test(input CLK, ARST,
 | |
|             output [7:0] Q1, Q2, Q3);
 | |
| 
 | |
| wire NO_CLK = 0;
 | |
| 
 | |
| always @(posedge CLK, posedge ARST)
 | |
| 	if (ARST)
 | |
| 		Q1 <= 42;
 | |
| 
 | |
| always @(posedge NO_CLK, posedge ARST)
 | |
| 	if (ARST)
 | |
| 		Q2 <= 42;
 | |
| 	else
 | |
| 		Q2 <= 23;
 | |
| 
 | |
| always @(posedge CLK)
 | |
| 	Q3 <= 42;
 | |
| 
 | |
| endmodule
 |