Thursday, 27 October 2016

Digital Logic- Introduction

DIGITAL LOGIC

Introduction
Digital, or boolean, logic is the fundamental concept underpinning all modern computer systems. Put simply, it’s the system of rules that allow us to make extremely complicated decisions based on relatively simple “yes/no” questions.
In this tutorial you will learn about…
Digital circuitry
Digital logic circuits can be broken down into two subcategories- combinational and sequential. Combinational logic changes “instantly”- the output of the circuit responds as soon as the input changes (with some delay, of course, since the propagation of the signal through the circuit elements takes a little time). Sequential circuits have a clock signal, and changes propagate through stages of the circuit on edges of the clock.
Typically, a sequential circuit will be built up of blocks of combinational logic separated by memory elements that are activated by a clock signal.
Programming
Digital logic is important in programming, as well. Understanding digital logic makes complex decision making possible in programs.

There are also some subtleties in programming that are important to understand; we’ll get into that once we’ve covered the basics.


Related Posts:

  • Digital Logic-Logic Gates Logic Gates If we think of two signals, A and B, as representing a truth value of two different propositions, then A could be either TRUE (a logical 1) or FALSE (a logical 0). B can take on the same values. Now consider … Read More
  • Digital Logic-Think Binary !Think Binary! Let's examine a typical situation. You have some sort of device that generates a logic signal. It could be a telephone that converts your voice signal into a sequence of zeros and ones. It could be the t… Read More
  • Digital Logic- Introduction DIGITAL LOGIC Introduction Digital, or boolean, logic is the fundamental concept underpinning all modern computer systems. Put simply, it’s the system of rules that allow us to make extremely complicated decisions based … Read More

0 comments:

Post a Comment