Zero flag, Assembly Language

Assignment Help:

Zero flag:

The next line compares the value in register. A with the value 1. If they are equivalent, the Zero flag is set (to 1). The next line then jumps to start: only if the Zero flag is not set, i.e.: the value in reg. A is not 1 therefore the switch was not pressed. Therefore the program will keep looping until the switch is pressed.

If the switch is pressed then the penultimate line writes down the value 1 to the accumulator, thus bit 0 = 1, and the LED comes on.

The last line jumps back to start. It completes the loop of reading the switch and writing to the LED.

This specific problem could have been solved out with just a switch connected to an LED, as a light is linked to a wall switch in your house. But along with a microprocessor in the loop, much more could be done. We could have a clock that also turns on and off the LED depend on time. Or we could monitor the temperature and turn the LED on and off depend on what temperature it is. Or we could monitor various switches and turn the LED on and off depend on a combination of switches, etc. This is up to the imagination what may be controlled.

In the above instance we supposed that the other bits of ports 0 and 1 were all zeros. But in realism, each bit could have a function assigned to them. Then we would have to look only at bit 0 in port 0 and bit 0 in port 1. It further complicates the problem. Also, we suppose that port 0 was previously described as an input port whereas port 1 was defined as an output port.

In assembly we can assign a name to a port and refer to it by that name, rather than port 0 or port 1. It is done with an equate directive. Directives are assembler commands which don't result in program but instead instruct the assembler to some action. All of the directives start with a period.

.equ switch, 0  ;port 0 is now called switch

.equ LED,1       ;port 1 is now called LED

start :   IN         switch  ; read Port 0 into reg. A

CMP    1          ; compare reg. A with the value 1

JNZ      start     ; jump to start if the comparison does not yield 0

OUT     LED      ; send a 1 to Port 1, turning the LED on

JMP     start

It has the same result as the earlier program. Also equate only need to be made once at the start of the program, and thereafter the name or label is utilized instead of the port number. It makes things much simpler for the programmer. All equates should be defined before they are used in a program. It holds true for labels also. Another advantage of naming ports with equate is that if, later on in the design process, you decide to utilizes a different port for the LED or the switch, only the equate has to be changed, not the program itself.

Please note down that comments are extremely important. While you initially write a program, the tendency is not to write much in the comment field because you're in a hurry. But if you need to come back to it a few weeks later, it is much simple to understand what you've written if you've taken the time to write down good comments. Also good comments help out in debugging process.


Related Discussions:- Zero flag

2 homework assignements, I have two homework assignments due in 10 hours fo...

I have two homework assignments due in 10 hours for the x86 processor assembly language

Segmentation, segmentation and overlapping in assemble language

segmentation and overlapping in assemble language

Rics/cisc architecture-microprocessor, RICS/CISC Architecture An essent...

RICS/CISC Architecture An essential aspect of computer architecture is the design of the instruction set for the processor.  The instruction set selected for a specific compute

Assume-assemblers directive-microprocessor, ASSUME: Assume Logical Segment...

ASSUME: Assume Logical Segment Name:- The ASSUME directive which is used to inform the assembler, the specified names of the logical segments to be consider for different segme

Minecraft/Terminal issues, I am running a small minecraft server off of my ...

I am running a small minecraft server off of my old mac mini, and am having a big issue. My computer isn''t very good, and even just running this server is an issue. I use a comma

Interrupt priority management-microprocessor, Interrupt Priority Management...

Interrupt Priority Management The interrupt priority management logic indicated in given figure can be implemented in several ways. It does not required to be present in system

Lods-stos-string manipulating instruction-microprocessor, LODS : Load Stri...

LODS : Load String Byte or String Word:- The LODS instruction loads AL/AX register by the content of a string pointed to by DS:SI register pair. The SI is automatically modifie

LAB homework, 1. Write a program that calculates the Fibonacci series: 1, 1...

1. Write a program that calculates the Fibonacci series: 1, 1, 2, 3, 5, 8, 13, ….. (Except for the first two numbers in the sequence, each number is the sum of the preceding two n

Program to perform a conversion on characters in a text file, Write an asse...

Write an assembly language program to perform a rot13 1 conversion on characters in a text file.  The program should read charatcers from the input file, perform the rot13 convers

Short-type-global-assemblers operator-microprocessor, SHORT  : The  SHO...

SHORT  : The  SHORT operator denoted to the assembler that only one byte is needed to code the displacement for a jump (for example displacement is within -128 to +127 bytes fr

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