News and Materials Headline Animator
Sunday, June 6, 2010
Program to interface DAC using 8255 and generate square waveform
Program to interface DAC using 8255 and generate square waveform
The following is the assembly language using DAC to interface with 8255 and generate a square wave on CRO. Here in the code, we use two delay elements one for the rising part of the wave and the other delay element to reach zero i.e decrement. Certain value chosen is delayed or sustained for a time period to form the square wave. The two loops used in the program are iterated to repeat cycles of a square wave.
Code:
MOV DX,8807 : DX is loaded with control word register address of 8255
MOV AL,80
OUT DX,AL : Contents of AL are transferred to portA of 8255
MOV DX,8801 : DX is loaded with Port A address of 8255
Begin MOV AL,00
OUT DX,AL ; Contents of AL are transferred to portA of 8255
MOV CX,00FF
Delay1 Loop Delay1
MOV AL,FF
OUT DX,AL : Contents of AL are transferred to portA of 8255
MOV CX,00FF : CX is loaded with 00FFH
Delay2 Loop Delay2 : Repeat until CX=0
JMP Begin ; Repeat the same
The expected square wave can be observed as in the figure shown. Thus we programed in assembly language to interface DAC using 8255 to generate a square waveform.
Subscribe to:
Post Comments (Atom)
Popular Posts
-
APPARATUS:- Microprocessor trainer kit, ADC kit, power supply, data cable etc THEORY:- Stepper motor is a device used to obtain an accurate...
-
Line follower is an autonomous robot which follows a particular line of particular width. Its direction is determined by the direct...
-
Program to interface DAC using 8255 and generate square waveform The following is the assembly language using DAC to interface with 8255 a...
-
Gate Paper1 Q.1 - Q.20 Carry One Mark Each 1. If E denotes expectation, the variance of a random variable X is given by 2. The fol...
-
RF Antenna Basics Electromagnetic waves and antenna basics Radio signals are a form of electromagnetic wave, a...
-
We don’t want to imply that Rajnikanth’s jokes are more famous than his movies. But let’s face it how many Rajni movies have you actually se...
-
It's Technical Event at Aditya Engineering College,East Godavari District,Andhra Pradesh ,India SEP 14th 2010 to SEP 18th 2010 ...
-
Apple’s iPhone 4 was labeled as the smartest phone ever. But it might not be for everyone. If you are not going the Apple way, then there a...
-
Two class seven students allegedly mixed poison into a water tanker in their school to get their holidays extended on Monday at Bhirtana ...
No comments:
Post a Comment