From 1b9f4ee7024aa7e75b259c8403e3edca6fc9d361 Mon Sep 17 00:00:00 2001 From: Michael Nolan Date: Wed, 12 Feb 2020 10:52:22 -0500 Subject: [PATCH] Fix whitespace --- src/ieee754/part_mul_add/adder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ieee754/part_mul_add/adder.py b/src/ieee754/part_mul_add/adder.py index 1ade9f84..c02883c9 100644 --- a/src/ieee754/part_mul_add/adder.py +++ b/src/ieee754/part_mul_add/adder.py @@ -134,7 +134,7 @@ class PartitionedAdder(Elaboratable): exp-o : o....oN...oN...oN...oN...x (32+4+2 bits - x to be discarded) o : .... N... N... N... N... (32 bits - x ignored, N is carry-over) carry-out: o o o o o (5 bits) - + A couple of differences should be noted: - The expanded a/b/o have 2 extra bits added to them. These bits allow the carry-in for the least significant partition to be @@ -149,7 +149,7 @@ class PartitionedAdder(Elaboratable): to extract the carry-out information for each partition, as when there is a carry out in a partition, the next most significant partition bit will be set to 1 - + Additionally, the carry-out bits must be rearranged before being output to move the most significant carry bit for each partition into the least significant bit for that partition, as well as to -- 2.30.2