Skip to content

fixed clock #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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