Math Processor Unit Library

libmpu – library of arithmetic functions for integer, real, and complex numbers of increased digit capacity

16 Commits   0 Branches   2 Tags
author: kx <kx@radix-linux.su> 2024-12-29 20:12:16 +0300 committer: kx <kx@radix-linux.su> 2024-12-29 20:12:16 +0300 commit: 1ca800d6620d35f1d07f7c54ba20693de0af3f1c parent: 3c780c88a0a0e98f7bb1ceaf7843c4560d2e0ce4
Commit Summary:
man pages: Circular shift operations by one bit
Diffstat:
1 file changed, 1 insertion, 3 deletions
diff --git a/man/shifts.3mpu b/man/shifts.3mpu
index 00743c9..f781348 100644
--- a/man/shifts.3mpu
+++ b/man/shifts.3mpu
@@ -24,7 +24,6 @@ occupied by it does not overlap with the space occupied by variable \fBc\fP.
 When performing shift operations, the carry flag \fBC\fP always contains the value of the last
 putted forward bit. There are the following types of shift operations:
 .PP
-
 .RS 3
     SHL \- logical unsigned shift to the left by one bit.
 .RE
@@ -37,7 +36,6 @@ putted forward bit. There are the following types of shift operations:
 .RS 3
     SAR \- arithmetic shift to the right by one bit.
 .RE
-
 .PP
 The following tables illustrate the execution of the operations \fBishl\fP, \fBishr\fP.
 .nf
@@ -135,7 +133,7 @@ int main( void )
   __mpu_extra_warnings = 1;
 
   {
-    mpu_int128_t   c, a;
+    mpu_int8_t     c, a;
     int            nb = NB_I8;
     __mpu_char8_t  sc[32], sa[32];