pound-emu_pound/core/JIT/jit.h

11 lines
No EOL
114 B
C++

#ifndef JIT_H
#define JIT_H
#include "cpu.h"
class JIT
{
public:
void translate_and_run(CPU &cpu);
};
#endif