Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6885027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:35:00+00:00 2026-05-27T05:35:00+00:00

I tried to write a program in Assembly that calculate operand_a + operand_b. My

  • 0

I tried to write a program in Assembly that calculate operand_a + operand_b.

My big problem if that operanda and operandb are representable in 16-byte (4 d-word). So I wrote this code:

mov eax, operanda
mov ebx, operandb
add eax, ebx

But than I understood that my operand is big than 32-bit.

I missed something?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T05:35:00+00:00Added an answer on May 27, 2026 at 5:35 am

    Define another variable, operandc, for the result.

    Then do long addition from the least significant dwords to the most significant dwords not forgetting about the intermediate carry’s:

    mov eax, dword ptr [operanda]
    add eax, dword ptr [operandb]
    mov dword ptr [operandc], eax
    
    mov eax, dword ptr [operanda+4]
    adc eax, dword ptr [operandb+4]
    mov dword ptr [operandc+4], eax
    
    mov eax, dword ptr [operanda+8]
    adc eax, dword ptr [operandb+8]
    mov dword ptr [operandc+8], eax
    
    mov eax, dword ptr [operanda+12]
    adc eax, dword ptr [operandb+12]
    mov dword ptr [operandc+12], eax
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i'm quite a beginner in C# , i tried to write a program that
I tried to write a function that calculates a hamming distance between two codewords
I've tried to write the smallest chunk of code to narrow down a problem.
I tried to write vertical text on my graphical program created in Processing with
I'm trying to write a program in Haskell that gets a list (of integer)
I have to write a program to find a rational number that has a
Today i tried to write a program which checks some checkboxes for me on
Question is: Write a program that reads data into an array of type int.
I'm trying to write a program that is just a little beyond my abilities.The
I'm trying to write a program that returns the number of characters in a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.