Simple-As-Possible computer

From Wikipedia the free encyclopedia

The Simple-As-Possible (SAP) computer is a simplified computer architecture designed for educational purposes and described in the book Digital Computer Electronics by Albert Paul Malvino and Jerald A. Brown.[1] The SAP architecture serves as an example in Digital Computer Electronics for building and analyzing complex logical systems with digital electronics.

Digital Computer Electronics successively develops three versions of this computer, designated as SAP-1, SAP-2, and SAP-3. Each of the last two build upon the immediate previous version by adding additional computational, flow of control, and input/output capabilities. SAP-2 and SAP-3 are fully Turing-complete.

The instruction set architecture (ISA) that the computer final version (SAP-3) is designed to implement is patterned after and upward compatible with the ISA of the Intel 8080/8085 microprocessor family. Therefore, the instructions implemented in the three SAP computer variations are, in each case, a subset of the 8080/8085 instructions.[2]

Variants[edit]

Ben Eater's Design[edit]

High-level overview of Ben Eater's breadboard SAP computer.

YouTuber and former Khan Academy employee Ben Eater created a tutorial building an 8-bit Turing-complete SAP computer on breadboards from logical chips (7400-series) capable of running simple programs such as computing the Fibonacci sequence.[3] Eater's design consists of the following modules:

  • An adjustable-speed (upper limitation of a few hundred Hertz) clock module that can be put into a "manual mode" to step through the clock cycles.
  • Three register modules (Register A, Register B, and the Instruction Register) that "store small amounts of data that the CPU is processing."
  • An arithmetic logic unit (ALU) capable of adding and subtracting 8-bit 2's complement integers from registers A and B. This module also has a flags register with two possible flags (Z and C). Z stands for "zero," and is activated if the ALU outputs zero. C stands for "carry," and is activated if the ALU produces a carry-out bit.
  • A RAM module capable of storing 16 bytes. This means that the RAM is 4-bit addressable. As Eater's website puts it, "this is by far its [the computer's] biggest limitation".[4]
  • A 4-bit program counter that keeps track of the current processor instruction, corresponding to a 4-bit addressable RAM.
  • An output register that displays its content on four 7-segment displays, capable of displaying both unsigned and 2's complement signed integers. The 7-segment display outputs are controlled by EEPROMs, which are programmed using an Arduino microcontroller.
  • A bus that connects these components together. The components connect to the bus using tri-state buffers.
  • A "control logic" module that defines "the opcodes the processor recognizes and what happens when it executes each instruction,"[5] as well as enabling the computer to be Turing-complete. The CPU microcodes are programmed into EEPROMs using an Arduino microcontroller.

Ben Eater's design has inspired multiple other variants and improvements, primarily on Eater's Reddit forum. Some examples of improvements are:

  • An expanded RAM module capable of storing 256 bytes, utilizing the entire 8-bit address space. With the help of segmentation registers, the RAM module can be further expanded to a 16-bit address space, matching the standard for 8-bit computers.
  • A stack register that allows incrementing and decrementing the stack pointer.

Kenbak-1[edit]

Kenbak-1 at the Computer History Museum

The Kenbak-1 is an 8-bit computer programmed in pure machine code using an array of buttons and switches. Output consisted of a row of lights. It was first sold in early 1971. Since the Kenbak-1 was invented before the first microprocessor, the machine didn't have a one-chip CPU but was instead based purely on small-scale integration TTL chips. It only offered 256 bytes of memory. The clock speed was 1 MHz, but the program speed averaged below 1,000 instructions per second due the many clock cycles needed for each operation and slow access to serial memory.

References[edit]

  1. ^ Malvino, Albert Paul; Brown, Jerald A. (1993). Digital Computer Electronics (3 ed.). McGraw-Hill. pp. 140–212. ISBN 0-02-800594-5.
  2. ^ Malvino, Albert Paul; Brown, Jerald A. (1993). Digital Computer Electronics (3 ed.). McGraw-Hill. pp. 143–144. ISBN 0-02-800594-5.
  3. ^ "Geek Builds 8-Bit Computer From Scratch And Explains How Every Part Works". Fossbytes. 2017-05-01. Retrieved 2021-04-04.
  4. ^ Eater, Ben. "Random access memory (RAM) module". Ben Eater. Retrieved 2021-04-05.
  5. ^ Eater, Ben. "CPU control logic". Ben Eater. Retrieved 2021-04-05.

External links[edit]