Create a HACK program Div.asm

1 min read

Create a HACK program Div.asm that performs integer (Euclidean) division (see hereLinks to an external site. and hereLinks to an external site. for explanations and examples). Your program should divide the dividend stored in R0 by the divisor stored in R1 and put the quotient in R2 and the remainder in R3. If an exception division condition is encountered, then R2 (quotient) should be set to 0 and R3 (remainder) should be set to -1 if a non-zero divide by 0 is encountered or to -2 if 0 divide by 0 (NaN) is encountered. Your program should assume input registers R0 (dividend) and R1 (divisor) have already been loaded with values and should not modify them. For readability, your program should use the following self-explanatory variables which will need to be either loaded from the input registers R0 (dividend) and R1 (divisor) or copied into the output registers R2 (quotient) and R3 (remainder): dividend, divisor, quotient, and remainder.
Below is some pseudocode you may use to develop your program (note that the switch construct is used for clarity and the numbers in parentheses beside the cases could be convenient in the Hack language for identifying those cases).

Popular Posts
01
2024 KCSE Results to Be Released Next Week, Confirms Education CS Ogamba

2024 KCSE Results to Be Released Next Week, Confirms Education CS Ogamba

Getting Started
02
University of Johannesburg (UJ) Online Application 2025: Complete Guide for Undergraduate Students

University of Johannesburg (UJ) Online Application 2025: Complete Guide for Undergraduate Students

Getting Started
03
Mpesa Transaction Charges Calculator 2024

Mpesa Transaction Charges Calculator 2024

Getting Started
04
Best-Selling Books in Kenya of 2023: A Literary Journey

Best-Selling Books in Kenya of 2023: A Literary Journey

Getting Started
05
The Idea that Snuck Up on Me: An Exclusive Guest Post from Beth Lincoln, Author of The Swifts, the Overall Winner of Our 2023 Children’s and YA Book Awards

The Idea that Snuck Up on Me: An Exclusive Guest Post from Beth Lincoln, Author of The Swifts, the Overall Winner of Our 2023 Children’s and YA Book Awards

Getting Started
06
Maternity Pants, Nursery Bras, Baby Shower Dresses, Breastfeeding Bras, Pregnancy Workout Gear: Best Shops and Prices in Kenya

Maternity Pants, Nursery Bras, Baby Shower Dresses, Breastfeeding Bras, Pregnancy Workout Gear: Best Shops and Prices in Kenya

Getting Started