pound/core/JIT/jit.h
2025-06-20 20:33:57 +02:00

10 lines
161 B
C++

// Copyright 2025 Pound Emulator Project. All rights reserved.
#pragma once
#include "ARM/cpu.h"
class JIT {
public:
void translate_and_run(CPU& cpu);
};