From: Joshua Wise Date: Fri, 28 Mar 2008 05:50:41 +0000 (-0400) Subject: Fix the lame on the multiplier's indentation X-Git-Tag: PRE_ROLLBACK~1 X-Git-Url: http://git.joshuawise.com/mandelfpga.git/commitdiff_plain/ec33b70849f3da7dfbf2ccc0ef434ea1a63f9041?hp=11cc2d9b78b4c1cb23002984474137dfe766eaab Fix the lame on the multiplier's indentation --- 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) +