From ace24cb879a1d7971309181a0c0f031e9918ac07 Mon Sep 17 00:00:00 2001 From: Harshini Srinath <93847878+harshinisrinath1001@users.noreply.github.com> Date: Mon, 12 Jun 2023 17:28:21 -0700 Subject: [PATCH] Update adrdec.sv Program clean up --- src/mmu/adrdec.sv | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/mmu/adrdec.sv b/src/mmu/adrdec.sv index d2d2a1740..492d55372 100644 --- a/src/mmu/adrdec.sv +++ b/src/mmu/adrdec.sv @@ -27,8 +27,8 @@ //////////////////////////////////////////////////////////////////////////////////////////////// module adrdec #(parameter PA_BITS) ( - input logic [PA_BITS-1:0] PhysicalAddress, // Physical address to decode - input logic [PA_BITS-1:0] Base, Range, // Base and range of peripheral addresses + input logic [PA_BITS-1:0] PhysicalAddress, // Physical address to decode + input logic [PA_BITS-1:0] Base, Range, // Base and range of peripheral addresses input logic Supported, // Is this peripheral supported? input logic AccessValid, // Is the access type valid? input logic [1:0] Size, // Size of access @@ -50,4 +50,3 @@ module adrdec #(parameter PA_BITS) ( // Select this peripheral if the address matches, the peripheral is supported, and the type and size of access is ok assign Sel = Match & Supported & AccessValid & SizeValid; endmodule -