EightBit/Intel8080/src/stdafx.h
Adrian.Conlon 2ae4e8331e Replace old i8080 disassembler with new (z80) style.
Signed-off-by: Adrian.Conlon <adrian.conlon@arup.com>
2017-07-25 14:12:34 +01:00

23 lines
327 B
C++

#ifdef _MSC_VER
#pragma once
#endif
#include <cstdint>
#include <functional>
#include <iostream>
#include <fstream>
#include <string>
#include <array>
#include <vector>
#include <bitset>
#include <boost/format.hpp>
#if defined(_M_X64) || defined(_M_IX86 )
# define HOST_LITTLE_ENDIAN
#else
# define HOST_BIG_ENDIAN
#endif