whitespace cleanup to PEP8-ish standards
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 16 May 2020 21:44:23 +0000 (22:44 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 16 May 2020 21:44:23 +0000 (22:44 +0100)
src/soc/logical/bperm.py

index b7b9322e73ce1b55b8fb1657b1a49373ec9900f6..d312280d15da9d126c505c3202eeb356ed4a5f59 100644 (file)
@@ -1,29 +1,30 @@
 from nmigen import Elaboratable, Signal, Module, Repl, Cat, Const, Array
 from nmigen.cli import main
 
+
 class Bpermd(Elaboratable):
     """This class does a Bit Permute on a Doubleword
 
-       X-form bpermd RA,RS,RB]
-
-       Eight permuted bits are produced. For each permuted bit i where i ranges
-       from 0 to 7 and for each byte i of RS, do the following. If byte i of RS
-       is less than 64, permuted bit i is setto the bit of RB specified by byte
-       i of RS; otherwise permuted bit i is set to 0. The  permuted  bits are
-       placed in the least-significantbyte of RA, and the remaining bits are
-       filled with 0s.
-       Special Registers Altered: None
-
-       Programming note:
-       The fact that the permuted bit is 0 if the corresponding index value
-       exceeds 63 permits the permuted bits to be selected from a 128-bit
-       quantity, using a single index register. For example, assume that the
-       128-bit quantity Q, from which the permuted bits are to be selected, is
-       in registers r2(high-order 64 bits of Q) and r3 (low-order 64 bits of Q),
-       that the index values are in register r1, with each byte of r1 containing
-       a value in the range 0:127, and that each byte of register r4 contains
-       the value 64. The following code sequence selects eight permuted bits
-       from Q and places them into the low-order byte of r6.
+   X-form bpermd RA,RS,RB]
+
+   Eight permuted bits are produced. For each permuted bit i where i ranges
+   from 0 to 7 and for each byte i of RS, do the following. If byte i of RS
+   is less than 64, permuted bit i is setto the bit of RB specified by byte
+   i of RS; otherwise permuted bit i is set to 0. The  permuted  bits are
+   placed in the least-significantbyte of RA, and the remaining bits are
+   filled with 0s.
+   Special Registers Altered: None
+
+   Programming note:
+   The fact that the permuted bit is 0 if the corresponding index value
+   exceeds 63 permits the permuted bits to be selected from a 128-bit
+   quantity, using a single index register. For example, assume that the
+   128-bit quantity Q, from which the permuted bits are to be selected, is
+   in registers r2(high-order 64 bits of Q) and r3 (low-order 64 bits of Q),
+   that the index values are in register r1, with each byte of r1 containing
+   a value in the range 0:127, and that each byte of register r4 contains
+   the value 64. The following code sequence selects eight permuted bits
+   from Q and places them into the low-order byte of r6.
     """
 
     def __init__(self, width):
@@ -48,6 +49,7 @@ class Bpermd(Elaboratable):
         m.d.comb += self.ra[0:8].eq(self.perm)
         return m
 
+
 if __name__ == "__main__":
     bperm = Bpermd(width=64)
     main(bperm,ports=[bperm.perm, bperm.rs, bperm.ra, bperm.rb])