Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 8-bit-computer-emulator

This is a C++ based emulator of my [8-bit-computer](https://github.com/blurpy/8-bit-computer).
This is a fork of a C++ based emulator of blurpy's [8-bit-computer](https://github.com/blurpy/8-bit-computer).

The goal is to make the emulator as realistic as possible. It's based on emulating the communication between the different parts of the computer so the state is accurate on every cycle. This means the instruction decoder does not change state of memory or registers, but rather directs which part can communicate over the bus at different points in time, like the real hardware do with the microcode in the EEPROMs. Programs that run on the real hardware will run unmodified on the emulator with the same result.

Expand Down
1 change: 1 addition & 0 deletions src/core/Clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#include <thread>
#include <vector>
#include <memory>

#include "ClockListener.h"
#include "ClockObserver.h"
Expand Down