From 90b06732591713c6e13406daba0dd09aa58314e6 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Sun, 22 Oct 2017 21:24:28 +0100 Subject: [PATCH] Correct a couple of header file issues in the base EightBit library Signed-off-by: Adrian Conlon --- inc/IntelProcessor.h | 4 ++++ inc/Memory.h | 1 + 2 files changed, 5 insertions(+) diff --git a/inc/IntelProcessor.h b/inc/IntelProcessor.h index b2e90ed..29a6dc0 100644 --- a/inc/IntelProcessor.h +++ b/inc/IntelProcessor.h @@ -4,8 +4,12 @@ #include #include "Processor.h" +#include "Register.h" namespace EightBit { + + class Bus; + class IntelProcessor : public Processor { public: diff --git a/inc/Memory.h b/inc/Memory.h index f39a89c..4a38a23 100644 --- a/inc/Memory.h +++ b/inc/Memory.h @@ -2,6 +2,7 @@ #include #include +#include namespace EightBit { class Memory {