Tidy up some precompiled header usage

Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
This commit is contained in:
Adrian.Conlon 2017-09-03 23:51:01 +01:00
parent ef766fd626
commit 8d91260f84
4 changed files with 15 additions and 10 deletions

View File

@ -2,8 +2,8 @@
// Auxiliary carry logic from https://github.com/begoon/i8080-core
#include "IntelProcessor.h"
#include "InputOutput.h"
#include <IntelProcessor.h>
#include <InputOutput.h>
namespace EightBit {
class Intel8080 : public IntelProcessor {

View File

@ -1,13 +1,13 @@
#include "stdafx.h"
#include "Disassembler.h"
#include "Intel8080.h"
#include <Memory.h>
#include <sstream>
#include <iomanip>
#include <bitset>
#include "Memory.h"
#include "Intel8080.h"
EightBit::Disassembler::Disassembler() {
// Disable exceptions where too many format arguments are available
m_formatter.exceptions(boost::io::all_error_bits ^ boost::io::too_many_args_bit);

View File

@ -2,6 +2,8 @@
#include "Profiler.h"
#include "Disassembler.h"
#include <iostream>
EightBit::Profiler::Profiler() {
m_instructions.fill(0);
m_addresses.fill(0);

View File

@ -3,14 +3,17 @@
#endif
#include <cstdint>
#include <functional>
#include <iostream>
#include <fstream>
#include <string>
#include <array>
#include <vector>
#include <bitset>
#include <iostream>
#include <sstream>
#include <iomanip>
#include <boost/format.hpp>
#include <Memory.h>
#include <IntelProcessor.h>
#include <InputOutput.h>