mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 12:55:45 +00:00
23 lines
312 B
C++
23 lines
312 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2020 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Dynarmic {
|
|
namespace A32 {
|
|
|
|
enum class ArchVersion {
|
|
v3,
|
|
v4,
|
|
v4T,
|
|
v5TE,
|
|
v6K,
|
|
v6T2,
|
|
v7,
|
|
v8,
|
|
};
|
|
|
|
} // namespace A32
|
|
} // namespace Dynarmic
|