0
7.1kviews
Interface ADC 0808 with 8051 micrometer and write assembly language program to concert analog signal which is available on channel 03 to digital and store digital signal value of memory location 30H
1 Answer
0
220views
Label Instruction Comments
AGAIN ORG 0000H,M0V A, #00H,M0V P1, A,ACALL DELAY,M0V A, #OFFH,M0V P1, A,ACALL DELAY,SJMP AGAIN Analog signal to channel 3,0.5 ms delay,Output high
DELAY:,HERE: M0V Ro, #OFFH,DJNZ Ro, HERE,M0V 30H, A,RET,END -

enter image description here

Please log in to add an answer.