mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 19:15:46 +00:00
svc: Make ResetType an enum class
This commit is contained in:
parent
5858a3a148
commit
219ecd2ee7
11 changed files with 23 additions and 24 deletions
|
@ -20,11 +20,10 @@ struct PageInfo {
|
|||
u32 flags;
|
||||
};
|
||||
|
||||
enum ResetType {
|
||||
RESETTYPE_ONESHOT,
|
||||
RESETTYPE_STICKY,
|
||||
RESETTYPE_PULSE,
|
||||
RESETTYPE_MAX_BIT = (1u << 31),
|
||||
enum class ResetType {
|
||||
OneShot,
|
||||
Sticky,
|
||||
Pulse,
|
||||
};
|
||||
|
||||
enum ArbitrationType {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue