mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-08 11:29:26 +00:00
Tidy Intel8080 header file usage a little.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
daa8eabb49
commit
727ef5e86d
@ -1,6 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <boost/format.hpp>
|
||||
|
||||
namespace EightBit {
|
||||
|
@ -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 {
|
||||
|
@ -3,6 +3,7 @@
|
||||
#endif
|
||||
|
||||
#include <cstdint>
|
||||
#include <stdexcept>
|
||||
|
||||
#include <string>
|
||||
#include <array>
|
||||
|
Loading…
Reference in New Issue
Block a user