1. Program for division of two 8-bit numbers. Assume the numbers are perfectly divisible.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;<Program for division of two numbers, assuming | |
;the numbers are perfectly divisible. > | |
jmp start | |
;code | |
start: lda 5001h | |
mov b,a | |
lda 5002h | |
mvi c,00h | |
loop1: inr c | |
sub b | |
jnz loop1 | |
hlt |
2. Program for division of two 8-bit numbers. Store the result in terms of quotient and remainder.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;<Program for division of two numbers, result is | |
;stored in terms of quotient and remainder. > | |
jmp start | |
;code | |
start: lda 5001h | |
mov b,a | |
lda 5002h | |
mvi c,00h | |
loop1: inr c | |
sub b | |
jnc loop2 | |
dcr c | |
add b | |
jmp loop3 | |
loop2: jnz loop1 | |
loop3: sta 5003h ; Remainder | |
mov a,c | |
sta 5004h ; Quotient | |
hlt |
No comments:
Post a Comment