Write a program to build bcd countdown timer, Programming Languages

Assignment Help:

Many applications require entering a number from a button and then the device counts that number down.  If it is a 2 digit number it can be stored in a single register.  If it is larger a register pair can be used.  When a button is pressed the number associated with that number is put in the LSN of the register.  The MSN is usually 0.  In other words, if 5 is pressed on a microwave oven or a calculator, the number 05 is placed in a register of the microcomputer. 

If the sequence 5, 4, 3 and 2 were pressed each number would be stored in a separate register. 5 would be consider the most significant digit.  When the start button is pressed, the microcomputer consoldates the 5 and the 4 into a single register, and the 3 and the 2 into a single register.  The 5 in its register is shifted to the left by 4 bits placing it in the MSN of the register.  The 5 and 4 can now be placed in a single register.  Since one register has 50 and the other is 04, they can be scored together to produce 54 in a single register.  This procedure is repeated for the 3 and the 2. 

If 2 ASCII numbers were received via the com port on a pc, it is not as simple as above.  5 is 35h and 4 is 34h. The 3 must be stripped from the MSN, before the 5 is rotated to the MSN position and for 4 the 3 has to be stripped from the MSN position.  To do this of is ended with the 2 ASCII numbers.  This makes the MSN 0 and keeps the LSN as it was.

Another problem that occurs is that the DAA instruction does not work with subtraction.   This means that if 1 is subtracted from 10, the result will be 0fh.  A way around this is to test the result every time one is subtracted from it.  Some microprocessors have an instruction that will test one bit or a group of bits to see if they are 1's or 0's.  The 8085 does not have an instruction that will do this.  The MSN has to be stripped from the number and the LSN tested to see if it is f or not.  The short program below will do this:

Label   nmen   operand           comments

test      mov     h,a       ;save the result in h register

            ani       $0f       ;strip the MSN from the number

            cpi       $0f       ;test the LSN

             jz         fix        ;if the LSN is $0f, then go to fix

fix        mov     a,h       ;put the number in the a reg

            ani       $09      ;make the LSN 09, strip the MSN

            mov     l,a        ;save the LSN

            mov     a,h       ;move the number with f in it to the a reg

            ani       $f0       ;strip the LSN

            ora       l           ;combine the MSN and the LSN

            mov     h,a       ;save the number

246_Develop a BCD Countdown Timer.png

Write a program from the flowchart in the above.  Refer to previous experiments to write the program.  Test each stage after you write it, to make sure that it works properly.

 


Related Discussions:- Write a program to build bcd countdown timer

Develop a socket program in unix, Develop a socket program in UNIX/Linux th...

Develop a socket program in UNIX/Linux that uses (i) TCP as the transport protocol and  (ii) UDP as the transport protocol for transferring  a short message between a client and  s

Real distinct and 1 double eigenvalue with 1 eigenvector, Real Distinct and...

Real Distinct and 1 Double Eigenvalue with 1 Eigenvector From the real eigenvalue/vector pair, l 1 and ?h 1 , we find one solution, e l1 t ?h 1 By our work in the 2x

Fortran function for find and print out all prime number, Write a Fortran L...

Write a Fortran LOGICAL FUNCTION, called "is_prime", which determines if a given integer value is a prime number or not (A prime number is a natural number which has only two disti

Create proptotype of student management system, XYZ International is a larg...

XYZ International is a large Institute; Management in this institute wants to create Proper Student management System. There for they contact you and asked you to create Propto typ

Robot factory game, A deterministic finite automaton (DFA) is an abstract m...

A deterministic finite automaton (DFA) is an abstract machine that reads input from a serial (nonreversible) stream and changes between a finite number of  states according to the

Enter no of hours days months years contains pattern , Normal 0 ...

Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4

Applications of oop, Applications of OOP, The promising areas for applicati...

Applications of OOP, The promising areas for application of OOP include: Real-time systems Simulation and modelling Object-oriented databases Hypertext, hype

Find out starting address of stack segment, For the following Code answer t...

For the following Code answer the following questions-: .STACK 100H .DATA COUNT DB 10 TOTAL DW 4126H .CODE MAIN PROC MOV BX, 3F20H MOV AL, BL MOV BL, COUNT MOV

DOM - Document Object Model, What is DOM? The Document Object Model is a pl...

What is DOM? The Document Object Model is a platform- and language-neutral interface that will allow programs and scripts to dynamically access and update the content, structure an

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