1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-07 19:18:19 +02:00
Beef/IDEHelper/X86Target.h

22 lines
231 B
C
Raw Permalink Normal View History

2019-08-23 11:56:54 -07:00
#pragma once
#include "DebugCommon.h"
#include "X86.h"
#include "X64.h"
NS_BF_BEGIN
class X86Target
{
public:
X86CPU* mX86CPU;
X64CPU* mX64CPU;
public:
X86Target();
~X86Target();
};
extern X86Target* gX86Target;
NS_BF_END