X86Target.h 231 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include "DebugCommon.h"
  3. #include "X86.h"
  4. #include "X64.h"
  5. NS_BF_BEGIN
  6. class X86Target
  7. {
  8. public:
  9. X86CPU* mX86CPU;
  10. X64CPU* mX64CPU;
  11. public:
  12. X86Target();
  13. ~X86Target();
  14. };
  15. extern X86Target* gX86Target;
  16. NS_BF_END