mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-09-11 03:54:47 +00:00
Tidy up some precompiled header usage
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
This commit is contained in:
parent
ef766fd626
commit
8d91260f84
@ -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 {
|
||||
|
@ -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);
|
||||
|
@ -2,6 +2,8 @@
|
||||
#include "Profiler.h"
|
||||
#include "Disassembler.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
EightBit::Profiler::Profiler() {
|
||||
m_instructions.fill(0);
|
||||
m_addresses.fill(0);
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user