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-30 18:22:24 +0300 committer: kx <kx@radix-linux.su> 2024-12-30 18:22:24 +0300 commit: e3f8685d48cfec80c01b065f652f3e81b2470bb7 parent: af4d49422d9c2db9223933cc251c8ba6b4944580
Commit Summary:
man: Mask new-line symbol
Diffstat:
1 file changed, 4 insertions, 4 deletions
diff --git a/man/ru/shifts.3mpu b/man/ru/shifts.3mpu
index a18e4a0..3f6dffa 100644
--- a/man/ru/shifts.3mpu
+++ b/man/ru/shifts.3mpu
@@ -144,10 +144,10 @@ int main( void )
     ishl( c, a, nb );
     iitoa( sa, a, RADIX_BIN, LOWERCASE, nb ); /* convert A value to ASCII string SA */
     iitoa( sc, c, RADIX_BIN, LOWERCASE, nb ); /* convert C value to ASCII string SC */
-    printf( "a = %s;\n", sa ); /* c = 0b10110111; */
-    printf( "c = %s;\n", sc ); /* c = 0b01101110; */
-    printf( "carry      = %d;\n", __mpu_gtc() );  /* Carry Flag    */
-    printf( "overflow   = %d;\n", __mpu_gto() );  /* Overflow Flag */
+    printf( "a = %s;\\n", sa ); /* c = 0b10110111; */
+    printf( "c = %s;\\n", sc ); /* c = 0b01101110; */
+    printf( "carry      = %d;\\n", __mpu_gtc() );  /* Carry Flag    */
+    printf( "overflow   = %d;\\n", __mpu_gto() );  /* Overflow Flag */
   }
 
   __mpu_free_context();