pound-emu_pound/core/JIT/jit.h
2025-06-18 18:30:21 +02:00

11 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);
};