George John has Published 1167 Articles

Programming examples of 6800

George John

George John

Updated on 27-Jun-2020 13:30:14

573 Views

Now, in this section, we will see how we can use the Motorola M6800 Microprocessor to add multi-Byte numbers.AddingMulti-Byte NumberIn this example, we are using 4-Byte numbers (56 2F 7A 89)16 and (21 FB A9 AF)16In the memory, at first, we are storing the Byte counts, and then the numbers ... Read More

ALE pin in 8085 Microprocessor

George John

George John

Updated on 27-Jun-2020 13:27:25

14K+ Views

Intel 8085 is an 8-bit microprocessor which has 16 address line for 16-bit address of a memory location. 8 higher order address bits are transferred through 8 bit lines out of this 16 address line while remaining lower order 8 bits of the address are sent through another 8 lines ... Read More

Programmer's view of 8085 Microprocessor

George John

George John

Updated on 27-Jun-2020 13:26:27

167 Views

Intel 8085 receives 8-bit information on AD7-0 from memory or in-port which resides inside the microprocessor via“register”. A register is a group of flip-flops, where each flip-flop can store a bit of information. To store 8 bitsof information, the size of a register in 8085 has to be 8 bitsThe advantages ... Read More

Registers B, C, D, E, H, and L in 8085 Microprocessor

George John

George John

Updated on 27-Jun-2020 13:24:27

2K+ Views

Registers B, C, D, E, H, and L are general purpose registers in 8085 Microprocessor. All these GPRS are 8-bits wide. They are less important than the accumulator. They are used to store data temporarily during the execution of the program. For example, there is no instruction to add the ... Read More

Functional blocks of Intel 8051

George John

George John

Updated on 27-Jun-2020 13:17:06

5K+ Views

There are various versions of 8051 Microcontroller. These versions are 8051H, 8051BH and 8051CH. Here we will see the general 8051 Microcontroller. This microcontroller works on a +5V dc power source. As it has on-chip clock circuit, so we need only the crystal oscillator between the pin XTAL1 and XTAL2 ... Read More

Program memory structure of Intel 8051

George John

George John

Updated on 27-Jun-2020 13:16:20

2K+ Views

We have already discussed that the 8051 microcontroller has the internal program memory. In this chip, there is EA  pin. It indicates the External Access. So by using this pin, we can check whether the internal program memory is used or not. So when there is a low signal in ... Read More

2's complement fractions

George John

George John

Updated on 27-Jun-2020 13:10:42

5K+ Views

As an example, the value of 1 001, if the interpretation is that it is a 2's complement fraction will be as follows -It is 1.001 assuming the binary point after the MS bit. As the MS bit is 1, it is a negative number. Then the remaining bits do ... Read More

Logical Group in 8051

George John

George John

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

5K+ Views

In 8051 Microcontroller there is 25 different instructions under the Logical Group. In total there are 49 opcodes. The Carry Flag (CY) affects only by instruction RRC and RLC.In the following table, we will see the Mnemonics, Lengths, Execution Time in terms of the machine cycle, Number of Opcodes etc.MnemonicsByte ... Read More

Sign Magnitude notation

George John

George John

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

9K+ Views

The sign-magnitude binary format is the simplest conceptual format. In this method of representing signed numbers, the most significant digit (MSD) takes on extra meaning.If the MSD is a 0, we can evaluate the number just as we would any normal unsigned integer. And also we shall treat the number as ... Read More

Binary to BCD conversion in 8051

George John

George John

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

3K+ Views

In this problem, we will see how to convert an 8-bit binary number to its BCD equivalent. The binary number is stored at location 20H. After converting, the results will be stored at 30H and 31H. The 30H will hold the MS portion, and 31H will hold the LS portion. So ... Read More

Advertisements