Files
fail/src/core/sal/ConcreteCPU.hpp
2012-12-05 12:27:17 +00:00

21 lines
462 B
C++

#ifndef __CONCRETE_CPU_HPP__
#define __CONCRETE_CPU_HPP__
#if defined BUILD_BOCHS
#include "bochs/BochsCPU.hpp"
#elif defined BUILD_GEM5
#if defined BUILD_ARM
#include "gem5/Gem5ArmCPU.hpp"
#endif
#elif defined BUILD_OVP
#include "ovp/OVPConfig.hpp"
#elif defined BUILD_QEMU
#include "qemu/QEMUConfig.hpp"
#elif defined BUILD_T32
#include "t32/T32Config.hpp"
#else
#error SAL Config Target not defined
#endif
#endif // __CONCRETE_CPU_HPP__