Add two five-byte numbers using arrays, Marketing Management

Assignment Help:

Program: Add two five-byte numbers using arrays

; ALGORITHM:

;           Make count = LEN

;           Clear the carry flag

;           Load address of NUM1

;           REPEAT

;                       Put byte from NUM1 in accumulator

;                       Add byte from NUM2 to accumulator + carry

;                       Store result in SUM

;                       Decrement count

;                       Increment to next address

;           UNTIL count = 0

;           Rotate carry into LSB of accumulator

;           Mask all but LSB of accumulator

;           Store carry result, address pointer in correct position.

; PORTS   : None used

; PROCEDURES: None used

; REGISTERS: Uses CS, DS, AX, CX, BX, DX

DATA SEGMENT

                        NUM1 DB 0FFh, 10h ,01h ,11h ,20h

                        NUM2 DB 10h, 20h, 30h, 40h ,0FFh

                        SUM DB 6DUP (0)

DATA ENDS

                        LEN EQU 05h; constant for length of the array

CODE SEGMENT

                        ASSUME CS: CODE, DS: DATA

START:           MOV AX, DATA; initialise data segment

                        MOV DS, AX; using AX register

                        MOV SI, 00; load displacement of 1stnumber.

                                                ; SI is being used as index register

                        MOV CX, 0000; clear counter

                        MOV CL, LEN; set up count to designed length

                        CLC   ; clear carry. Ready for addition

AGAIN:          MOV AL, NUM1 [SI]; get a byte from NUM1

ADC AL, NUM2 [SI]; add to byte from NUM2 with carry

MOV SUM [SI], AL; store in SUM array

INC SI

LOOP AGAIN; continue until no more bytes

RCL AL, 01h; move carry into bit 0 of AL

AND AL, 01h; mask all but the 0th bit of AL

MOV SUM [SI], AL; put carry into 6th byte

FINISH:          MOV AX, 4C00h

INT 21h

CODE             ENDS

END START


Related Discussions:- Add two five-byte numbers using arrays

What is the average sales price, Your company has the opportunity to set up...

Your company has the opportunity to set up a SBU to manufacture solar panels. Your company's cash flow is very tight so you want to be sure that this endeavor will at least pay fo

Production scheduling system, Create a context and Level 0 diagram for a Cl...

Create a context and Level 0 diagram for a Clothing store production scheduling system. The purpose of the production scheduling system is to respond to the Production order(sub

Pigeonhole principle, A binary relation R from A to B is said to be a funct...

A binary relation R from A to B is said to be a function if for every element a in A, there is a unique element b in B so that (a, b) is in R. For a function R from A to B, instead

Innovation, Innovation Any modernizing modification in a process or pro...

Innovation Any modernizing modification in a process or procedure which is increases the efficiency of that process or procedure.  Information technology has been the catalyst

Give a documentary, (a) Show one movie genre of particular interest to you ...

(a) Show one movie genre of particular interest to you and give examples from relevant films to illustrate the conventions used. To what extent do you think that genre conventions

Characteristics of consumer behavior, Question 1: (a) What do you mean...

Question 1: (a) What do you meant by "consumer behavior"? (b) Show characteristics of consumer behavior. Question 2: (a) What are "attitudes"? (b) Show characte

Market or market segment , Michael Porter's Five Forces model is as applica...

Michael Porter's Five Forces model is as applicable today as when it was introduced. Select a market or market segment (jeans, cell phones, etc) and using Michael Porter's model, c

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd