Correct a couple of header file issues in the base EightBit library

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2017-10-22 21:24:28 +01:00
parent 6ae1d9c492
commit 90b0673259
2 changed files with 5 additions and 0 deletions

View File

@ -4,8 +4,12 @@
#include <array>
#include "Processor.h"
#include "Register.h"
namespace EightBit {
class Bus;
class IntelProcessor : public Processor
{
public:

View File

@ -2,6 +2,7 @@
#include <cstdint>
#include <vector>
#include <string>
namespace EightBit {
class Memory {