mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-12 10:37:00 +00:00
10 lines
No EOL
123 B
C++
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 |