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, 3 insertions, 3 deletions
diff --git a/man/circular-shifts.3mpu b/man/circular-shifts.3mpu
index fc59829..d73781a 100644
--- a/man/circular-shifts.3mpu
+++ b/man/circular-shifts.3mpu
@@ -184,9 +184,9 @@ int main( void )
     icpy( pz, c, NB_I8, NB_I8 ); /* high part of Z */
 
     iitoa( s, z, RADIX_BIN, UPPERCASE, NB_I16 ); /* convert Z value to ASCII string S */
-    printf( "z = %s;\n", s ); /* z = 0B0111000101111110; */
-    printf( "carry    = %d;\n", __mpu_gtc() );  /* Carry Flag    */
-    printf( "overflow = %d;\n", __mpu_gto() );  /* Overflow Flag */
+    printf( "z = %s;\\n", s ); /* z = 0B0111000101111110; */
+    printf( "carry    = %d;\\n", __mpu_gtc() );  /* Carry Flag    */
+    printf( "overflow = %d;\\n", __mpu_gto() );  /* Overflow Flag */
   }
 
   __mpu_free_context();