pound-emu_pound/core/JIT/jit.h
2025-06-17 18:51:46 +02:00

11 lines
No EOL
118 B
C++

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