George John has Published 1167 Articles

Conversion of four-digit hex to ASCII in 8051

George John

George John

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

457 Views

We have already seen how to convert Hexadecimal digit to its ASCII equivalent. In this section, we will see how to convert two-byte (4-digit) Hexadecimal number to ASCII. Each nibble of these numbers is converted to its ASCII value.We are using one subroutine to convert a hexadecimal digit to ASCII. ... Read More

8051 Program to Divide two 8 Bit numbers

George John

George John

Updated on 27-Jun-2020 12:48:19

8K+ Views

Now we will see another arithmetic operation. The divide operation to divide two 8-bit numbers using this 8051 microcontroller. The register A and B will be used in this operation. No other registers can be used for division. The result of the division has two parts. The quotient part and ... Read More

Interfacing 8279 Display with 8085 Microprocessor

George John

George John

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

3K+ Views

The Intel 8279 is used for keyboard interfacing but it can also be used for multiplexed 7-segment LED display interfacing. To display a character into 7-segment display we have to store 7-segment code in a display RAM location. The display RAM of this chip can store 16 bytes of data.Write ... Read More

EI and DI instructions in 8085

George John

George John

Updated on 27-Jun-2020 12:17:20

3K+ Views

In 8085 is having five internal interrupt signals that correspond to the five external interrupt pins. And these interrupts are only recognized only when the internal interrupt signal is activated, the 8085 gets interrupted, provided higher priority internal interrupt signals are not active at the same time. The 8085 checks ... Read More

CSS cue-before Property

George John

George John

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

76 Views

This property specifies a sound to be played before speaking an element's content to delimit it from other. The possible values are −url − The URL of a sound file to be played.none − Nothing has to be played.ExampleYou can try to run the following code to implement cue-before property ... Read More

History of the Integrated Circuit

George John

George John

Updated on 27-Jun-2020 12:10:48

2K+ Views

An electronic circuit is a group of electronic components connected for a specific purpose.A simple electronic circuit can be designed easily because it requires few discrete electronic components and connections. However, designing a complex electronic circuit is difficult, as it requires a number of discrete electronic components and their connections. ... Read More

Assembly language program

George John

George John

Updated on 27-Jun-2020 11:02:25

7K+ Views

After machine level language, the next level of development in the evolution of computer languages was the Assembly Language. Machine level language uses only the binary language. But on the other hand, assembly language uses mnemonics or symbolic instructions in place of a sequence of 0s and 1s. As example, ... Read More

How to check android device having finger print sensor?

George John

George John

Updated on 27-Jun-2020 10:44:16

289 Views

This example demonstrate about How to check android device having finger print sensorStep 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In ... Read More

defined() function in PHP

George John

George John

Updated on 27-Jun-2020 08:57:51

191 Views

The defined() function in PHP checks that constant exists or not.Syntaxdefined(name)Parametersname− The name of constant.ReturnThe defined() function returns true if the constant exists otherwise false.ExampleThe following is an example that checks whether a constant exist. Live DemoOutputThe following is the output.1

FILTER_SANITIZE_URL constant in PHP

George John

George John

Updated on 27-Jun-2020 08:52:04

294 Views

The FILTER_SANITIZE_URL constant removes all illegal URL characters from a string. It allows the following −$-_.+!*'(),{}|\^~[]`">

Advertisements