Loops and subroutines, Electrical Engineering

Assignment Help:

1.....If viewing this through the Assignment tool, click the title above to go to the Submissions area.

Introduction

The purpose of this experiment is to examine the operation of loops and their close equivalent, subroutines.

Procedure

1. How many times does each loop execute?

2. Assemble and link to create LOOPS.EXE. Run the program.

3. Comment out the PUSH AX and POP AX instructions. Re-assemble, link, and run. Comment on any changes. Explain how the changes, if any, occurred.

4. Put the PUSH AX and POP AX instructions back in.

5. Take instructions from inside the loop and place them in a subroutine (or procedure). Thus, the loop will call the subroutine once each pass. Only instructions that directly control the looping should stay.

6. Assemble, link, and run the program. You should get the same results. Email the final ASM file.

7. Assemble and link to create LOOPS2.EXE. Run the program. Explain why the loop pass counter value shown is correct.

8. This file contains errors! Edit the file to correct the errors, then assemble, link, and run. Warning! The program may assemble and link correctly and still have errors that may crash your DOS window. The correct result in AL is 7.

9. Submit your findings.

Downloaded copy of Program LOOPS.ASM: Count the number of passes through a loop.

;

        .MODEL SMALL

        .DATA

LOOPS   DW    ?

MSG     DB    'The number of loop passes is '

TENTHOS DB    ?

THOUS   DB    ?

HUNS    DB    ?

TENS    DB    ?

ONES    DB    ?

        DB    0DH,0AH,'$'

 

        .CODE

        .STARTUP

        MOV   AX,0      ;clear loop pass counter

;

;place user loop code here.

;Make sure INC  AX is inside the innermost loop.

;

        MOV   BX,0FF98H

BAK:    PUSH  AX

        MOV   CX,1234H

        MOV   DX,5678H

        XOR   CX,DX

        MOV   AX,9ABCH

        XOR   CX,AX

        POP   AX

        INC   AX                ;increment loop pass counter

        DEC   BX

        JNZ   BAK

;

;end of user loop code

;

        MOV   LOOPS,AX          ;display the loop pass counter

        CALL  BTOD

        LEA   DX,MSG 

        MOV   AH,9

        INT   21H

        .EXIT

 

BTOD    PROC  FAR

        MOV   AX,LOOPS    ;load binary input value

        SUB   DX,DX

        MOV   BX,10000

        DIV   BX                ;get 10,000s digit

        ADD   AL,30H

        MOV   TENTHOS,AL

        XCHG  AX,DX

        SUB   DX,DX

        MOV   BX,1000           ;get 1,000s digit

        DIV   BX

        ADD   AL,30H

        MOV   THOUS,AL

        XCHG  DX,AX

        MOV   BL,100

        DIV   BL          ;get hundreds digit

        ADD   AL,30H      ;convert into ASCII digit

        MOV   HUNS,AL     ;and save

        XCHG  AL,AH       ;get remainder

        SUB   AH,AH       ;prepare for division by 10

        MOV   BL,10

        DIV   BL          ;get tens digit

        ADD   AL,30H      ;convert into ASCII digit

        MOV   TENS,AL     ;and save

        ADD   AH,30H      ;convert ones digit into ASCII

        MOV   ONES,AH     ;and save

        RET

BTOD    ENDP

        END


Related Discussions:- Loops and subroutines

Guidelines from electricity regulatory commission, Guidelines from Electric...

Guidelines from Electricity Regulatory Commission The electricity companies have successfully adopted the guidelines issued through ERCs Utilities usually set their yearly KP

Evaluate discrete-time signal, Consider the following signals, sketch each ...

Consider the following signals, sketch each one of them and comment on the periodic nature: (a) x(t) = A cos(2πf 0 t + θ), where A, f 0 , and θ are the amplitude, frequency, and

Analogue electric assignment, i have assignment about wien bridge oscillato...

i have assignment about wien bridge oscillator i need help to how to degsin the circuit using ltpsic

Stakeholders - legal requirements for distribution licensees, Stakeholders ...

Stakeholders - Legal Requirements for Distribution licensees There have to be consultations among several stakeholders such as the licensees, the governments, consumers, gener

Full wave rectifiers, how to determine the peak inverse voltage across idea...

how to determine the peak inverse voltage across ideal diodes

Analog & Digital Filtering, 1) Assume that we are given the continuous-time...

1) Assume that we are given the continuous-time signal xa (t) = xa1 (t) + xa2 (t) + xa3 (t), where, xa1 (t) = 2 + cos3 (2pf1 t + p 3 ) + 2 cos(2pf2 t), xa2 (t) = 2 cos(2pf3 t)

Magnetic circuits, a cast steel has minimun diameter of 200 mm and a cross...

a cast steel has minimun diameter of 200 mm and a cross sectional area of 250/1000000 m . calclate the mmf to produce a flux of300/1000000 Wb.

Find the current, 1. A 1 μm long and 100 μm 2 cross-sectional area silicon...

1. A 1 μm long and 100 μm 2 cross-sectional area silicon bar is doped with 10 16 /cm 3 phosphorous. Use the graph below to: a. Find the current at 300°K with 10 V applie

Find the induced armature voltage at rated load, Q. A50-kW, 230-Vcompound g...

Q. A50-kW, 230-Vcompound generator has the following data: armature-circuit resistance 0.05 , series-field circuit resistance 0.05 , and shunt- field circuit resistance 125 . As

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