You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
4.0 KiB
Verilog
102 lines
4.0 KiB
Verilog
// © IBM Corp. 2020
|
|
// Licensed under the Apache License, Version 2.0 (the "License"), as modified by
|
|
// the terms below; you may not use the files in this repository except in
|
|
// compliance with the License as modified.
|
|
// You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Modified Terms:
|
|
//
|
|
// 1) For the purpose of the patent license granted to you in Section 3 of the
|
|
// License, the "Work" hereby includes implementations of the work of authorship
|
|
// in physical form.
|
|
//
|
|
// 2) Notwithstanding any terms to the contrary in the License, any licenses
|
|
// necessary for implementation of the Work that are available from OpenPOWER
|
|
// via the Power ISA End User License Agreement (EULA) are explicitly excluded
|
|
// hereunder, and may be obtained from OpenPOWER under the terms and conditions
|
|
// of the EULA.
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, the reference design
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
|
|
// for the specific language governing permissions and limitations under the License.
|
|
//
|
|
// Additional rights, including the ability to physically implement a softcore that
|
|
// is compliant with the required sections of the Power ISA Specification, are
|
|
// available at no cost under the terms of the OpenPOWER Power ISA EULA, which can be
|
|
// obtained (along with the Power ISA) here: https://openpowerfoundation.org.
|
|
|
|
`timescale 1 ns / 1 ns
|
|
|
|
// Description: Address Decoder
|
|
//
|
|
//*****************************************************************************
|
|
|
|
module tri_addrcmp(
|
|
enable_lsb,
|
|
d0,
|
|
d1,
|
|
eq
|
|
);
|
|
|
|
input enable_lsb; // when "0" the LSB is disabled
|
|
input [0:35] d0;
|
|
input [0:35] d1;
|
|
output eq;
|
|
|
|
// tri_addrcmp
|
|
|
|
parameter tiup = 1'b1;
|
|
parameter tidn = 1'b0;
|
|
|
|
wire [0:35] eq01_b;
|
|
wire [0:18] eq02;
|
|
wire [0:9] eq04_b;
|
|
wire [0:4] eq08;
|
|
wire [0:1] eq24_b;
|
|
|
|
assign eq01_b[0:35] = (d0[0:35] ^ d1[0:35]);
|
|
|
|
assign eq02[0] = (~(eq01_b[0] | eq01_b[1]));
|
|
assign eq02[1] = (~(eq01_b[2] | eq01_b[3]));
|
|
assign eq02[2] = (~(eq01_b[4] | eq01_b[5]));
|
|
assign eq02[3] = (~(eq01_b[6] | eq01_b[7]));
|
|
assign eq02[4] = (~(eq01_b[8] | eq01_b[9]));
|
|
assign eq02[5] = (~(eq01_b[10] | eq01_b[11]));
|
|
assign eq02[6] = (~(eq01_b[12] | eq01_b[13]));
|
|
assign eq02[7] = (~(eq01_b[14] | eq01_b[15]));
|
|
assign eq02[8] = (~(eq01_b[16] | eq01_b[17]));
|
|
assign eq02[9] = (~(eq01_b[18] | eq01_b[19]));
|
|
assign eq02[10] = (~(eq01_b[20] | eq01_b[21]));
|
|
assign eq02[11] = (~(eq01_b[22] | eq01_b[23]));
|
|
assign eq02[12] = (~(eq01_b[24] | eq01_b[25]));
|
|
assign eq02[13] = (~(eq01_b[26] | eq01_b[27]));
|
|
assign eq02[14] = (~(eq01_b[28] | eq01_b[29]));
|
|
assign eq02[15] = (~(eq01_b[30] | eq01_b[31]));
|
|
assign eq02[16] = (~(eq01_b[32] | eq01_b[33]));
|
|
assign eq02[17] = (~(eq01_b[34]));
|
|
assign eq02[18] = (~(eq01_b[35] & enable_lsb));
|
|
|
|
assign eq04_b[0] = (~(eq02[0] & eq02[1]));
|
|
assign eq04_b[1] = (~(eq02[2] & eq02[3]));
|
|
assign eq04_b[2] = (~(eq02[4] & eq02[5]));
|
|
assign eq04_b[3] = (~(eq02[6] & eq02[7]));
|
|
assign eq04_b[4] = (~(eq02[8] & eq02[9]));
|
|
assign eq04_b[5] = (~(eq02[10] & eq02[11]));
|
|
assign eq04_b[6] = (~(eq02[12] & eq02[13]));
|
|
assign eq04_b[7] = (~(eq02[14] & eq02[15]));
|
|
assign eq04_b[8] = (~(eq02[16] & eq02[17]));
|
|
assign eq04_b[9] = (~(eq02[18]));
|
|
|
|
assign eq08[0] = (~(eq04_b[0] | eq04_b[1]));
|
|
assign eq08[1] = (~(eq04_b[2] | eq04_b[3]));
|
|
assign eq08[2] = (~(eq04_b[4] | eq04_b[5]));
|
|
assign eq08[3] = (~(eq04_b[6] | eq04_b[7]));
|
|
assign eq08[4] = (~(eq04_b[8] | eq04_b[9]));
|
|
|
|
assign eq24_b[0] = (~(eq08[0] & eq08[1] & eq08[2]));
|
|
assign eq24_b[1] = (~(eq08[3] & eq08[4]));
|
|
|
|
assign eq = (~(eq24_b[0] | eq24_b[1])); // output
|
|
endmodule
|