Q4 Two wordwide signed integers are stored at the physical m
     Q4) Two word-wide signed integers are stored at the physical memory addresses 00A00 and 00A02 respectively. Write a assembly program for IA-32 that computes and stores their sum, difference, product, and quotient (result of division). Store these results at consecutive memory locations starting at physical address 00A10 the in memory. To obtain the difference subtract the integer at 00A02 from the integer at 00A00. For the division, divide the integer at 00A00 by the integer at 00A02.  
  
  Solution
Now Assuming that the data is stored in memory location 00A00 and 00A02 consecutively...Exchange the msgi and msg2 with the memory locations to perform the respective operations. now the result is stored in result which can be replaced by the specified memory location.

