top of page

MP-4 is simplest CPU that you can build and run your programs, including conditional branches and a few arithmetic logical operations. As you can see in block diagram, MP-4 is an harvard architecture microcontroller.

In this very first version there is only one register (accumulator). General purpose RAM not implemented yet.

This CPU design is very helpful to understand how CPU's work.

You can easily modify it to add RAM, add more registers or add more instructions.

instruction and operand combined in MP-4 bus. This makes possible less hardware and single instruction in single cycle. Most significant 3 bits are for instruction and lower 5 bits for operand.

total 8 instructions and 32 byte of memory awailable with this configuration.

MP-4 is a MIPS class CPU

ALU and Accumulator

74ls181 ALU used for arithmetic and logical operations. 74hc574 used as accumulator.

With this configuration seen in diagram, every results can be stored in accumulator again.

Do not confuse in schematic, it seems there is no direct acces to Acc but its not true

if you arrange 74181's B input to pass data directly out; Data stores in acc directly by passing through 74ls181

74181 may be seen very useful in first look but unfortunately this is not true (its a big mess)

To understand work of this CPU; I recommend setup an 74181 circuit first and play with it a few days. (I did)

74ls181 have two 4 bit inputs, one 4 bit output and 6 control inputs.
this control inputs determines output function.

Clock, Program Counter and Phases

The main philosophy of MP-4 is simplicity so, I used ne555 as clock generator and its working about 1Hz to understand timing. 555 produces clock signal and 74hct4017 decade counter produces phase signals (do not use cd4017 )

In first phase, CPU fetches instruction to microcode and puts data to bus. In second phase, instruction executing and accumulator refreshing with new value.

MP-4 can run reliably up to 8 Mhz

Microcode and Control

MP-4 have low encoded horizontal microcode. This mean, we need tons of control pins.

So, I used two 8 bit eeproms microcode sequencer directly reads instruction from ROM data output and produces necessary control signals.

bit 0 and 5-6-7 of microcode1 not used. also LDA,M and LDM,A instructions not implemented in this published version.

PcLoad/ signal is producing by zero flag and JP, JPZ signals.

Conditional Jump 

Conditional jump is one of important part of this system.

Acc output goes to 4 input or gates and generates zero flag. zero signal JP signal and JPZ signal

determines conditional or unconditional jumps.

Complete Circuit

Instruction structure

Im putting here pdf version to view and realise your MP-4 also DSN files for Proteus ISIS design suit

in ISIS you can simulate your own CPU design. simply right click on ROM and put your own hex program to run

But please note that Proteus-isis cannot simulate 74181 properly

MP-4 Circuit schematic in pdf:

Proteus design files:

Instructions and usage

00 : NOP You have only 8 instructions and you waste one of them with "no operation" command !

NOP instruction is very important for  upgrade to multicycle CPU. When upper microcode fetching instruction, operand or adress bytes, lower microcode must run NOP command.

We will see this in next version of MP-4E

( E: enchanced, multicycle CPU)

20: LDA,n (2 for command, lower nibble is operand: 20,2f, 2a etc all loads acc with low nibble)

40: ADD,n : adds operand to acc

60: DEC : decrements accumulator operand ignored

80 IN A : gets data from input port to acc

A0: OUT A :puts acc content to out port

for in or out commands you may use 4.th bit as adress decoder to add one more port

then BX command puts data to second out port

C0: JP : unconditional jump to adress n (4 bit adress)

Dn: JP unconditional jump to 5 bit adress

En: JPZ : conditional jump to adress n (4 bit adress): jump if zero
Fn: JPZ : conditional jump to 5 bit adress

Microcode and Test Programs for ROM

I used 28c16's for microcodes and 28c64 for main ROM unfortunately proteus design suit cant recognized so that I published circuit with 2764 eproms here is microcodes and test programs

Please leave a comment. Thank you

Homebuilt CPUs WebRing

Join the ring?

To join the Homebuilt CPUs ring, drop Dave a line, mentioning your page's URL. He'll then add it to the list. 
You will need to copy this code fragment into your page (or reference it.) 
Note: The ring is chartered for projects that include a home-built CPU. It can emulate a commercial part, that′s OK. But actually using that commercial CPU doesn′t rate. Likewise, the project must have been at least partially built: pure paper designs don′t rate either. It can be built using any technology you like, from relays to FPGAs.

CPU Running video

bottom of page