From b7d036f3d069caae370ce2c63b8272599d10cd39 Mon Sep 17 00:00:00 2001 From: slmnemo Date: Tue, 17 May 2022 17:05:11 -0700 Subject: [PATCH] Revert "broke it again but this time it doesn't compile due to a missing semicolon on Rs1D." This reverts commit f970cc3ea9d59f79c4b8f163cc1d9d946af37928. fixed it --- pipelined/src/ieu/datapath.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelined/src/ieu/datapath.sv b/pipelined/src/ieu/datapath.sv index 5a205d286..90b5f0335 100644 --- a/pipelined/src/ieu/datapath.sv +++ b/pipelined/src/ieu/datapath.sv @@ -88,7 +88,7 @@ module datapath ( logic [`XLEN-1:0] IFResultW; // Decode stage - assign Rs1D = InstrD[19:15] + assign Rs1D = InstrD[19:15]; assign Rs2D = InstrD[24:20]; assign RdD = InstrD[11:7]; regfile regf(clk, reset, RegWriteW, Rs1D, Rs2D, RdW, ResultW, R1D, R2D);