This repo contains worked out tutorials to learn software emulation. The main goal is to write a C based functional 8080 emulator. Post which we will move to emulation Nintendo’s GameBoy in a separate Repo (or playstation maybe).

For now, let’s get going with the tutorials on Emulator 101.

Note: These might changes as I learn more and currently may not be the best way to go about things. But really what is?

ls /our_future:

Sample Output window

Emulating 8080

Let’s start by following the Steps on Emulator 101.

Critical: Do not look at this until necessary, but here’s a completed version I came across this tutorial. But the Useful links section is actually quite useful.

OpCode

Emulator 101’s Opcode is linked here. But IMO, it gives too much away. There’s always the 8080 system manual, but that might be a little too much so let’s keep it aside for now. I think referring to below links would be more work and fruitful:

To top it off, this programming manual seems quite useful, and small enough for now.

The tutorial starts by mentioning guides such as above, then says to go find the ROM. Here’s what I got:

Next, I would recommend you to read the programming manual (91 Page one). The first 2 chapters should be enough for now. By now it would have struck you:

  • The ROM contains the 8080 code we want to execute after some setup (like Input and display)
  • We want to apply identical effects to those components, which a real system would notice. Basically software emulation!

RoadMap:

  1. Emulate the basic commands of 8080, write a disassembler -> call C equivalents for those assembly instructions.
  2. Write the IO (Graphical Interface) to actually do the GUI updates
  3. Implement Input
  4. Implement Sound driver

Note: While these are important individual steps, we’ll go in a manner where we just implement enough to get started with the next step and then keep coming back for extensions. This is an important part of rapid prototype dev which I’ve been lacking in and is very much needed in today’s world. So let’s practice that!

Disassembling & Debugging 8080

Well, let’s get started. We’ll first do an overall instruction base like disass_1. Then We’ll follow the order of the posts, cross-referring with Chapter 4 in the system manual. At the same time, we’ll be using the ROM itself to figure out which instruction to emulate next. When we run the ROM and something doesn’t work, that’s the instruction to figure out! Just exec the ROM unless you hit an instruction that you’ve not implemented yet. Implement, then keep going.

Below is a example of decompile mode:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
int decompile_inst(cpu_state* cpu, uint16_t* next_inst){
    uint8_t Instt = mem_read(&cpu->mem, (*next_inst));
    cpu->PC = (*next_inst);

    (*next_inst) += opcode_lookup[Instt].size;

    uint16_t inital_pc_ptr = cpu->PC;
 
    if(opcode_lookup[Instt].target_func == 0x0){
         opcode_lookup[Instt].target_func = UNDEFINED_OP_WRAP;
    }

    int ret = opcode_lookup[Instt].target_func(cpu, inital_pc_ptr, Instt);
    return ret;
}

Once you implement all the instructions, how do you know if you’ve implemented the instructions correctly? Well as described in finishing-cpu and full-emulation, there are two major ways:

  1. Use online emulator to execute the ROM and match the trace with your offline version. This would help you point out the exact location where your execution differs. This would be useful for detecting in-depth bugs that cannot be detected by instruction level tests. However, you could have multiple broken instructions, making it harder to zero into the cause.
  2. Use Debug ROM which executes each instruction and checks if it has the expected behavior. This should help you detect the majority of the issues. A couple of things to note:
    • This ROM expects to start at 0x100 ROM ADDR
    • Due to some funky issue, you might have to tweak the start point of the SP to a custom value to prevent it from corrupting the ROM.
    • These minor details have been listed in the article above. Do refer.

Interrupts

At this point, let’s assume we have a fully functioning emulator. Well, do we? Currently, our code runs at full speed, trying to get the instructions executed as fast as possible. This historically hasn’t been the best for games. If you run your code right now, you’ll notice that it’s stuck in a loop WaitOnDelay. It would be helpful to look at reverse engineering of the code, and probably you’ll be waiting for the isrDelay variable. But what is that anyway?

Timing in Space Invaders: So the question to ask here would be:

Who in the world updates this memory location?

I would encourage you to look at the code and find out the answer. Try Ctrl+F for isrDelay, or &isrDelay.

Okay, space invaders makes use of an external Interrupt to do the timing. Via the experiment above, you would have noticed that the memory location 20C0 isrDelay, is updated at address: 0019 which is part of ScanLine224. Now would be a great time to read the hardware configuration of SpaceInvaders, since it will be very relevant now.

You see, there’s an external interrupt every 1/2 frame point, where the frame rate is 60Hz. This basically is a clock that triggers the RST command by setting the condition flag. Here’s a snippet of the main code doing it.

Don’t worry about the SDL_USEREVENT stuff. It’s just a way to create user-generated events using a timer. Exec loop consuming the interrupt flag. This enables us to implement a CPU unbound timer!

Now you shouldn’t be stuck in the loop anymore. Okay at this point, we have the major things in place. Some visual output would be nice. Let’s have a look.

SDL2 GUI

For GUI, I used SDL2. Mainly because it has a C API and integrates nicely with our existing code. You might want to the following tutorials which might prove to be handy:

Few points of advice:

  • You will notice in the game docs that the memory that the game logic draws to is rotated by 90* clockwise. Hence, you will have to rotate it back to the upright location and then write to the game window’s backing store
  • You might want to read the PORT IO section too, after which it will make more sense.

PORT IO

Dedicated Shift Hardware

While working on the SDL2 GUI, you’ll realize that to draw properly and efficiently, the game logic makes use of shift registers. But hold on a minute pandu, there are no registers in Intel 8080! You’re right, that’s why on out the PORT IO is used for that purpose. You can find more information here.

Other IO

Other than those clever shift registers, the rest should be good to implement. you might wanna hotwire the IN and OUT instructions to custom versions that support the behavior specified here.

Feel free to look through the code if you want to look at a not so simple but interesting way of implementing it using functors. I intended to keep the code generic while supporting this idea. I think it’s pretty neat. Setting IN/OUT backing stores correctly should allow your game to read keypresses and produce sound.

Setup

In order to run the code on your ubuntu box:

  • Clone the repo
  • make install - Install the packages required
  • make extractROM - Unzip the ROM
  • make DEBUG=0 DECOMPILE=0 - Run the Emulator

Emulation Bookmarks & Thanks

  1. JS
  2. C++
  3. GameBoy
  4. SDL C