From: Luke Kenneth Casson Leighton Date: Tue, 30 Apr 2019 01:59:02 +0000 (+0100) Subject: add comment X-Git-Tag: ls180-24jan2020~1098 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c9c4ee1bf227367ead272e79adda7d265aaaba35;p=ieee754fpu.git add comment --- diff --git a/src/add/fsqrt.py b/src/add/fsqrt.py index a87af61d..e0696ebc 100644 --- a/src/add/fsqrt.py +++ b/src/add/fsqrt.py @@ -22,7 +22,7 @@ def sqrtsimple(num): def sqrt(num): D = num # D is input (from num) - Q = 0 + Q = 0 # quotient R = 0 # remainder for i in range(64, -1, -1): # negative ranges are weird...