2015-05-13 11:03:01 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
2017-05-17 08:44:52 +00:00
|
|
|
// Copyright 2014 - 2017 (c) Analog Devices, Inc. All rights reserved.
|
2015-05-13 11:03:01 +00:00
|
|
|
//
|
2017-05-31 15:15:24 +00:00
|
|
|
// In this HDL repository, there are many different and unique modules, consisting
|
|
|
|
// of various HDL (Verilog or VHDL) components. The individual modules are
|
|
|
|
// developed independently, and may be accompanied by separate and unique license
|
|
|
|
// terms.
|
|
|
|
//
|
|
|
|
// The user should read each of these license terms, and understand the
|
2018-03-14 14:45:47 +00:00
|
|
|
// freedoms and responsibilities that he or she has by using this source/core.
|
2017-05-31 15:15:24 +00:00
|
|
|
//
|
|
|
|
// This core is distributed in the hope that it will be useful, but WITHOUT ANY
|
2017-05-29 06:55:41 +00:00
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE.
|
2015-05-13 11:03:01 +00:00
|
|
|
//
|
2017-05-29 06:55:41 +00:00
|
|
|
// Redistribution and use of source or resulting binaries, with or without modification
|
|
|
|
// of this file, are permitted under one of the following two license terms:
|
2015-05-13 11:03:01 +00:00
|
|
|
//
|
2017-05-17 08:44:52 +00:00
|
|
|
// 1. The GNU General Public License version 2 as published by the
|
2017-05-31 15:15:24 +00:00
|
|
|
// Free Software Foundation, which can be found in the top level directory
|
|
|
|
// of this repository (LICENSE_GPL2), and also online at:
|
|
|
|
// <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
|
2017-05-17 08:44:52 +00:00
|
|
|
//
|
|
|
|
// OR
|
|
|
|
//
|
2017-05-31 15:15:24 +00:00
|
|
|
// 2. An ADI specific BSD license, which can be found in the top level directory
|
|
|
|
// of this repository (LICENSE_ADIBSD), and also on-line at:
|
2017-05-29 06:55:41 +00:00
|
|
|
// https://github.com/analogdevicesinc/hdl/blob/master/LICENSE_ADIBSD
|
|
|
|
// This will allow to generate bit files and not release the source code,
|
|
|
|
// as long as it attaches to an ADI device.
|
2015-05-13 11:03:01 +00:00
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
2015-06-04 13:46:28 +00:00
|
|
|
// A simple adder/substracter width preconfigured input ports width and turn-around value
|
|
|
|
// Output = A - B_constant or A + B_constant
|
2015-05-13 11:03:01 +00:00
|
|
|
// Constraints: Awidth >= Bwidth
|
|
|
|
|
|
|
|
`timescale 1ns/1ps
|
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
module ad_addsub #(
|
2015-05-13 11:03:01 +00:00
|
|
|
|
2017-04-13 08:45:54 +00:00
|
|
|
parameter A_DATA_WIDTH = 32,
|
|
|
|
parameter B_DATA_VALUE = 32'h1,
|
|
|
|
parameter ADD_OR_SUB_N = 0) (
|
|
|
|
input clk,
|
|
|
|
input [(A_DATA_WIDTH-1):0] A,
|
|
|
|
input [(A_DATA_WIDTH-1):0] Amax,
|
|
|
|
output reg [(A_DATA_WIDTH-1):0] out,
|
|
|
|
input CE);
|
2015-05-13 11:03:01 +00:00
|
|
|
|
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
localparam ADDER = 1;
|
|
|
|
localparam SUBSTRACTER = 0;
|
2015-05-13 11:03:01 +00:00
|
|
|
|
|
|
|
// registers
|
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
reg [A_DATA_WIDTH:0] out_d = 'b0;
|
|
|
|
reg [A_DATA_WIDTH:0] out_d2 = 'b0;
|
|
|
|
reg [(A_DATA_WIDTH-1):0] A_d = 'b0;
|
|
|
|
reg [(A_DATA_WIDTH-1):0] Amax_d = 'b0;
|
|
|
|
reg [(A_DATA_WIDTH-1):0] Amax_d2 = 'b0;
|
2015-05-13 11:03:01 +00:00
|
|
|
|
|
|
|
// constant regs
|
|
|
|
|
2015-08-19 11:11:47 +00:00
|
|
|
reg [(A_DATA_WIDTH-1):0] B_reg = B_DATA_VALUE;
|
2015-05-13 11:03:01 +00:00
|
|
|
|
|
|
|
// latch the inputs
|
|
|
|
|
|
|
|
always @(posedge clk) begin
|
|
|
|
A_d <= A;
|
2015-06-04 13:46:28 +00:00
|
|
|
Amax_d <= Amax;
|
|
|
|
Amax_d2 <= Amax_d;
|
2015-05-13 11:03:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
// ADDER/SUBSTRACTER
|
|
|
|
|
|
|
|
always @(posedge clk) begin
|
2015-08-19 11:11:47 +00:00
|
|
|
if ( ADD_OR_SUB_N == ADDER ) begin
|
2015-05-13 11:03:01 +00:00
|
|
|
out_d <= A_d + B_reg;
|
|
|
|
end else begin
|
|
|
|
out_d <= A_d - B_reg;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-04 13:46:28 +00:00
|
|
|
// Resolve
|
2015-05-13 11:03:01 +00:00
|
|
|
|
|
|
|
always @(posedge clk) begin
|
2015-08-19 11:11:47 +00:00
|
|
|
if ( ADD_OR_SUB_N == ADDER ) begin
|
2015-06-04 13:46:28 +00:00
|
|
|
if ( out_d > Amax_d2 ) begin
|
|
|
|
out_d2 <= out_d - Amax_d2;
|
2015-05-13 11:03:01 +00:00
|
|
|
end else begin
|
|
|
|
out_d2 <= out_d;
|
|
|
|
end
|
|
|
|
end else begin // SUBSTRACTER
|
2015-08-19 11:11:47 +00:00
|
|
|
if ( out_d[A_DATA_WIDTH] == 1'b1 ) begin
|
2015-06-04 13:46:28 +00:00
|
|
|
out_d2 <= Amax_d2 + out_d;
|
2015-05-13 11:03:01 +00:00
|
|
|
end else begin
|
|
|
|
out_d2 <= out_d;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
// output logic
|
|
|
|
|
|
|
|
always @(posedge clk) begin
|
|
|
|
if ( CE ) begin
|
|
|
|
out <= out_d2;
|
|
|
|
end else begin
|
|
|
|
out <= 'b0;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|