Chandu yadav has Published 1090 Articles

Bit-processing group in 8051

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 13:04:59

4K+ Views

In 8051 Microcontroller there is 17 different instructions under the Logical Group. In total there are 17 opcodes. The Carry Flag (CY) acts like the single-bit accumulator in different bit processing instructions.In the following table, we will see the Mnemonics, Lengths, Execution Time in terms of the machine cycle, Number ... Read More

Signed binary integers

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 13:01:46

11K+ Views

Signed integers are numbers with a “+” or “-“ sign. If n bits are used to represent a signed binary integer number, then out of n bits, 1 bit will be used to represent a sign of the number and rest (n - 1)bits will be utilized to represent magnitude ... Read More

BCD to binary conversion in 8051

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 12:54:30

3K+ Views

In this problem, we will see how to convert 8-bit BCD number to its Binary (Hexadecimal)equivalent. The BCD number is stored at location 20H. After converting, the results will be stored at 30H.So let us assume the data is D5H. The program converts the binary value ofD5H to BCD value ... Read More

Interfacing 8279 Keyboard with 8085 Microprocessor

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 12:47:23

3K+ Views

Here we will see how 8279 Chip can be used to interface a matrix keyboard with 8085 microprocessors. This chip can be used either keyboard/display interfacing mode or as a strobed input port. But generally, it is used as keyboard interfacing.The keyboard interfacing schemes can also be divided into two ... Read More

Interrupt structure of 8051

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 12:42:54

25K+ Views

Now in this section, we will see the interrupt structure of Intel 8051 microcontroller.Interrupts are basically the events that temporarily suspend the main program, pass the control to the external sources and execute their task. It then passes the control to the main program where it had left off.8051 has ... Read More

How to define the location of a font for download in CSS

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 12:40:12

105 Views

The @font-face rule is used to define the location of a font for download, although this may run into implementation-specific limits.ExampleLet us see an example    

Turn transparent pixels to a specified color and make opaque pixels transparent with CSS

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 12:21:40

380 Views

Use the mask effect to turn transparent pixels to a specified color and makes opaque pixels transparent. The following parameter is used in this filterS.NoParameter & Description1ColorThe color that the transparent areas will become.ExampleYou can try to run the following code to implement mask effectLive Demo           ... Read More

RIM instruction in 8085

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 12:12:14

6K+ Views

In 8085 Instruction set, Read Interrupt Mask. It is a 1-Byte multi-purpose instruction. It is used for the following purposes.To check whether RST7.5, RST6.5, and RST5.5 are masked or not;To check whether interrupts are enabled or not;To check whether RST7.5, RST6.5, or RST5.5 interrupts are pending or not;To perform serial ... Read More

Programming 8051 using Keil Software

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 12:11:13

28K+ Views

In this section we will see how to write and execute programs for 8051 microcontroller using the Keil Software.Download KeilHere is the download link of Keil. You can download it and install it very easily. We are using C51 version for 8051 devices.https://www.keil.com/download/product/Use Keil to write programs for 8051 MicrocontrollerStart ... Read More

Machine language program

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 11:03:58

4K+ Views

Computer can understand only the language of Digital Electronics. Digital Electronics deals with presence and absence of voltages. Within the computer there are two logics can play their role. These logics are −Positive Logic − Here presence of voltage will be denoted by 1 and absence of voltage will be ... Read More

Advertisements