From ec33b70849f3da7dfbf2ccc0ef434ea1a63f9041 Mon Sep 17 00:00:00 2001 From: Joshua Wise Date: Fri, 28 Mar 2008 01:50:41 -0400 Subject: [PATCH] Fix the lame on the multiplier's indentation --- Main.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.v b/Main.v index 79d8251..a5dc200 100644 --- a/Main.v +++ b/Main.v @@ -74,7 +74,7 @@ module NaiveMultiplier( (y[10] ? (x >> 2) : 0)) + (((y[9] ? (x >> 3) : 0) + (y[8] ? (x >> 4) : 0)) + - ((y[7] ? (x >> 5) : 0) + + ((y[7] ? (x >> 5) : 0) + (y[6] ? (x >> 6) : 0))))+ (((y[5] ? (x >> 7) : 0) + (y[4] ? (x >> 8) : 0) + -- 2.39.2