EFY

Flow chart for addition from external memory, Addition of Two 8-Bit Numbers in 8051 Microcontroller

Addition of Two 8-Bit Numbers in 8051 Microcontroller

Program 1 Problem Add the two data bytes 50H and 60H. Then load one of the data byte in Accumulator and then add second byte with accumulator. Flowchart Program MOV A, #50H                 ; Load 50H into accumulator   ADD A, #60H               ; Add 60H into accumulator LOOP: AJMP LOOP     ; Stop Program 2 Problem Suppose

Addition of Two 8-Bit Numbers in 8051 Microcontroller Read More »

power saving mode in 8051 with diagram

Power Saving Mode in 8051 | 8051 Power Down and Idle Mode

Power Saving mode in 8051 microcontroller is used to save energy during idle time of processor and during power down time of processor. So, is important to make microcontroller as a power saving device. The 8051 uses current of approximately 25 mA during the normal operation. In power saving mode, the 8051 microcontroller reduces its

Power Saving Mode in 8051 | 8051 Power Down and Idle Mode Read More »

Boolean Processor in 8051 Microcontroller

The 8051 microcontroller is widely used in various embedded systems applications due to its simplicity, ease of use, and versatility. One of the essential components of the 8051 microcontroller is its Boolean Processor, which plays a crucial role in performing logical and bitwise operations. The 8051 microcontroller supports bit addressable memory and bit manipulation instructions

Boolean Processor in 8051 Microcontroller Read More »