From 727ef5e86d0492821c8ea1f6804b35e7aa68d607 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Sun, 22 Oct 2017 21:57:01 +0100 Subject: [PATCH] Tidy Intel8080 header file usage a little. Signed-off-by: Adrian Conlon --- Intel8080/inc/Disassembler.h | 2 ++ Intel8080/inc/Intel8080.h | 10 +++++++++- Intel8080/src/stdafx.h | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Intel8080/inc/Disassembler.h b/Intel8080/inc/Disassembler.h index b6dee36..eb87555 100644 --- a/Intel8080/inc/Disassembler.h +++ b/Intel8080/inc/Disassembler.h @@ -1,6 +1,8 @@ #pragma once +#include #include +#include #include namespace EightBit { diff --git a/Intel8080/inc/Intel8080.h b/Intel8080/inc/Intel8080.h index 369e162..0115222 100644 --- a/Intel8080/inc/Intel8080.h +++ b/Intel8080/inc/Intel8080.h @@ -2,10 +2,18 @@ // Auxiliary carry logic from https://github.com/begoon/i8080-core +#include +#include + #include -#include +#include +#include namespace EightBit { + + class InputOutput; + class Bus; + class Intel8080 : public IntelProcessor { public: enum StatusBits { diff --git a/Intel8080/src/stdafx.h b/Intel8080/src/stdafx.h index 5aad53c..0449783 100644 --- a/Intel8080/src/stdafx.h +++ b/Intel8080/src/stdafx.h @@ -3,6 +3,7 @@ #endif #include +#include #include #include