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:
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();