mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-22 12:57:41 -04:00
23 lines
No EOL
195 B
C++
23 lines
No EOL
195 B
C++
#pragma once
|
|
|
|
namespace vortex {
|
|
|
|
class RAM;
|
|
|
|
class Processor {
|
|
public:
|
|
|
|
Processor();
|
|
~Processor();
|
|
|
|
void attach_ram(RAM* ram);
|
|
|
|
int run();
|
|
|
|
private:
|
|
|
|
class Impl;
|
|
Impl* impl_;
|
|
};
|
|
|
|
} |