Lab 11
Lab 11
Lab 11
32-bit Inline Assembly Language Programming in Visual Studio
Learning outcome
Addressing Modes
The addressing modes are the same.
In the 80386 and above, any register from EAX, EBX, ECX, EDX, EBP, EDI, ESI may be used in register
indirect addressing mode. (Example: The MOV [EDX], CL instruction copies the byte sized contents of
register CL into the data segment memory location addressed by EDX)
In the 80386 and above, any two registers from EAX, EBX, ECX, EDX, EBP, EDI, or ESI may be combined
to generate the memory address. (Example: The MOV [ EAX+EBX], CL instruction copies the byte sized
contents of register CL into the data segment memory location addressed by EAX plus EBX.)
The 80386 and above use any 32-bit register except ESP to address memory. (Example: MOV AX, [ECX]
or MOV AX, ARRAY[EBX]. The first instruction loads AX from the data segment address formed by ECX
plus 4. The second instruction loads AX from the data segment memory location ARRAY plus the contents
of EBX.
The__asm keyword invokes the inline assembler and can appear wherever a C or C++ statement is legal.
It cannot appear by itself. It must be followed by an assembly instruction, a group of instructions enclosed
in braces, or, at the very least, an empty pair of braces.
Example
__asm mov eax,ebx
or
__asm
{
Mov eax,ebx
Example#1: Program to add two integer numbers using the inline assembly.
#include<iostream>
using namespace std;
int main(void)
{
int a = 10, b = 20, c = 0;
__asm
{
mov ebx,a
add ebx,b
mov c,ebx
}
cout << "Sum of " << a << " and " << b << " is " << c << endl;
Example#2: Program to access array using inline 32-bit assembly. Both codes are incrementing every
element of the array.
#include<iostream> #include<iostream>
using namespace std; using namespace std;
Example#3: Program to rotate right each element of the array using 1) C++ and 2) inline assembly.
Observe that assembly language makes our task simpler.
}
cout << "(" << i << "," << j << ")" << "->" << array1[i][j] << endl;
}
}
Computer Organization and Assembly Language
Step#4: Write your project name (e.g., Myproject) and click on Create
Step#5: Right click on project name (i.e., Myproject) → Build Dependencies →Build Customizations
Computer Organization and Assembly Language
Step#7: Click in “C++ File (.cpp) , write a file name and click on Add.
Step#8: Paste code in Example#1 in the text window. Make sure that the environment is set to x86.
Computer Organization and Assembly Language
Step#4:
a) Click on Debug→Windows→Registers (to view status of registers)
b) Click on Debug→Windows→Disassembly (to view assembled code)
c) Click on Debug→Windows→Memory (to view memory)
Practice Tasks
Task-1
Write a program in C++ that declares and initializes an integer array of 5 elements. The program then swaps
the least and most significant bytes and the nibbles of the second byte of each element of the array using
inline assembly language programming.
Task-2
Write a program in C++ that declares and initializes an integer array of 5 elements. The program then rotates
the least significant byte (i.e., byte #0) and most significant byte (i.e., byte #3) to the left and the byte #1
and byte #2 to the right of each element of the array using inline assembly language programming.