You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
348 B
25 lines
348 B
/* 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
|