Computer Architecture – Computers Operating Exclusively on Boolean Algebra

booleancomputer-architecturecpu

I was wondering if there are any computers that operate exclusively on boolean operations. For example, no add, sub, mult, or div in the instruction set (although these could be emulated with the appropriate boolean code). Rather, the cpu would work by comparing 2 bits at a time, with instructions like and, or, xor. I realize that no modern computer would operate like this, but have any historical computers had an instruction set something like this?

Best Answer

Even nowadays you can find examples of such processors, for example in complex interlocking systems.

However, these processors are not off-the shelf, and typically the production numbers are so low that in the end these end up being implemented in programmable logic (such as FPGA).

Related Topic