mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-17 11:27:57 +00:00

Co-authored-by: Esther1024 <danishreyjavik@outlook.com> Co-authored-by: lizzie <lizzie@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/24 Co-authored-by: Ghost <> Co-committed-by: Ghost <>
25 lines
348 B
C++
25 lines
348 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2020 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace Dynarmic {
|
|
namespace A32 {
|
|
|
|
enum class ArchVersion : std::uint8_t {
|
|
v3,
|
|
v4,
|
|
v4T,
|
|
v5TE,
|
|
v6K,
|
|
v6T2,
|
|
v7,
|
|
v8,
|
|
};
|
|
|
|
} // namespace A32
|
|
} // namespace Dynarmic
|