mirror of
https://github.com/pound-emu/pound.git
synced 2025-06-22 22:48:09 -04:00
10 lines
161 B
C++
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);
|
|
};
|