2021-09-22 10:34:20 -05:00
|
|
|
function [7:0] attrib07_do_add;
|
2019-06-03 02:12:51 -05:00
|
|
|
input [7:0] inp_a;
|
|
|
|
input [7:0] inp_b;
|
|
|
|
|
|
|
|
do_add = inp_a + inp_b;
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
2021-09-22 10:34:20 -05:00
|
|
|
module attri07_foo(clk, rst, inp_a, inp_b, out);
|
2019-06-03 02:12:51 -05:00
|
|
|
input wire clk;
|
|
|
|
input wire rst;
|
|
|
|
input wire [7:0] inp_a;
|
|
|
|
input wire [7:0] inp_b;
|
|
|
|
output wire [7:0] out;
|
|
|
|
|
|
|
|
always @(posedge clk)
|
|
|
|
if (rst) out <= 0;
|
2021-09-22 10:34:20 -05:00
|
|
|
else out <= attrib07_do_add (* combinational_adder *) (inp_a, inp_b);
|
2019-06-03 02:12:51 -05:00
|
|
|
|
|
|
|
endmodule
|
|
|
|
|