This assignment is to help you understand the basics of IA-32 assembly language
ID: 3541288 • Letter: T
Question
This assignment is to help you understand the basics of IA-32 assembly language programming, including program structure, memory allocation in a data segment, addressing modes and instructions for data transfers. You will also learn how to use an IDE such as Visual Studio to edit and debug assembly language programs.
Given the data below, you are to design an IA-32 assembly language program to reverse the order of members in the array X and save the new array in A.
X sdword 100,200,-100,-200,150,-150,300,250
A sdword ?
Explanation / Answer
Basic Elements of Assembly Language