Pages

INVERTIBILITY

Definition:

A system is said to be invertible if the input of the system can be recovered from the system output.

Mathematical Representation

Let y(t) be applied to a second C.T.system represented by the operator H-1 as shown in fig.(b).

Output of the system  = H-1{Hx(t)}

                                                = H-1 H{x(t)}

The operator H-1 is called as the inverse operator and the system is called as the inverse system.

If we want the output of second system to equal to the original input signal X(t),then it is necessary that
                                                H-1 * H = I

Where I denotes the identity operator.

Know more about Invertible 


8085 Microprocessor Architecture



Registers – hold temporary data.
  
Instruction register (IR) holds the currently executing instruction.

Instruction Decoder (ID) decodes the instruction. Once decoded, the instruction controls the remainder of the MPU, memory and IO through the timing and control block.

Temporary register - holds information from the memory or register array. An input of the ALU.

Increment/Decrements address latch – It adds or subtracts one from any of other registers in register array.

Know more about 8085 Microprocessor Architecture

 

Microprocessor

Definition of the Microprocessor

The Microprocessor is a programmable device that takes in numbers, performs on them arithmetic or logical operations according to the program stored in memory and then produces other numbers as a result.

What is a Microprocessor?

The word comes from the combination micro and processor. Processor means a device that processes whatever. In this context processor means a device that processes numbers, specifically binary numbers, 0’s and 1’s. 
To process means to manipulate. It is a general term that describes all manipulation. Again in this content, it means to perform certain operations on the numbers that depend on the microprocessor’s design.

Arithmetic and Logic Operations

Every microprocessor has arithmetic operations such as add and subtract as part of its instruction set. Most microprocessors will have operations such as multiply and divide.
Some of the newer ones will have complex operations such as square root.
In addition, microprocessors have logic operations as well. Such as AND, OR, XOR, shift left, shift right, etc.

Again, the number and types of operations define the microprocessor’s instruction set and depends on the specific microprocessor

Inside The Microprocessor

Internally, the microprocessor is made up of 3 main units.
The Arithmetic/Logic Unit (ALU)
The Control Unit.
An array of registers for holding data while it is being manipulated.

Assembly Language

Entering the instructions using hexadecimal is quite easier than entering the binary combinations.

However, it still is difficult to understand what a program written in hexadecimal does.
So, each company defines a symbolic code for the instructions.
These codes are called “mnemonics”.
The mnemonic for each instruction is usually a group of letters that suggest the operation performed.



Know more about Microprocessor

Click here to download the ppt.
  

8085 Interrupts

Interrupt is a process where an external device can get the attention of the microprocessor.
The process starts from the I/O device
The process is asynchronous.

Classification of Interrupts
Interrupts can be classified into two types:
Maskable Interrupts (Can be delayed or Rejected)
Non-Maskable Interrupts (Can not be delayed or Rejected)

Interrupts can also be classified into:
Vectored (the address of the service routine is hard-wired)
Non-vectored (the address of the service routine needs to be supplied externally by the device)

An interrupt is considered to be an emergency signal that may be serviced.
The Microprocessor may respond to it as soon as possible.

What happens when MP is interrupted?

When the Microprocessor receives an interrupt signal, it suspends the currently executing program and jumps to an Interrupt Service Routine (ISR) to respond to the incoming interrupt.
Each interrupt will most probably have its own ISR.

Know more about 8085 Interrupts