Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- int a, b, c, d, res_c, res_asm = 0;
- cout << "This program calculates ((a * b * c) + 5) / (d - 1)" << endl;
- cout << "Input only 16bit numbers!" << endl;
- cout << "Input a: ";
- cin >> a;
- cout << "Input b: ";
- cin >> b;
- cout << "Input c: ";
- cin >> c;
- cout << "Input d: ";
- cin >> d;
- res_c = a * b * c + 5;
- res_c /= d - 1;
- __asm {
- mov eax, a
- mov ebx, b
- mul ebx
- mov ebx, c
- imul ebx
- add eax, 5
- mov ebx, d
- sub ebx, 1
- idiv ebx
- mov res_asm, eax
- }
- printf("Result c++: %d\nResult asm: %d\n", res_c, res_asm);
- system("pause");
- return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement