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 8123141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T06:04:38+00:00 2026-06-06T06:04:38+00:00

Write a NASM macro: divide, which has 2 arguments, which specify unsigned integers in

  • 0

Write a NASM macro: divide, which has 2 arguments, which specify unsigned integers in any addressing mode. The macro computes the ceiling of its first argument, divided by its second argument, and places the result in register edx. If the second argument is 0 (to be tested at runtime), the result should be 0, and a message “divide by zero” should be printed to stdout.

How can I tell which is which, so we can handle each case?
(;The address modes are: register, memory, and immediate.)

edit:
this is the final code i wrote:
how to write this code without labels? (position indepen code):

%macro divide 2

section .rodata
        LC1: DB "divide by zero ", 10, 0

section .text

  mov eax, %1
  mov ebx, %2
  cmp ebx, 0 ; divide by zero
  jne rest1
  push LC1
  call printf
  add esp,4
  mov edx, 0
  jmp end1

rest1:
  mov edx, 0
  div ebx
  add eax, edx
  mov edx , eax ; the result should be in edx

end1:
 %endmacro
  • 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-06-06T06:04:39+00:00Added an answer on June 6, 2026 at 6:04 am

    You don’t need to tell which is which. Loading a general-purpose register such as EAX is possible with the MOV instruction from any location (another register, memory, immediate constant). Take advantage of that.

    EDIT:

    To make it even more clear, this is how you could write a macro like that:

    %macro mydiv 2
      mov eax, %1
      mov ebx, %2
      mov edx, 0
      div ebx
    %endmacro
    

    And this is how you would use it:

      mydiv 3, 2 ; 2 immediate operands
    
      mov ebx, 15
      mov ecx, 3
      mydiv ebx, ecx ; 2 register operands
    
      mydiv [dividend], [divisor] ; 2 memory operands
    
    ...
    
      dividend dd 42
      divisor  dd 6
    

    Of course, the way the macro is defined imposes certain restrictions on where the division operands can be located. For instance, operand 2 (divisor) cannot be in EAX because mov ebx, eax would load EBX with operand 1 (dividend) since the preceding instruction mov eax, %1 would put the dividend into EAX.

    You can work around that by using the stack:

    %macro mydiv2 2
      push  ebx
      push  %1
      push  %2
      pop   ebx
      pop   eax
      mov   edx, 0
      div   ebx
      pop   ebx
    %endmacro
    

    This macro will accept the divisor and dividend from any registers just fine and it won’t trash EBX. The only (minor) problem with it will be when your operand(s) is/are in memory and addressed relative to ESP, e.g.:

    mydiv2 eax, [esp+8]
    

    Those pushes change ESP and that has to be accounted for.

    EDIT2:

    There’s one caveat with mydiv2… It will push immediate constants (such as 123) as 16-bit in 16-bit mode and 32-bit in 32-bit mode but will pop them as 32-bit ones. To make mydiv2 work in 16-bit mode you’d need to prefix the immediate constants with dword:

      mydiv2 dword 3, dword 2 ; 2 immediate operands
    

    You can now implement the rest of the needed functionality in the macro.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Write a NASM macro: divide, which has 2 arguments, which specify unsigned integers in
Write a predicate sorted(L) which tests whether a list of integers is sorted, [n1,n2,...,nk]
Write a function lv: cfg -> (blabel -> ide set) , which computes the
Write a function which has: input: array of pairs (unique id and weight) length
I write the following program in NASM in order to practice offset, addressing, tables,
Write a function called swap which has a prototype of void swap (int&, int&);
Write a class ListNode which has the following properties: int value; ListNode *next; Provide
I wanted to write something basic in assembly under Windows. I'm using NASM, but
write a script that takes two optional boolean arguments,--verbose‚ and ‚--live, and two required
I write daemon which use for DB SQLAlchemy. Database MySQL. If daemon idle long

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.