Intel 8080 Emulator

GitHub Page

This is my program to emulate a Intel 8080 CPU. The Intel 8080 was created in the 1970s and sported 8-bit data sizes and up to 64 Kilobytes of memory. My emulator has a shell that you can use to provide the instruction that you want the cpu to run and then shows you the update state of the cpu. It is written in the C programming language and contains over 3000 lines of code.

Features:

Run & Build:

Linux/Mac Build Instructions:

Run the Emulator:

Examples:

Because I know the the instructions for compiling and running the program are rather complex I will provide some examples of the emulator in action right here for anyone who is interested. You will see the actual output from the program under each example and will be able to observe the changes in state of the CPU for your self.

MVI A,d1

The MVI instruction is an assembly instruction that loads a 8-bit (one byte) value (d1) into the A register of the computer. This is an espceeially important instruction because the A register is also the 8080's accumulator and many math related instructions use it. When we look at the opcode table linked above, we can see that the hexadecimal value for MVI, A is 3e. Lets say that we want to load the hexadecimal value of 0x24. The assembley for that is MVI A, 24. We can enter that into my shell: 0e 24 00 remember, 24 is a hex value so in the base-10 number system it is 36.

INS: E
        B: 0, C: 0
        D: 0, E: 0
        H: 0, L: 0
        A: 24 PC: 0, SP:0
        carry: 0, aux: 0, parity: 0, sign: 0, zero: 0
    

RLC

The RLC instruction rotatates the data in the accumulator (thats the A register and the one we just loaded with 0x24) to the left. The binary version of 0x24 is 00100100. When that is rotated to the left, it will look like 01001000. The hex value of that is 0x48 and that is what should show up in our A register after running our instruction: 07 00 00.

INS: 7
        B: 0, C: 0
        D: 0, E: 0
        H: 0, L: 0
        A: 48 PC: 0, SP:0
        carry: 0, aux: 0, parity: 0, sign: 0, zero: 0
    

INR A

INR A is an instruction that increments the A register (also the accumulator). Right now, the A register is holding the value of 0x48 and incrementing it by one should have it hold the value of 0x49. The opcode for INR A is 3c. We can type it in: 3c 00 00. The A register now holds 0x49!

INS: 3C
        B: 0, C: 0
        D: 0, E: 0
        H: 0, L: 0
        A: 49 PC: 0, SP:0
        carry: 0, aux: 0, parity: 0, sign: 0, zero: 0
    

MOV B,A

The MOV A,B instruction will copy the value of the A register (now holding 0x49) to the B register. The hex opcode of MOV B,A is 0x47, so typing 47 00 00 into the shell should do the trick.

INS: 47
        B: 49, C: 0
        D: 0, E: 0
        H: 0, L: 0
        A: 49 PC: 0, SP:0
        carry: 0, aux: 0, parity: 0, sign: 0, zero: 0
    

My Notes on the Intel 8080:

These are some notes I took about the general architecture of the Intel 8080, with information from the official Intel 8080 datasheet and programmers manual.

Registers:

Program Counter:

Stack Pointer:

Memory Adressing:

Condition Bits: