Everything related to digital logic: HDL, logic gates, FPGA, etc.

Digital Buffers And Their Usage

In this article, we will explain the functionality of two very important electronic circuit elements: digital buffer and tri-state digital buffer. Buffer At first glance, the functionality of a digital buffer may seem very simple: the value at its input is propagated to its output. Fig. 1 Buffer symbol and truth table If the buffer

2019-05-19T16:48:41+03:00By |Categories: Digital Logic|Tags: , |0 Comments

Microprocessor Instruction Pipelining

Microprocessor instruction pipelining is a hardware implementation that allows multiple instructions to be simultaneously processed through the instruction cycle. This is enabled by the instruction cycle itself as it divides the operations that have to be performed on each instruction into standalone phases (e.g decode, fetch, execute). In the context of the pipeline, we call

2019-05-18T22:56:08+03:00By |Categories: Digital Logic|Tags: |1 Comment

Instruction Set Architecture

Instruction Set Architecture (ISA) specifies the instructions that a microprocessor can execute. It can be viewed as a programmer's manual. It clearly defines everything needed for writing either a compiler or machine language program for a microprocessor supporting particular ISA.  The ISA itself does not contain hardware implementations details. There can be microprocessors with different

2019-05-18T22:59:00+03:00By |Categories: Digital Logic|Tags: |0 Comments

Microprocessor Arithmetic Logic Unit

The arithmetic logic unit (ALU) is at the hearth of the microprocessor. It is designed to perform both arithmetic and logical operations on integer binary numbers. Principle of operation The ALU does not need a clock signal as it is a pure combinational digital circuit. The output will change asynchronously in response to change on the

2019-05-18T22:59:22+03:00By |Categories: Digital Logic|Tags: |0 Comments

Microprocessor Building Blocks

The microprocessor (also known as Central Processing Unit(CPU) ) is a computational machine. It executes arithmetic, logical, control and input/output operations. It is programmable and follows the instructions programmed into its memory. Principle of Operation In order for the processor to perform the task required by a particular instruction, it follows a process called the instruction

2019-05-18T23:01:19+03:00By |Categories: Digital Logic|Tags: |0 Comments

Memory Addressing Modes

Addressing Mode refers to the way the actual location of an instruction's operand is specified. It is used in the decode phase of the instruction cycle to extract the operand of the instruction so the proceeding execute phase can start. The main purpose of having different addressing modes is to provide flexibility when referencing the memory location of

Microprocessor Instruction Cycle

The microprocessor (also known as Central Processing Unit (CPU)) can be defined simply as a calculation machine. It executes predefined operations called instructions. The steps the CPU performs in order to execute an instruction is called an instruction cycle (also known as fetch-execute cycle or fetch-decode-execute cycle). Understanding the instruction cycle is a great starting point for

Microprocessor Instructions

A microprocessor instruction is a description of an operation that has to be performed on a data. The data is called operand. An instruction may have one or more operands. The microprocessor executes instructions in a process called instruction cycle. Each microprocessor is designed to operate on a specific set of instructions defined in its instruction set

2019-05-18T23:06:10+03:00By |Categories: Digital Logic|Tags: |0 Comments

Microprocessor Program Counter

The program counter (PC) is a register that is part of the central processing unit (CPU). It contains the memory address for the next instruction that has to be executed during the instruction cycle of the microprocessor. Principle of Operation Each instruction cycle begins by accessing the instruction stored at the address that is pointed by

2019-05-18T23:06:39+03:00By |Categories: Digital Logic|Tags: |3 Comments

Fixed Point Numbers in Digital Systems

Overview Fixed point numbers are used for representing fractional numbers in digital systems. The term "Fixed-Point" refers to fact that the position of the binary point is always at the same place. The binary point separates the integer and the fractional part of a number (the same as the decimal point in the decimal system). An N-bit binary

2019-05-18T23:28:43+03:00By |Categories: Digital Logic|Tags: |0 Comments
Go to Top