mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 03:32:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			510 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			510 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
| module attrib09_bar(clk, rst, inp, out);
 | |
|   input  wire clk;
 | |
|   input  wire rst;
 | |
|   input  wire [1:0] inp;
 | |
|   output reg  [1:0] out;
 | |
| 
 | |
|   always @(inp)
 | |
|     (* full_case, parallel_case *)
 | |
|     case(inp)
 | |
|       2'd0: out <= 2'd3;
 | |
|       2'd1: out <= 2'd2;
 | |
|       2'd2: out <= 2'd1;
 | |
|       2'd3: out <= 2'd0;
 | |
|     endcase
 | |
| 
 | |
| endmodule
 | |
| 
 | |
| module attrib09_foo(clk, rst, inp, out);
 | |
|   input  wire clk;
 | |
|   input  wire rst;
 | |
|   input  wire [1:0] inp;
 | |
|   output wire [1:0] out;
 | |
| 
 | |
|   attrib09_bar bar_instance (clk, rst, inp, out);
 | |
| endmodule
 | |
| 
 |