EightBit/MC6809/test/stdafx.h
Adrian Conlon e88cbc269b Add a skeletal half way house between a 6809 tester and a CoCo 2 emulator.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2018-08-26 19:09:34 +01:00

23 lines
278 B
C++

#ifdef _MSC_VER
#pragma once
#endif
#include <cstdint>
#include <string>
#include <sstream>
#include <iomanip>
#include <iostream>
#include <assert.h>
#ifdef _MSC_VER
#include <conio.h>
#endif
#include <Ram.h>
#include <Bus.h>
#include <mc6809.h>
#include <TestHarness.h>