Sort out M6502 precompiled headers.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2018-01-06 23:19:29 +00:00
parent 47919fe5af
commit 5b62a6b70b
4 changed files with 23 additions and 6 deletions

View File

@ -5,8 +5,8 @@
#include <cstdint>
#include <functional>
#include "EventArgs.h"
#include "Signal.h"
#include <EventArgs.h>
#include <Signal.h>
#include "Disassembly.h"
#include "Symbols.h"

View File

@ -4,7 +4,7 @@
#include <cstdint>
#include <functional>
#include <stdexcept>
#include <cassert>
#include <string>
#include <array>
@ -18,4 +18,10 @@
#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/join.hpp>
#include <boost/algorithm/string/regex.hpp>
#include <boost/regex.hpp>
#include <boost/regex.hpp>
#include <Bus.h>
#include <Processor.h>
#include <Signal.h>
#include <EventArgs.h>
#include <Signal.h>

View File

@ -2,6 +2,8 @@
#pragma once
#endif
#include <cstdint>
#include <string>
#include <sstream>
@ -12,4 +14,12 @@
#ifdef _MSC_VER
#include <conio.h>
#endif
#endif
#include <Ram.h>
#include <Bus.h>
#include <Profiler.h>
#include <Disassembly.h>
#include <mos6502.h>
#include <Symbols.h>
#include <TestHarness.h>

View File

@ -1,8 +1,9 @@
#include "stdafx.h"
#include "TestHarness.h"
#include "Configuration.h"
#include "Board.h"
#include <TestHarness.h>
#include <iostream>
int main(int argc, char* argv[]) {