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

Jumpin jack flash (Case from Management Study ), Do you think Jack is equi...

Do you think Jack is equipped with the managerial skills needed to head up a team that develops strategies for adapting existing company products into new products for sales

Factors affecting marketing planning, Factors affecting marketing planning:...

Factors affecting marketing planning: a large number of factors affect the long term marketing planning. These factors can be grouped under four categories: Internal factors:

Searching reasons of distribution channels, How is searching the reasons of...

How is searching the reasons of distribution channels in economics system? Searching: Buyers and sellers are constantly engaged within search for consummation of required

Image and voice of nursing, Purpose: The purpose of this paper is for the ...

Purpose: The purpose of this paper is for the student to reflect on the historical and current image and voice of nursing and the profession of nursing are affected. The student w

Concept of marketing information system, Concept Of Marketing Information S...

Concept Of Marketing Information System: marketing information system (MKIS) is an orderly procedure for the regular collection of raw data both internally and externally and the

Define the position on benefits for positioning, Define the Position on Ben...

Define the Position on Benefits for Positioning. Position on Benefits: This approach and strategy is closely associated to prior one. Here product is positioned upon its

Explain existence of marketing as indispensable activity, Explain about exi...

Explain about existence of marketing as an indispensable activity. Existence of Marketing: Marketing is as old as mankind that a young child trying to persuade his mother

Market segmentation, Market Segmentation This provides to the procedure...

Market Segmentation This provides to the procedure of breaking the mass market up into discernible subgroups, where each subgroup has obvious demographic and another identifiab

Selling and sales management , The assessment for this module is to produce...

The assessment for this module is to produce the elements of a sales plan. The case study assesses your understanding and ability to construct a sales presentation plan and correct

Henry Assael Model, Explain Henry Assael Model of buying decision behaviour...

Explain Henry Assael Model of buying decision behaviour along with the diagram”.

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