17 lines
415 B
C++
17 lines
415 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2016 MerryMage
|
|
* This software may be used and distributed according to the terms of the GNU
|
|
* General Public License version 2 or any later version.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Dynarmic {
|
|
namespace A32 {
|
|
|
|
enum class CoprocReg {
|
|
C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14, C15
|
|
};
|
|
|
|
} // namespace A32
|
|
} // namespace Dynarmic
|