Merging Runtime into Processor.

This commit is contained in:
Ben Vanik
2015-05-03 22:28:25 -07:00
parent 4c8f3501ad
commit 78921c1a7e
56 changed files with 441 additions and 543 deletions

View File

@@ -22,7 +22,7 @@ class Runtime;
class XexModule : public xe::cpu::Module {
public:
XexModule(Runtime* runtime);
XexModule(Processor* processor);
virtual ~XexModule();
xe_xex2_ref xex() const { return xex_; }
@@ -39,7 +39,7 @@ class XexModule : public xe::cpu::Module {
int FindSaveRest();
private:
Runtime* runtime_;
Processor* processor_;
std::string name_;
std::string path_;
xe_xex2_ref xex_;