Tidy Intel8080 header file usage a little.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2017-10-22 21:57:01 +01:00
parent daa8eabb49
commit 727ef5e86d
3 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,8 @@
#pragma once
#include <cstdint>
#include <string>
#include <sstream>
#include <boost/format.hpp>
namespace EightBit {

View File

@ -2,10 +2,18 @@
// Auxiliary carry logic from https://github.com/begoon/i8080-core
#include <cstdint>
#include <stdexcept>
#include <IntelProcessor.h>
#include <InputOutput.h>
#include <Signal.h>
#include <Register.h>
namespace EightBit {
class InputOutput;
class Bus;
class Intel8080 : public IntelProcessor {
public:
enum StatusBits {

View File

@ -3,6 +3,7 @@
#endif
#include <cstdint>
#include <stdexcept>
#include <string>
#include <array>