pound-emu_pound/core/JIT/jit.h
2025-06-05 21:03:38 -04:00

10 lines
No EOL
123 B
C++

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