mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-12 19:36:57 +00:00
11 lines
No EOL
118 B
C++
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 |