2022-08-25 17:20:02 +00:00
|
|
|
///////////////////////////////////////////
|
|
|
|
// irom.sv
|
|
|
|
//
|
|
|
|
// Written: Ross Thompson ross1728@gmail.com January 30, 2022
|
|
|
|
// Modified:
|
|
|
|
//
|
|
|
|
// Purpose: simple instruction ROM
|
2023-01-11 23:15:08 +00:00
|
|
|
// A component of the CORE-V-WALLY configurable RISC-V project.
|
2022-08-25 17:20:02 +00:00
|
|
|
//
|
2023-01-10 19:35:20 +00:00
|
|
|
// Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
2022-08-25 17:20:02 +00:00
|
|
|
//
|
2023-01-10 19:35:20 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
2022-08-25 17:20:02 +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
|
2022-08-25 17:20:02 +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-08-25 17:20:02 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
`include "wally-config.vh"
|
|
|
|
|
|
|
|
module irom(
|
2023-01-19 00:44:30 +00:00
|
|
|
input logic clk,
|
|
|
|
input logic ce, // Chip Enable. 0: Holds IROMInstrF constant
|
|
|
|
input logic [`XLEN-1:0] Adr, // PCNextFSpill
|
|
|
|
output logic [31:0] IROMInstrF // Instruction read data
|
2022-08-25 17:20:02 +00:00
|
|
|
);
|
|
|
|
|
2022-08-27 04:05:20 +00:00
|
|
|
localparam ADDR_WDITH = $clog2(`IROM_RANGE/8);
|
2022-10-10 16:10:55 +00:00
|
|
|
localparam OFFSET = $clog2(`XLEN/8);
|
2022-08-25 17:20:02 +00:00
|
|
|
|
2023-01-19 00:44:30 +00:00
|
|
|
logic [`XLEN-1:0] IROMInstrFFull;
|
2022-10-10 16:10:55 +00:00
|
|
|
|
2023-01-19 00:44:30 +00:00
|
|
|
rom1p1r #(ADDR_WDITH, `XLEN) rom(.clk, .ce, .addr(Adr[ADDR_WDITH+OFFSET-1:OFFSET]), .dout(IROMInstrFFull));
|
|
|
|
if (`XLEN == 32) assign IROMInstrF = IROMInstrFFull;
|
2022-10-11 16:35:40 +00:00
|
|
|
else begin
|
2023-01-19 00:47:02 +00:00
|
|
|
// IROM is aligned to XLEN words, but instructions are 32 bits. Select between the two
|
|
|
|
// haves. Adr is the Next PCF not PCF so we delay 1 cycle.
|
2022-10-11 16:35:40 +00:00
|
|
|
logic AdrD;
|
|
|
|
flopen #(1) AdrReg(clk, ce, Adr[OFFSET-1], AdrD);
|
2023-01-19 00:44:30 +00:00
|
|
|
assign IROMInstrF = AdrD ? IROMInstrFFull[63:32] : IROMInstrFFull[31:0];
|
2022-10-11 16:35:40 +00:00
|
|
|
end
|
2022-08-25 17:20:02 +00:00
|
|
|
endmodule
|
|
|
|
|