Added Makefile and made things run on my machine (im sorry ); )

This commit is contained in:
SamsonLib 2025-06-14 01:29:16 +02:00
parent c8f00d0657
commit 8bdd9468de
4 changed files with 51 additions and 16 deletions

View file

@ -1,10 +1,11 @@
#ifndef JIT_H
#define JIT_H
#include "core/ARM/cpu.h"
#include "cpu.h"
class JIT {
class JIT
{
public:
void translate_and_run(CPU& cpu);
void translate_and_run(CPU &cpu);
};
#endif