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