QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
261 B

`include "settings.h"
module Adder (
input [`WORD_WIDTH-1:0] a,
input [`WORD_WIDTH-1:0] b,
output [`WORD_WIDTH-1:0] out
);
reg [`WORD_WIDTH-1:0] result;
always@(*) begin
result = a + b;
end
assign out = result;
endmodule