From af8f1fd0365ef7dbdc42a6f67826c758fd044a99 Mon Sep 17 00:00:00 2001 From: Ross Thompson Date: Fri, 24 Mar 2023 17:57:02 -0500 Subject: [PATCH] Renamed controllerinputstage to controllerinput to match book. --- src/ebu/{controllerinputstage.sv => controllerinput.sv} | 2 +- src/ebu/ebu.sv | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/ebu/{controllerinputstage.sv => controllerinput.sv} (99%) diff --git a/src/ebu/controllerinputstage.sv b/src/ebu/controllerinput.sv similarity index 99% rename from src/ebu/controllerinputstage.sv rename to src/ebu/controllerinput.sv index 7a6c76bb9..a8c8e8308 100644 --- a/src/ebu/controllerinputstage.sv +++ b/src/ebu/controllerinput.sv @@ -33,7 +33,7 @@ `include "wally-config.vh" -module controllerinputstage #( +module controllerinput #( parameter SAVE_ENABLED = 1 // 1: Save manager inputs if Save = 1, 0: Don't save inputs )( input logic HCLK, diff --git a/src/ebu/ebu.sv b/src/ebu/ebu.sv index b045c6aaa..8dddff35a 100644 --- a/src/ebu/ebu.sv +++ b/src/ebu/ebu.sv @@ -98,14 +98,14 @@ module ebu ( // input stages and muxing for IFU and LSU //////////////////////////////////////////////////////////////////////////////////////////////////// - controllerinputstage IFUInput(.HCLK, .HRESETn, .Save(IFUSave), .Restore(IFURestore), .Disable(IFUDisable), + controllerinput IFUInput(.HCLK, .HRESETn, .Save(IFUSave), .Restore(IFURestore), .Disable(IFUDisable), .Request(IFUReq), .HWRITEIn(1'b0), .HSIZEIn(IFUHSIZE), .HBURSTIn(IFUHBURST), .HTRANSIn(IFUHTRANS), .HADDRIn(IFUHADDR), .HWRITEOut(IFUHWRITEOut), .HSIZEOut(IFUHSIZEOut), .HBURSTOut(IFUHBURSTOut), .HREADYOut(IFUHREADY), .HTRANSOut(IFUHTRANSOut), .HADDROut(IFUHADDROut), .HREADYIn(HREADY)); // LSU always has priority so there should never be a need to save and restore the address phase inputs. - controllerinputstage #(0) LSUInput(.HCLK, .HRESETn, .Save(1'b0), .Restore(1'b0), .Disable(LSUDisable), + controllerinput #(0) LSUInput(.HCLK, .HRESETn, .Save(1'b0), .Restore(1'b0), .Disable(LSUDisable), .Request(LSUReq), .HWRITEIn(LSUHWRITE), .HSIZEIn(LSUHSIZE), .HBURSTIn(LSUHBURST), .HTRANSIn(LSUHTRANS), .HADDRIn(LSUHADDR), .HREADYOut(LSUHREADY), .HWRITEOut(LSUHWRITEOut), .HSIZEOut(LSUHSIZEOut), .HBURSTOut(LSUHBURSTOut),