2021-07-13 17:26:40 +00:00
|
|
|
///////////////////////////////////////////
|
2021-07-17 00:17:03 +00:00
|
|
|
// or_rows.sv
|
2021-07-13 17:26:40 +00:00
|
|
|
//
|
|
|
|
// Written: David_Harris@hmc.edu 13 July 2021
|
|
|
|
// Modified:
|
|
|
|
//
|
|
|
|
// Purpose: Various flavors of multiplexers
|
|
|
|
//
|
2023-01-11 23:15:08 +00:00
|
|
|
// A component of the CORE-V-WALLY configurable RISC-V project.
|
2021-07-13 17:26:40 +00:00
|
|
|
//
|
2023-01-10 19:35:20 +00:00
|
|
|
// Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
2021-07-13 17:26:40 +00:00
|
|
|
//
|
2023-01-10 19:35:20 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
2021-07-13 17:26:40 +00:00
|
|
|
//
|
2023-01-10 19:35:20 +00:00
|
|
|
// Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
|
|
|
// except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
|
|
|
// may obtain a copy of the License at
|
2021-07-13 17:26:40 +00:00
|
|
|
//
|
2023-01-10 19:35:20 +00:00
|
|
|
// https://solderpad.org/licenses/SHL-2.1/
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, any work 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.
|
2022-01-07 12:58:40 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
2021-07-13 17:26:40 +00:00
|
|
|
|
|
|
|
`include "wally-config.vh"
|
|
|
|
/* verilator lint_off DECLFILENAME */
|
|
|
|
/* verilator lint_off UNOPTFLAT */
|
|
|
|
|
|
|
|
// perform an OR of all the rows in an array, producing one output for each column
|
|
|
|
// equivalent to assign y = a.or
|
|
|
|
module or_rows #(parameter ROWS = 8, COLS=2) (
|
|
|
|
input var logic [COLS-1:0] a[ROWS-1:0],
|
|
|
|
output logic [COLS-1:0] y);
|
|
|
|
|
2022-01-05 14:35:25 +00:00
|
|
|
genvar row;
|
|
|
|
if(ROWS == 1)
|
|
|
|
assign y = a[0];
|
|
|
|
else begin
|
|
|
|
logic [COLS-1:0] mid[ROWS-1:1];
|
|
|
|
assign mid[1] = a[0] | a[1];
|
|
|
|
for (row=2; row < ROWS; row++)
|
|
|
|
assign mid[row] = mid[row-1] | a[row];
|
|
|
|
assign y = mid[ROWS-1];
|
|
|
|
end
|
2021-07-13 17:26:40 +00:00
|
|
|
endmodule
|
|
|
|
|
|
|
|
/* verilator lint_on UNOPTFLAT */
|
|
|
|
/* verilator lint_on DECLFILENAME */
|