mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 03:32:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			519 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			519 B
		
	
	
	
		
			Verilog
		
	
	
	
	
	
| module attrib06_bar(clk, rst, inp_a, inp_b, out);
 | |
|   input  wire clk;
 | |
|   input  wire rst;
 | |
|   input  wire [7:0] inp_a;
 | |
|   input  wire [7:0] inp_b;
 | |
|   output reg  [7:0] out;
 | |
| 
 | |
|   always @(posedge clk)
 | |
|     if (rst) out <= 0;
 | |
|     else     out <= inp_a + (* ripple_adder *) inp_b;
 | |
| 
 | |
| endmodule
 | |
| 
 | |
| module attrib06_foo(clk, rst, inp_a, inp_b, out);
 | |
|   input  wire clk;
 | |
|   input  wire rst;
 | |
|   input  wire [7:0] inp_a;
 | |
|   input  wire [7:0] inp_b;
 | |
|   output wire [7:0] out;
 | |
| 
 | |
|   attrib06_bar bar_instance (clk, rst, inp_a, inp_b, out);
 | |
| endmodule
 | |
| 
 |