#include <iostream>
// Function that adds to integers and returns the result.
int add(int num1, int num2)
{
return (num1+num2);
}
int main()
{
// This variable will hold our return value
int returnValue;
// Call the inline assembler
// Note that the standard code in C/C++ to achieve the same
// result is simply "int returnValue = add(16, 10);".
__asm
{
// Push parameters on to the stack (arguments pushed in
// right to left order using the standard cdecl calling convention)
push 10
push 16
// Call the add function
call add
// We should now restore the stack pointer. We have pushed two
// values on to the stack, each element on the stack
// takes up 4 bytes (32 bits), so we need to increment
// the stack pointer 8 places.
add esp, 8
// The cdecl calling convention puts the return value in the EAX register
// so we move the value stored in EAX into our returnValue variable
mov returnValue, eax
}
// Output the result
std::cout << "Return value = " << returnValue;
std::cin.get();
return 0;
}
Artikel Terkait:
Belajar Struktur Data
- Class Inheritance
- Recursion Shortest Function to Reverse a String
- Calculator (C++)
- Class Bilangan [Bahasa C++]
- Struktur Data Tree (Pohon)
- Struktur Data Queue (Antrian)
- Struktur Data Stack
- Jawaban Pretest & Post Test Praktikum IV (Struktur Data)
- Laporan Praktikum II Struktur Data
- Laporan Diskusi Minggu II
- Pemrograman Dasar C++
- Abtrak Data Type
Laporan Praktikum Algoritma dan Pemrograman
- Class Inheritance
- OOP Recursive Decent Parsing III
- OOP Recursive Decent Parsing I
- Vector
- Recursion
- Recursion Shortest Function to Reverse a String
- Recursive Format numbers with commas
- Recursive Function
- Algoritma Menentukan Tahun Kabisat
- Algoritma dan Class Bilangan Prima
- Class Luas Lingkaran dan Volume Bola With Jeliot
- Struktur Pemilihan
Algoritma dan Pemrograman
- Class Inheritance
- OOP Recursive Decent Parsing III
- OOP Recursive Decent Parsing II
- OOP Recursive Decent Parsing I
- Calculate Sequebce by Using Iterative Function
- A Comparison of Sorting Algorithms
- Typical data sequences for testing sorting algorithms
- Quicksort Algorithm
- Vector
- Function to reverse an integer array
- Array
- String Contains function
- RECCURENCE RELATION
- Recursion
- Recursion Shortest Function to Reverse a String
- Calculator (C++)
- Recursive Format numbers with commas
- Recursive Function
- Algoritma Menentukan Tahun Kabisat
- Algoritma dan Class Bilangan Prima
- Class Luas Lingkaran dan Volume Bola With Jeliot
- Class Bilangan [Bahasa C++]
- Struktur Perulangan (Lanjutan)
- Struktur Perulangan
Comments :
0 comments to “Calling functions with Inline Assembly”
Post a Comment