From 2a6d87c7b8fe6783d4798a2e366e55456bcf3945 Mon Sep 17 00:00:00 2001 From: Ibrahim Date: Wed, 2 Dec 2020 13:35:47 +0000 Subject: [PATCH] Minor sytax corrections --- rtl/mips_cpu_alu.v | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rtl/mips_cpu_alu.v b/rtl/mips_cpu_alu.v index fe399cd..9f2b70b 100644 --- a/rtl/mips_cpu_alu.v +++ b/rtl/mips_cpu_alu.v @@ -112,19 +112,19 @@ module mips_cpu_alu( end SLL: begin - ALUOut = B << shamt //Shamt is instruction read data [10:6] + ALUOut = B << shamt; //Shamt is instruction read data [10:6] end SRL: begin - ALUOut = B >> shamt //Shamt is instruction read data [10:6] + ALUOut = B >> shamt; //Shamt is instruction read data [10:6] end SLLV: begin - ALUOut = B << A + ALUOut = B << A; end SRLV: begin - ALUOut = B >> A + ALUOut = B >> A; end AND: begin