answersLogoWhite

0

adc means addtion with carry Ex:ADC r (A)<---(A)+(r)+cy(Carry of previous addition)

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is the purpose of adc instruction according to 8085 microprocessor?

this instruction is used to add the specified register content to that of the accumulator along with the carry flag value. this instruction is used in processes which involve continuous addition.


What are the types of ADC?

Types Of ADC Are As follows: 1.Counter type ADC 2.Successive approximation type ADC 3.Flash Type ADC 4.Wilkinson type ADC


What is construction of digital oscilloscope?

A digital oscilloscope is primarily constructed of an analog-to-digital converter (ADC), a microprocessor, and a display unit. The ADC samples the incoming analog signals and converts them into digital data, which the microprocessor processes to analyze the waveform characteristics. The processed data is then displayed on the screen, often using a liquid crystal display (LCD) or a similar technology. Additional components may include input channels, memory for storing waveforms, and user interface controls.


What is a reference voltage of an adc?

The voltage at which the adc converts the signal.... it can also be called a limit of an ADC.


When was ADC Telecommunications created?

ADC Telecommunications was created in 1935.


What is ADC Telecommunications's population?

ADC Telecommunications's population is 9,047.


When did ADC Airlines end?

ADC Airlines ended in 2007.


When was ADC Airlines created?

ADC Airlines was created in 1984.


When was ADC Theatre created?

ADC Theatre was created in 1881.


When was ADC Aircraft created?

ADC Aircraft was created in 1920.


Explain the purpose of the simple and hold circuit in a computer controlled data acquisition system that uses a ADC?

I presume you mean "sample and hold"; to read a voltage an ADC takes a finite amount of time - if the voltage changes during that time, then a misreading can occur. The sample and hold keeps the voltage seen by the ADC constant during the reading time.


How do you do addition of 32 bit numbers in 8085?

In order to add 32 bit numbers in the 8085, you need to add them 8 bits at a time, tracking the carrys between each add. LXI B,first_number LXI H,second_number LXI D,result LDAX B ;first byte - no carry in ADD M STAX D INX B; point to next byte INX D INX H LDAX B ;second byte - carry in ADC M ;note the ADC instead of ADD STAX D INX B; point to next byte INX D INX H LDAX B ;third byte - carry in ADC M STAX D INX B; point to next byte INX D INX H LDAX B ;fourth - carry in ADC M STAX D