Convert the following C++ program into an x86 assembly language program. Make sure to use your “Chapter 8” understanding of advanced functions, parameter passing, and local variables. Post ONLY your ASM file here to Blackboard when complete.

 
QUESTION 1

Convert the following C++ program into an x86 assembly language program.
Make sure to use your “Chapter 8” understanding of advanced functions, parameter passing, and local variables.
Post ONLY your ASM file here to Blackboard when complete.#include <iostream>

using namespace std;

int IsSemifauxtrifactored(int value)
{
    // Return 1 if a number’s factors/divisors from (value – 1) to 1 sum up to half the number value
    // Return 0 otherwise

    // A number is called “semifauxtrifactored” if its summed factors/divisors equal half the number itself
    // Integer division is used, so remainders on the halving can be lost
    // That’s why…
 
    // 9 is a semifauxtrifactored number
    // 9 cut in half with integer division is (9 / 2) = 4
    // 9 % 8 -> 1
    // 9 % 7 -> 2
    // 9 % 6 -> 3
    // 9 % 5 -> 4
    // 9 % 4 -> 1
    // 9 % 3 -> 0   FACTOR!
    // 9 % 2 -> 1  
    // 9 % 1 -> 0   FACTOR!
    // 9 is a semifauxtrifactored number since its factors (1 + 3) equal half the number (4)

    // 6 is a normal number
    // 6 cut in half with integer division is (6 / 2) = 3
    // 6 % 5 -> 1
    // 6 % 4 -> 2
    // 6 % 3 -> 0   FACTOR!
    // 6 % 2 -> 0   FACTOR!  
    // 6 % 1 -> 0   FACTOR!
    // 6 is a normal number since its factors (1 + 2 + 3) do not equal half the number (3)
}

int main()
{
    cout << “Enter a value: “;
    int value;
    cin >> value;
    value = IsSemifauxtrifactored(value);
    if (value == 1)
    {
 cout << “The number is semifauxtrifactored!”;
    }
    else
    {
 cout << “The number is normal”;
    }

    cout << endl;
    system(“PAUSE”);
}

Place your order
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our Guarantees

Money-back Guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism Guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision Policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy Policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation Guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more