mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-12 01:36:57 +00:00
11 lines
168 B
C++
11 lines
168 B
C++
// Copyright 2025 Pound Emulator Project. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "aarch64/isa.h"
|
|
|
|
class JIT
|
|
{
|
|
public:
|
|
void translate_and_run(CPU& cpu);
|
|
};
|