Advertisement
EvgeniiKraaaaaaaav

asm 3.10 ASM

May 4th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.35 KB | None | 0 0
  1. //https://vk.com/evgenykravchenko0
  2.  
  3.                 ___                                        ___                   ___    
  4.                /  /\                  ___                 /  /\                 /  /\    
  5.               /  /:/_                /__/\               /  /:/_               /  /:/_  
  6.              /  /:/ /\               \  \:\             /  /:/ /\             /  /:/ /\  
  7.             /  /:/ /:/_               \  \:\           /  /:/_/::\           /  /:/ /:/_
  8.            /__/:/ /:/ /\          ___  \__\:\         /__/:/__\/\:\         /__/:/ /:/ /\
  9.            \  \:\/:/ /:/         /__/\ |  |:|         \  \:\ /~~/:/         \  \:\/:/ /:/
  10.             \  \::/ /:/          \  \:\|  |:|          \  \:\  /:/           \  \::/ /:/
  11.              \  \:\/:/            \  \:\__|:|           \  \:\/:/             \  \:\/:/  
  12.               \  \::/              \__\::::/             \  \::/               \  \::/  
  13.                \__\/                   ~~~~               \__\/                 \__\/    
  14.                             ___                                            
  15.                            /__/\                ___                 ___    
  16.                            \  \:\              /  /\               /  /\    
  17.                             \  \:\            /  /:/              /  /:/    
  18.                         _____\__\:\          /__/::\             /__/::\    
  19.                        /__/::::::::\         \__\/\:\__          \__\/\:\__
  20.                        \  \:\~~\~~\/            \  \:\/\            \  \:\/\
  21.                         \  \:\  ~~~              \__\::/             \__\::/
  22.                          \  \:\                  /__/:/              /__/:/
  23.                           \  \:\                 \__\/               \__\/  
  24.                            \__\/                      
  25.  
  26. #include "pch.h"
  27. #include <stdio.h>
  28. #include <locale.h>
  29. #include <cstdlib>
  30. int main()
  31. {
  32.     setlocale(LC_ALL, "rus");
  33.  
  34.     short number;
  35.  
  36.     printf_s("Enter number: \n");
  37.     scanf_s("%hi", &number);
  38.  
  39.     _asm
  40.     {
  41.             mov ax, number
  42.  
  43.             xor bx, bx
  44.             mov ecx, 8
  45.  
  46.         reverse :
  47.  
  48.             shl bl, 1
  49.             shr al, 1
  50.             jnc next
  51.             add bl, 1
  52.  
  53.         next :
  54.             loop reverse
  55.  
  56.             mov al, bl
  57.             and al, ah
  58.             xor ah, ah
  59.             mov number, ax
  60.     }
  61.  
  62.     printf_s("Полученное число: %hi \n", number);
  63.  
  64.  
  65.     system("pause");
  66.     return 0;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement